@almadar/core 10.89.0 → 10.90.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 +9 -2
- package/dist/builders.js.map +1 -1
- package/dist/{effect-CdLBg9zL.d.ts → effect-7jQQxiIt.d.ts} +58 -42
- package/dist/{entityAccess-BmZHpQUv.d.ts → entityAccess-CpHfCQA3.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +467 -9
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +9 -2
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/i18n/index.js +6 -0
- package/dist/i18n/index.js.map +1 -1
- package/dist/{index-CV_iM5Cm.d.ts → index-BresfHJy.d.ts} +63 -6
- package/dist/index.d.ts +34 -12
- package/dist/index.js +582 -17
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +54 -5
- package/dist/mock/index.js +33 -3
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +6 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +1160 -14
- package/dist/patterns/index.js +545 -12
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +72 -1
- package/dist/patterns/patterns-registry.json +461 -8
- package/dist/patterns/registry.json +461 -8
- package/dist/patterns/services-registry.json +150 -64
- package/dist/{schema-DYC_RnBX.d.ts → schema-C52juBr8.d.ts} +495 -323
- package/dist/{trait-DmWdtKlP.d.ts → trait-CFiL1YUN.d.ts} +98 -55
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +11 -6
- package/dist/types/index.js.map +1 -1
- package/dist/{types-DdK77hq2.d.ts → types-BgC8ETnl.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -1297,11 +1297,12 @@ type AssetDimension = (typeof ASSET_DIMENSIONS)[number];
|
|
|
1297
1297
|
declare const AssetDimensionSchema: z.ZodEnum<["2d", "3d"]>;
|
|
1298
1298
|
/**
|
|
1299
1299
|
* Rendering aspect ratio of an asset: square (tiles/sprites/portraits/icons),
|
|
1300
|
-
* 16:9 (scene backdrops), 5:7 (cards), 8:1 (effect frame strips)
|
|
1300
|
+
* 16:9 (scene backdrops), 5:7 (cards), 8:1 (effect frame strips),
|
|
1301
|
+
* 4:1 (wide paddles/bars), 5:3 (wide scenes), 1:2 (tall banners).
|
|
1301
1302
|
*/
|
|
1302
|
-
declare const ASSET_ASPECTS: readonly ["1:1", "16:9", "5:7", "8:1"];
|
|
1303
|
+
declare const ASSET_ASPECTS: readonly ["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"];
|
|
1303
1304
|
type AssetAspect = (typeof ASSET_ASPECTS)[number];
|
|
1304
|
-
declare const AssetAspectSchema: z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>;
|
|
1305
|
+
declare const AssetAspectSchema: z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>;
|
|
1305
1306
|
/**
|
|
1306
1307
|
* Animation names matching a sprite sheet's row layout. Canonical home for
|
|
1307
1308
|
* this vocabulary — `@almadar/ui`'s `spriteAnimationTypes.ts` re-exports it
|
|
@@ -1691,7 +1692,7 @@ declare const SemanticAssetRefSchema: z.ZodObject<{
|
|
|
1691
1692
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
1692
1693
|
variant: z.ZodOptional<z.ZodString>;
|
|
1693
1694
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
1694
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
1695
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
1695
1696
|
}, "strip", z.ZodTypeAny, {
|
|
1696
1697
|
role: string;
|
|
1697
1698
|
category: string;
|
|
@@ -1699,7 +1700,7 @@ declare const SemanticAssetRefSchema: z.ZodObject<{
|
|
|
1699
1700
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
1700
1701
|
variant?: string | undefined;
|
|
1701
1702
|
dimension?: "2d" | "3d" | undefined;
|
|
1702
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
1703
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
1703
1704
|
}, {
|
|
1704
1705
|
role: string;
|
|
1705
1706
|
category: string;
|
|
@@ -1707,7 +1708,7 @@ declare const SemanticAssetRefSchema: z.ZodObject<{
|
|
|
1707
1708
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
1708
1709
|
variant?: string | undefined;
|
|
1709
1710
|
dimension?: "2d" | "3d" | undefined;
|
|
1710
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
1711
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
1711
1712
|
}>;
|
|
1712
1713
|
/**
|
|
1713
1714
|
* The single asset type: a `SemanticAssetRef` (role/dimension/animations/aspect/style)
|
|
@@ -1737,6 +1738,10 @@ interface Asset extends SemanticAssetRef {
|
|
|
1737
1738
|
name?: string;
|
|
1738
1739
|
/** Optional thumbnail URL (inspector picker grid). */
|
|
1739
1740
|
thumbnailUrl?: string;
|
|
1741
|
+
/** Authored generation subject (visualDNA) for asset-workflow regeneration. */
|
|
1742
|
+
prompt?: string;
|
|
1743
|
+
/** Authored per-animation frame choreography — the exact pose per frame, the only pose source for animated slots. */
|
|
1744
|
+
choreography?: Record<string, string[]>;
|
|
1740
1745
|
}
|
|
1741
1746
|
declare const AssetSchema: z.ZodObject<{
|
|
1742
1747
|
role: z.ZodString;
|
|
@@ -1745,13 +1750,15 @@ declare const AssetSchema: z.ZodObject<{
|
|
|
1745
1750
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
1746
1751
|
variant: z.ZodOptional<z.ZodString>;
|
|
1747
1752
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
1748
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
1753
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
1749
1754
|
} & {
|
|
1750
1755
|
url: z.ZodString;
|
|
1751
1756
|
atlas: z.ZodOptional<z.ZodString>;
|
|
1752
1757
|
sprite: z.ZodOptional<z.ZodString>;
|
|
1753
1758
|
name: z.ZodOptional<z.ZodString>;
|
|
1754
1759
|
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
1760
|
+
prompt: z.ZodOptional<z.ZodString>;
|
|
1761
|
+
choreography: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>>;
|
|
1755
1762
|
}, "strip", z.ZodTypeAny, {
|
|
1756
1763
|
url: string;
|
|
1757
1764
|
role: string;
|
|
@@ -1761,10 +1768,12 @@ declare const AssetSchema: z.ZodObject<{
|
|
|
1761
1768
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
1762
1769
|
variant?: string | undefined;
|
|
1763
1770
|
dimension?: "2d" | "3d" | undefined;
|
|
1764
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
1771
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
1765
1772
|
atlas?: string | undefined;
|
|
1766
1773
|
sprite?: string | undefined;
|
|
1767
1774
|
thumbnailUrl?: string | undefined;
|
|
1775
|
+
prompt?: string | undefined;
|
|
1776
|
+
choreography?: Record<string, string[]> | undefined;
|
|
1768
1777
|
}, {
|
|
1769
1778
|
url: string;
|
|
1770
1779
|
role: string;
|
|
@@ -1774,10 +1783,12 @@ declare const AssetSchema: z.ZodObject<{
|
|
|
1774
1783
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
1775
1784
|
variant?: string | undefined;
|
|
1776
1785
|
dimension?: "2d" | "3d" | undefined;
|
|
1777
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
1786
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
1778
1787
|
atlas?: string | undefined;
|
|
1779
1788
|
sprite?: string | undefined;
|
|
1780
1789
|
thumbnailUrl?: string | undefined;
|
|
1790
|
+
prompt?: string | undefined;
|
|
1791
|
+
choreography?: Record<string, string[]> | undefined;
|
|
1781
1792
|
}>;
|
|
1782
1793
|
/**
|
|
1783
1794
|
* Single browsable asset in the inspector picker catalog.
|
|
@@ -1807,14 +1818,14 @@ declare const AssetCatalogEntrySchema: z.ZodObject<{
|
|
|
1807
1818
|
kind: z.ZodEnum<["image", "spritesheet", "audio", "scene", "portrait", "model", "other"]>;
|
|
1808
1819
|
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
1809
1820
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
1810
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
1821
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
1811
1822
|
}, "strip", z.ZodTypeAny, {
|
|
1812
1823
|
kind: "image" | "spritesheet" | "audio" | "scene" | "portrait" | "model" | "other";
|
|
1813
1824
|
url: string;
|
|
1814
1825
|
name: string;
|
|
1815
1826
|
category: string;
|
|
1816
1827
|
dimension?: "2d" | "3d" | undefined;
|
|
1817
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
1828
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
1818
1829
|
thumbnailUrl?: string | undefined;
|
|
1819
1830
|
}, {
|
|
1820
1831
|
kind: "image" | "spritesheet" | "audio" | "scene" | "portrait" | "model" | "other";
|
|
@@ -1822,7 +1833,7 @@ declare const AssetCatalogEntrySchema: z.ZodObject<{
|
|
|
1822
1833
|
name: string;
|
|
1823
1834
|
category: string;
|
|
1824
1835
|
dimension?: "2d" | "3d" | undefined;
|
|
1825
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
1836
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
1826
1837
|
thumbnailUrl?: string | undefined;
|
|
1827
1838
|
}>;
|
|
1828
1839
|
/**
|
|
@@ -1836,14 +1847,14 @@ declare const AssetCatalogSchema: z.ZodArray<z.ZodObject<{
|
|
|
1836
1847
|
kind: z.ZodEnum<["image", "spritesheet", "audio", "scene", "portrait", "model", "other"]>;
|
|
1837
1848
|
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
1838
1849
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
1839
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
1850
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
1840
1851
|
}, "strip", z.ZodTypeAny, {
|
|
1841
1852
|
kind: "image" | "spritesheet" | "audio" | "scene" | "portrait" | "model" | "other";
|
|
1842
1853
|
url: string;
|
|
1843
1854
|
name: string;
|
|
1844
1855
|
category: string;
|
|
1845
1856
|
dimension?: "2d" | "3d" | undefined;
|
|
1846
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
1857
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
1847
1858
|
thumbnailUrl?: string | undefined;
|
|
1848
1859
|
}, {
|
|
1849
1860
|
kind: "image" | "spritesheet" | "audio" | "scene" | "portrait" | "model" | "other";
|
|
@@ -1851,7 +1862,7 @@ declare const AssetCatalogSchema: z.ZodArray<z.ZodObject<{
|
|
|
1851
1862
|
name: string;
|
|
1852
1863
|
category: string;
|
|
1853
1864
|
dimension?: "2d" | "3d" | undefined;
|
|
1854
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
1865
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
1855
1866
|
thumbnailUrl?: string | undefined;
|
|
1856
1867
|
}>, "many">;
|
|
1857
1868
|
/**
|
|
@@ -2457,7 +2468,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
|
|
|
2457
2468
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
2458
2469
|
variant: z.ZodOptional<z.ZodString>;
|
|
2459
2470
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
2460
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
2471
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
2461
2472
|
}, "strip", z.ZodTypeAny, {
|
|
2462
2473
|
role: string;
|
|
2463
2474
|
category: string;
|
|
@@ -2465,7 +2476,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
|
|
|
2465
2476
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
2466
2477
|
variant?: string | undefined;
|
|
2467
2478
|
dimension?: "2d" | "3d" | undefined;
|
|
2468
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
2479
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
2469
2480
|
}, {
|
|
2470
2481
|
role: string;
|
|
2471
2482
|
category: string;
|
|
@@ -2473,7 +2484,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
|
|
|
2473
2484
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
2474
2485
|
variant?: string | undefined;
|
|
2475
2486
|
dimension?: "2d" | "3d" | undefined;
|
|
2476
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
2487
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
2477
2488
|
}>>;
|
|
2478
2489
|
}, "strip", z.ZodTypeAny, {
|
|
2479
2490
|
name: string;
|
|
@@ -2505,7 +2516,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
|
|
|
2505
2516
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
2506
2517
|
variant?: string | undefined;
|
|
2507
2518
|
dimension?: "2d" | "3d" | undefined;
|
|
2508
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
2519
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
2509
2520
|
} | undefined;
|
|
2510
2521
|
}, {
|
|
2511
2522
|
name: string;
|
|
@@ -2537,7 +2548,7 @@ declare const OrbitalEntitySchema: z.ZodObject<{
|
|
|
2537
2548
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
2538
2549
|
variant?: string | undefined;
|
|
2539
2550
|
dimension?: "2d" | "3d" | undefined;
|
|
2540
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
2551
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
2541
2552
|
} | undefined;
|
|
2542
2553
|
}>;
|
|
2543
2554
|
type OrbitalEntityInput = z.input<typeof OrbitalEntitySchema>;
|
|
@@ -2584,7 +2595,7 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
2584
2595
|
style: z.ZodOptional<z.ZodEnum<["pixel", "vector", "hd", "1-bit", "isometric"]>>;
|
|
2585
2596
|
variant: z.ZodOptional<z.ZodString>;
|
|
2586
2597
|
dimension: z.ZodOptional<z.ZodEnum<["2d", "3d"]>>;
|
|
2587
|
-
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1"]>>;
|
|
2598
|
+
aspect: z.ZodOptional<z.ZodEnum<["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"]>>;
|
|
2588
2599
|
}, "strip", z.ZodTypeAny, {
|
|
2589
2600
|
role: string;
|
|
2590
2601
|
category: string;
|
|
@@ -2592,7 +2603,7 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
2592
2603
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
2593
2604
|
variant?: string | undefined;
|
|
2594
2605
|
dimension?: "2d" | "3d" | undefined;
|
|
2595
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
2606
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
2596
2607
|
}, {
|
|
2597
2608
|
role: string;
|
|
2598
2609
|
category: string;
|
|
@@ -2600,7 +2611,7 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
2600
2611
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
2601
2612
|
variant?: string | undefined;
|
|
2602
2613
|
dimension?: "2d" | "3d" | undefined;
|
|
2603
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
2614
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
2604
2615
|
}>>;
|
|
2605
2616
|
}, "strip", z.ZodTypeAny, {
|
|
2606
2617
|
name: string;
|
|
@@ -2632,7 +2643,7 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
2632
2643
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
2633
2644
|
variant?: string | undefined;
|
|
2634
2645
|
dimension?: "2d" | "3d" | undefined;
|
|
2635
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
2646
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
2636
2647
|
} | undefined;
|
|
2637
2648
|
}, {
|
|
2638
2649
|
name: string;
|
|
@@ -2664,7 +2675,7 @@ declare const EntitySchema: z.ZodObject<{
|
|
|
2664
2675
|
style?: "pixel" | "vector" | "hd" | "1-bit" | "isometric" | undefined;
|
|
2665
2676
|
variant?: string | undefined;
|
|
2666
2677
|
dimension?: "2d" | "3d" | undefined;
|
|
2667
|
-
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
2678
|
+
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | "4:1" | "5:3" | "1:2" | undefined;
|
|
2668
2679
|
} | undefined;
|
|
2669
2680
|
}>;
|
|
2670
2681
|
/**
|
|
@@ -2725,6 +2736,8 @@ declare function persistenceModeAllowsOverrides(persistence: EntityPersistence |
|
|
|
2725
2736
|
type FieldValue = string | number | boolean | Date | null | string[] | FieldValue[] | {
|
|
2726
2737
|
[key: string]: FieldValue | undefined;
|
|
2727
2738
|
};
|
|
2739
|
+
/** Zod twin of `FieldValue` — the one runtime validator for a stored field slot. */
|
|
2740
|
+
declare const FieldValueSchema: z.ZodType<FieldValue>;
|
|
2728
2741
|
/**
|
|
2729
2742
|
* What a FORM CONTROL puts on the event bus — the closed set of shapes an
|
|
2730
2743
|
* Input / Select / Checkbox / Date / multi-select / file field actually
|
|
@@ -2805,8 +2818,8 @@ type EntityData = Record<string, EntityRow[]>;
|
|
|
2805
2818
|
*
|
|
2806
2819
|
* DO NOT EDIT MANUALLY — regenerated by almadar-pattern-sync `patterns` command.
|
|
2807
2820
|
*
|
|
2808
|
-
* Generated: 2026-09-
|
|
2809
|
-
* Pattern count:
|
|
2821
|
+
* Generated: 2026-09-10T08:51:20.757Z
|
|
2822
|
+
* Pattern count: 280
|
|
2810
2823
|
*/
|
|
2811
2824
|
|
|
2812
2825
|
/**
|
|
@@ -2818,7 +2831,7 @@ type PatternPropValue = Record<string, FieldValue | undefined>;
|
|
|
2818
2831
|
* All valid pattern type names from @almadar/core/patterns registry.
|
|
2819
2832
|
* Use this type in render-ui effects for compile-time validation.
|
|
2820
2833
|
*/
|
|
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';
|
|
2834
|
+
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
2835
|
/**
|
|
2823
2836
|
* Pattern props map — each pattern type maps to its valid props interface.
|
|
2824
2837
|
*/
|
|
@@ -4029,6 +4042,21 @@ interface PatternPropsMap {
|
|
|
4029
4042
|
id?: string | SExpr;
|
|
4030
4043
|
items: unknown[] | string | SExpr;
|
|
4031
4044
|
};
|
|
4045
|
+
'draw-skinned-mesh': {
|
|
4046
|
+
type: 'draw-skinned-mesh';
|
|
4047
|
+
id?: string | SExpr;
|
|
4048
|
+
position: PatternPropValue | string | SExpr;
|
|
4049
|
+
asset: PatternPropValue | string | SExpr;
|
|
4050
|
+
mesh?: PatternPropValue | string | SExpr;
|
|
4051
|
+
meshUrl?: string | SExpr;
|
|
4052
|
+
bones: unknown[] | string | SExpr;
|
|
4053
|
+
pose?: PatternPropValue | string | SExpr;
|
|
4054
|
+
clip?: PatternPropValue | string | SExpr;
|
|
4055
|
+
frame?: number | string | SExpr;
|
|
4056
|
+
opacity?: number | string | SExpr;
|
|
4057
|
+
weightsOverlay?: boolean | string | SExpr;
|
|
4058
|
+
ghost?: PatternPropValue | string | SExpr;
|
|
4059
|
+
};
|
|
4032
4060
|
'draw-sprite': {
|
|
4033
4061
|
type: 'draw-sprite';
|
|
4034
4062
|
id?: string | SExpr;
|
|
@@ -6816,12 +6844,6 @@ type DespawnEffect = ['despawn', string];
|
|
|
6816
6844
|
* @example ['do', ['set', '@entity.x', 0], ['set', '@entity.y', 0]]
|
|
6817
6845
|
*/
|
|
6818
6846
|
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
6847
|
/**
|
|
6826
6848
|
* Options accepted by `fetch` / `ref` / `deref` effects. Mirrors what
|
|
6827
6849
|
* `OrbitalServerRuntime`'s fetch handler reads at runtime: `id`, `filter`,
|
|
@@ -7116,7 +7138,7 @@ type AsyncSequenceEffect = ['async/sequence', ...Effect[]];
|
|
|
7116
7138
|
* Union of all typed effects.
|
|
7117
7139
|
* Provides compile-time validation for common effect types.
|
|
7118
7140
|
*/
|
|
7119
|
-
type TypedEffect = RenderUIEffect | NavigateEffect | NavigateBackEffect | EmitEffect | SetEffect | PersistEffect | CallServiceEffect | SpawnEffect | DespawnEffect | DoEffect |
|
|
7141
|
+
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
7142
|
/**
|
|
7121
7143
|
* Effect type - typed S-expression format.
|
|
7122
7144
|
*
|
|
@@ -7263,12 +7285,6 @@ declare function despawn(entityId: string): DespawnEffect;
|
|
|
7263
7285
|
* @example ["do", ["set", "@entity.x", 0], ["set", "@entity.y", 0]]
|
|
7264
7286
|
*/
|
|
7265
7287
|
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
7288
|
/**
|
|
7273
7289
|
* Create a ref effect (reactive entity subscription).
|
|
7274
7290
|
*
|
|
@@ -7344,4 +7360,4 @@ interface RenderUINode {
|
|
|
7344
7360
|
renderItem?: RenderUINode;
|
|
7345
7361
|
}
|
|
7346
7362
|
|
|
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,
|
|
7363
|
+
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 };
|
package/dist/factory/index.d.ts
CHANGED
|
@@ -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-
|
|
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-
|
|
3
|
-
import { a as EntityPersistence, E as EntityField } from '../effect-
|
|
4
|
-
import { a as TraitReference } from '../trait-
|
|
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-BgC8ETnl.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-BgC8ETnl.js';
|
|
3
|
+
import { a as EntityPersistence, E as EntityField } from '../effect-7jQQxiIt.js';
|
|
4
|
+
import { a as TraitReference } from '../trait-CFiL1YUN.js';
|
|
5
5
|
export { J as JsonValue } from '../json-D8gmyK3l.js';
|
|
6
6
|
import 'zod';
|
|
7
7
|
import '../expression-WfTp2arD.js';
|