@almadar/core 10.80.0 → 10.82.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 (34) hide show
  1. package/dist/builders.d.ts +3 -3
  2. package/dist/builders.js +38 -0
  3. package/dist/builders.js.map +1 -1
  4. package/dist/{effect-C4uehm-r.d.ts → effect-Baldm2vM.d.ts} +369 -4
  5. package/dist/{entityAccess-BMKFgmsc.d.ts → entityAccess-CDYT7WWR.d.ts} +1 -1
  6. package/dist/factory/index.d.ts +4 -4
  7. package/dist/factory/index.js +980 -10
  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 +38 -0
  11. package/dist/factory-runtime/index.js.map +1 -1
  12. package/dist/{index-DqUnw2Oo.d.ts → index-R8PyPrGg.d.ts} +4 -4
  13. package/dist/index.d.ts +10 -10
  14. package/dist/index.js +2135 -406
  15. package/dist/index.js.map +1 -1
  16. package/dist/mock/index.d.ts +4 -4
  17. package/dist/mock/index.js +38 -0
  18. package/dist/mock/index.js.map +1 -1
  19. package/dist/patterns/component-mapping.json +21 -1
  20. package/dist/patterns/event-contracts.json +1 -1
  21. package/dist/patterns/index.d.ts +4045 -608
  22. package/dist/patterns/index.js +1963 -405
  23. package/dist/patterns/index.js.map +1 -1
  24. package/dist/patterns/integrators-registry.json +1004 -402
  25. package/dist/patterns/patterns-registry.json +933 -1
  26. package/dist/patterns/registry.json +933 -1
  27. package/dist/patterns/services-registry.json +1171 -424
  28. package/dist/{schema-Cma07_18.d.ts → schema-1KQUz2pE.d.ts} +2 -2
  29. package/dist/{trait-BXkQKZbO.d.ts → trait-Dsp0vmGp.d.ts} +1 -1
  30. package/dist/types/index.d.ts +5 -5
  31. package/dist/types/index.js +176 -1
  32. package/dist/types/index.js.map +1 -1
  33. package/dist/{types-DoAKLgCZ.d.ts → types-DJYozDXK.d.ts} +2 -2
  34. package/package.json +1 -1
@@ -2043,6 +2043,295 @@ declare function validateAssetAnimations(assetRef: SemanticAssetRef, requiredAni
2043
2043
  valid: boolean;
2044
2044
  missing: string[];
2045
2045
  };
2046
+ declare const SPRITE_SHEET_LAYOUT: {
2047
+ readonly frameWidth: 256;
2048
+ readonly frameHeight: 256;
2049
+ readonly columns: 8;
2050
+ readonly rows: 5;
2051
+ readonly background: "#20202E";
2052
+ };
2053
+ type SpriteSheetLayout = typeof SPRITE_SHEET_LAYOUT;
2054
+ /**
2055
+ * The canonical unit animation row table (idle/walk/attack/hit/death), one
2056
+ * row per `AnimationName`, in sheet-row order. Mirrors
2057
+ * `tools/asset-workflow/src/spritesheet-bake.ts`'s `SPRITE_LAYOUT`.
2058
+ */
2059
+ declare const DEFAULT_UNIT_ANIMATION_ROWS: ReadonlyArray<{
2060
+ name: AnimationName;
2061
+ } & AnimationDef>;
2062
+ /**
2063
+ * Builds the canonical unit `SpriteSheetAtlas` from `SPRITE_SHEET_LAYOUT` +
2064
+ * `DEFAULT_UNIT_ANIMATION_ROWS` for a given set of direction sheets. Directions
2065
+ * default to whichever keys `sheets` actually carries (legacy se/sw-only packs
2066
+ * included), or the caller can force a specific set via `opts.directions`.
2067
+ */
2068
+ declare function defaultUnitAtlas(sheets: SpriteSheetAtlas['sheets'], opts?: {
2069
+ directions?: SpriteDirection[];
2070
+ }): SpriteSheetAtlas;
2071
+ declare const MANIFEST_ENTRY_KINDS: readonly ["model", "image", "spritesheet", "audio", "json"];
2072
+ type ManifestEntryKind = (typeof MANIFEST_ENTRY_KINDS)[number];
2073
+ declare const ManifestEntryKindSchema: z.ZodEnum<["model", "image", "spritesheet", "audio", "json"]>;
2074
+ /**
2075
+ * One entry of a game's sound manifest, keyed by logical cue name. Core owns
2076
+ * the shape so both the render substrate (`useGameAudio` / the `game-audio-cue`
2077
+ * pattern) and the generated `.lolo` factories resolve the SAME declaration —
2078
+ * a hook-local interface is invisible to the pattern extractor and lowers to a
2079
+ * shapeless `object`, which the `.lolo` type system rejects outright.
2080
+ */
2081
+ interface SoundEntry {
2082
+ /** Single path, or several to pick from at random on each play. */
2083
+ path: string | string[];
2084
+ /** Volume 0-1, multiplied by the master volume. */
2085
+ volume?: number;
2086
+ /** Whether this sound loops (background music). */
2087
+ loop?: boolean;
2088
+ /** Concurrent Audio instances kept in the pool. */
2089
+ poolSize?: number;
2090
+ /** Start automatically on the first user interaction. */
2091
+ autostart?: boolean;
2092
+ /** Use crossfade transitions when played as music. */
2093
+ crossfade?: boolean;
2094
+ /** Crossfade duration in milliseconds. */
2095
+ crossfadeDurationMs?: number;
2096
+ }
2097
+ declare const SoundEntrySchema: z.ZodObject<{
2098
+ path: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
2099
+ volume: z.ZodOptional<z.ZodNumber>;
2100
+ loop: z.ZodOptional<z.ZodBoolean>;
2101
+ poolSize: z.ZodOptional<z.ZodNumber>;
2102
+ autostart: z.ZodOptional<z.ZodBoolean>;
2103
+ crossfade: z.ZodOptional<z.ZodBoolean>;
2104
+ crossfadeDurationMs: z.ZodOptional<z.ZodNumber>;
2105
+ }, "strip", z.ZodTypeAny, {
2106
+ path: string | string[];
2107
+ loop?: boolean | undefined;
2108
+ volume?: number | undefined;
2109
+ poolSize?: number | undefined;
2110
+ autostart?: boolean | undefined;
2111
+ crossfade?: boolean | undefined;
2112
+ crossfadeDurationMs?: number | undefined;
2113
+ }, {
2114
+ path: string | string[];
2115
+ loop?: boolean | undefined;
2116
+ volume?: number | undefined;
2117
+ poolSize?: number | undefined;
2118
+ autostart?: boolean | undefined;
2119
+ crossfade?: boolean | undefined;
2120
+ crossfadeDurationMs?: number | undefined;
2121
+ }>;
2122
+ /** A game's sound manifest: logical cue name → its definition. */
2123
+ type AudioManifest = Record<string, SoundEntry>;
2124
+ declare const AudioManifestSchema: z.ZodRecord<z.ZodString, z.ZodObject<{
2125
+ path: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
2126
+ volume: z.ZodOptional<z.ZodNumber>;
2127
+ loop: z.ZodOptional<z.ZodBoolean>;
2128
+ poolSize: z.ZodOptional<z.ZodNumber>;
2129
+ autostart: z.ZodOptional<z.ZodBoolean>;
2130
+ crossfade: z.ZodOptional<z.ZodBoolean>;
2131
+ crossfadeDurationMs: z.ZodOptional<z.ZodNumber>;
2132
+ }, "strip", z.ZodTypeAny, {
2133
+ path: string | string[];
2134
+ loop?: boolean | undefined;
2135
+ volume?: number | undefined;
2136
+ poolSize?: number | undefined;
2137
+ autostart?: boolean | undefined;
2138
+ crossfade?: boolean | undefined;
2139
+ crossfadeDurationMs?: number | undefined;
2140
+ }, {
2141
+ path: string | string[];
2142
+ loop?: boolean | undefined;
2143
+ volume?: number | undefined;
2144
+ poolSize?: number | undefined;
2145
+ autostart?: boolean | undefined;
2146
+ crossfade?: boolean | undefined;
2147
+ crossfadeDurationMs?: number | undefined;
2148
+ }>>;
2149
+ declare const MANIFEST_CANVAS_AFFINITIES: readonly ["isometric", "hex", "flat", "side", "3d", "none"];
2150
+ type ManifestCanvasAffinity = (typeof MANIFEST_CANVAS_AFFINITIES)[number];
2151
+ declare const ManifestCanvasAffinitySchema: z.ZodEnum<["isometric", "hex", "flat", "side", "3d", "none"]>;
2152
+ declare const MANIFEST_SOURCE_CATALOGS: readonly ["kenny", "kekec-assets", "iram-assets", "trait-wars-assets", "kflow-assets"];
2153
+ type ManifestSourceCatalog = (typeof MANIFEST_SOURCE_CATALOGS)[number];
2154
+ declare const ManifestSourceCatalogSchema: z.ZodEnum<["kenny", "kekec-assets", "iram-assets", "trait-wars-assets", "kflow-assets"]>;
2155
+ declare const MANIFEST_ASSET_LICENSES: readonly ["CC0", "proprietary"];
2156
+ type ManifestAssetLicense = (typeof MANIFEST_ASSET_LICENSES)[number];
2157
+ declare const ManifestAssetLicenseSchema: z.ZodEnum<["CC0", "proprietary"]>;
2158
+ /**
2159
+ * Path of the sheet's `atlas.json` relative to the pack's `shared/` root
2160
+ * (`riya-platformer/units/riya/atlas.json`) — the executable frame truth for
2161
+ * unit sheets whose rows are not uniform.
2162
+ */
2163
+ type ManifestAtlasRef = string;
2164
+ /** Tile/sprite-sheet frame layout for a manifest row, an atlas reference, else `null`. */
2165
+ type ManifestFrameSpec = {
2166
+ kind: 'iso-tile';
2167
+ w: number;
2168
+ h: number;
2169
+ } | {
2170
+ kind: 'sprite-sheet';
2171
+ frame: number;
2172
+ cols: number;
2173
+ rows: number;
2174
+ } | ManifestAtlasRef | null;
2175
+ declare const ManifestFrameSpecSchema: z.ZodUnion<[z.ZodObject<{
2176
+ kind: z.ZodLiteral<"iso-tile">;
2177
+ w: z.ZodNumber;
2178
+ h: z.ZodNumber;
2179
+ }, "strip", z.ZodTypeAny, {
2180
+ kind: "iso-tile";
2181
+ w: number;
2182
+ h: number;
2183
+ }, {
2184
+ kind: "iso-tile";
2185
+ w: number;
2186
+ h: number;
2187
+ }>, z.ZodObject<{
2188
+ kind: z.ZodLiteral<"sprite-sheet">;
2189
+ frame: z.ZodNumber;
2190
+ cols: z.ZodNumber;
2191
+ rows: z.ZodNumber;
2192
+ }, "strip", z.ZodTypeAny, {
2193
+ kind: "sprite-sheet";
2194
+ rows: number;
2195
+ frame: number;
2196
+ cols: number;
2197
+ }, {
2198
+ kind: "sprite-sheet";
2199
+ rows: number;
2200
+ frame: number;
2201
+ cols: number;
2202
+ }>, z.ZodString, z.ZodNull]>;
2203
+ /**
2204
+ * One row of `almadar-assets/kflow-assets/manifest.json`. Core owns this
2205
+ * shape; `tools/asset-workflow`'s `ExtendedManifestEntry` converges onto it.
2206
+ */
2207
+ interface ManifestEntry {
2208
+ url: string;
2209
+ name: string;
2210
+ category: string;
2211
+ kind: ManifestEntryKind;
2212
+ width: number;
2213
+ height: number;
2214
+ canvasAffinity: ManifestCanvasAffinity;
2215
+ genreAffinity: string[];
2216
+ swapClass: string;
2217
+ sourceCatalog: ManifestSourceCatalog;
2218
+ frameSpec: ManifestFrameSpec;
2219
+ /** Provenance-extended field: present on the promote/register path only. */
2220
+ license?: ManifestAssetLicense;
2221
+ }
2222
+ declare const ManifestEntrySchema: z.ZodObject<{
2223
+ url: z.ZodString;
2224
+ name: z.ZodString;
2225
+ category: z.ZodString;
2226
+ kind: z.ZodEnum<["model", "image", "spritesheet", "audio", "json"]>;
2227
+ width: z.ZodNumber;
2228
+ height: z.ZodNumber;
2229
+ canvasAffinity: z.ZodEnum<["isometric", "hex", "flat", "side", "3d", "none"]>;
2230
+ genreAffinity: z.ZodArray<z.ZodString, "many">;
2231
+ swapClass: z.ZodString;
2232
+ sourceCatalog: z.ZodEnum<["kenny", "kekec-assets", "iram-assets", "trait-wars-assets", "kflow-assets"]>;
2233
+ frameSpec: z.ZodUnion<[z.ZodObject<{
2234
+ kind: z.ZodLiteral<"iso-tile">;
2235
+ w: z.ZodNumber;
2236
+ h: z.ZodNumber;
2237
+ }, "strip", z.ZodTypeAny, {
2238
+ kind: "iso-tile";
2239
+ w: number;
2240
+ h: number;
2241
+ }, {
2242
+ kind: "iso-tile";
2243
+ w: number;
2244
+ h: number;
2245
+ }>, z.ZodObject<{
2246
+ kind: z.ZodLiteral<"sprite-sheet">;
2247
+ frame: z.ZodNumber;
2248
+ cols: z.ZodNumber;
2249
+ rows: z.ZodNumber;
2250
+ }, "strip", z.ZodTypeAny, {
2251
+ kind: "sprite-sheet";
2252
+ rows: number;
2253
+ frame: number;
2254
+ cols: number;
2255
+ }, {
2256
+ kind: "sprite-sheet";
2257
+ rows: number;
2258
+ frame: number;
2259
+ cols: number;
2260
+ }>, z.ZodString, z.ZodNull]>;
2261
+ license: z.ZodOptional<z.ZodEnum<["CC0", "proprietary"]>>;
2262
+ }, "strip", z.ZodTypeAny, {
2263
+ kind: "image" | "spritesheet" | "audio" | "model" | "json";
2264
+ url: string;
2265
+ name: string;
2266
+ width: number;
2267
+ height: number;
2268
+ category: string;
2269
+ canvasAffinity: "flat" | "isometric" | "3d" | "hex" | "side" | "none";
2270
+ genreAffinity: string[];
2271
+ swapClass: string;
2272
+ sourceCatalog: "kenny" | "kekec-assets" | "iram-assets" | "trait-wars-assets" | "kflow-assets";
2273
+ frameSpec: string | {
2274
+ kind: "iso-tile";
2275
+ w: number;
2276
+ h: number;
2277
+ } | {
2278
+ kind: "sprite-sheet";
2279
+ rows: number;
2280
+ frame: number;
2281
+ cols: number;
2282
+ } | null;
2283
+ license?: "CC0" | "proprietary" | undefined;
2284
+ }, {
2285
+ kind: "image" | "spritesheet" | "audio" | "model" | "json";
2286
+ url: string;
2287
+ name: string;
2288
+ width: number;
2289
+ height: number;
2290
+ category: string;
2291
+ canvasAffinity: "flat" | "isometric" | "3d" | "hex" | "side" | "none";
2292
+ genreAffinity: string[];
2293
+ swapClass: string;
2294
+ sourceCatalog: "kenny" | "kekec-assets" | "iram-assets" | "trait-wars-assets" | "kflow-assets";
2295
+ frameSpec: string | {
2296
+ kind: "iso-tile";
2297
+ w: number;
2298
+ h: number;
2299
+ } | {
2300
+ kind: "sprite-sheet";
2301
+ rows: number;
2302
+ frame: number;
2303
+ cols: number;
2304
+ } | null;
2305
+ license?: "CC0" | "proprietary" | undefined;
2306
+ }>;
2307
+ type ManifestEntryInput = z.input<typeof ManifestEntrySchema>;
2308
+ /**
2309
+ * Adapts kflow-assets manifest rows into the inspector picker's
2310
+ * `AssetCatalog`. The ONE deterministic derivation the Kura assets server
2311
+ * route (`GET /api/assets/catalog`) and any other manifest consumer share.
2312
+ */
2313
+ declare function manifestToAssetCatalog(entries: ReadonlyArray<ManifestEntry>, opts?: {
2314
+ cdnPrefix?: string;
2315
+ }): AssetCatalog;
2316
+ /**
2317
+ * Parses a `t:<kind>` / `l:<label>` / free-text asset search query. An
2318
+ * unrecognized `t:` value is dropped from the returned `kind` (there is no
2319
+ * value of `AssetCatalogEntry['kind']` to report) — `matchAssetQuery`, which
2320
+ * shares this same tokenizer internally, is the authority that turns it into
2321
+ * "matches nothing".
2322
+ */
2323
+ declare function parseAssetQuery(q: string): {
2324
+ text: string;
2325
+ kind?: AssetCatalogEntry['kind'];
2326
+ labels: string[];
2327
+ };
2328
+ /**
2329
+ * Matches one catalog entry against a `t:`/`l:`/free-text query. `l:` labels
2330
+ * are ANDed against `entry.category` (exact, case-insensitive); free text is
2331
+ * an ANDed case-insensitive substring over `name`+`category`. An unrecognized
2332
+ * `t:` kind matches nothing.
2333
+ */
2334
+ declare function matchAssetQuery(entry: AssetCatalogEntry, q: string): boolean;
2046
2335
 
2047
2336
  /**
2048
2337
  * Entity persistence types.
@@ -2501,8 +2790,8 @@ type EntityData = Record<string, EntityRow[]>;
2501
2790
  *
2502
2791
  * DO NOT EDIT MANUALLY — regenerated by almadar-pattern-sync `patterns` command.
2503
2792
  *
2504
- * Generated: 2026-09-02T20:03:03.936Z
2505
- * Pattern count: 274
2793
+ * Generated: 2026-09-03T18:48:24.196Z
2794
+ * Pattern count: 278
2506
2795
  */
2507
2796
 
2508
2797
  /**
@@ -2514,7 +2803,7 @@ type PatternPropValue = Record<string, FieldValue | undefined>;
2514
2803
  * All valid pattern type names from @almadar/core/patterns registry.
2515
2804
  * Use this type in render-ui effects for compile-time validation.
2516
2805
  */
2517
- 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' | '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' | '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' | 'form' | 'form-actions' | 'form-field' | 'form-layout' | 'form-section' | 'form-section-header' | 'fx-overlay' | '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-renderer' | 'upload-drop-zone' | 'version-diff' | 'violation-alert' | 'vote-stack' | 'vstack' | 'wizard-container' | 'wizard-navigation' | 'wizard-progress';
2806
+ 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-renderer' | 'upload-drop-zone' | 'version-diff' | 'violation-alert' | 'vote-stack' | 'vstack' | 'wizard-container' | 'wizard-navigation' | 'wizard-progress';
2518
2807
  /**
2519
2808
  * Pattern props map — each pattern type maps to its valid props interface.
2520
2809
  */
@@ -2942,6 +3231,12 @@ interface PatternPropsMap {
2942
3231
  featureClickEvent?: string | SExpr;
2943
3232
  keyMap?: PatternPropValue | string | SExpr;
2944
3233
  keyUpMap?: PatternPropValue | string | SExpr;
3234
+ editable?: boolean | string | SExpr;
3235
+ selectedId?: string | SExpr;
3236
+ onSelect?: ((...args: unknown[]) => unknown) | string | SExpr;
3237
+ onMove?: ((...args: unknown[]) => unknown) | string | SExpr;
3238
+ selectEvent?: string | SExpr;
3239
+ moveEvent?: string | SExpr;
2945
3240
  children?: unknown | string | SExpr;
2946
3241
  };
2947
3242
  'canvas-2d': {
@@ -2958,6 +3253,12 @@ interface PatternPropsMap {
2958
3253
  tileLeaveEvent?: string | SExpr;
2959
3254
  keyMap?: PatternPropValue | string | SExpr;
2960
3255
  keyUpMap?: PatternPropValue | string | SExpr;
3256
+ editable?: boolean | string | SExpr;
3257
+ selectedId?: string | SExpr;
3258
+ onSelect?: ((...args: unknown[]) => unknown) | string | SExpr;
3259
+ onMove?: ((...args: unknown[]) => unknown) | string | SExpr;
3260
+ selectEvent?: string | SExpr;
3261
+ moveEvent?: string | SExpr;
2961
3262
  camera?: string | SExpr;
2962
3263
  scale?: number | string | SExpr;
2963
3264
  tileWidth?: number | string | SExpr;
@@ -3165,6 +3466,16 @@ interface PatternPropsMap {
3165
3466
  runEvent?: string | SExpr;
3166
3467
  className?: string | SExpr;
3167
3468
  };
3469
+ 'command-palette': {
3470
+ type: 'command-palette';
3471
+ open: boolean | string | SExpr;
3472
+ onOpenChange: ((...args: unknown[]) => unknown) | string | SExpr;
3473
+ commands: unknown[] | string | SExpr;
3474
+ onSelect?: ((...args: unknown[]) => unknown) | string | SExpr;
3475
+ placeholder?: string | SExpr;
3476
+ emptyLabel?: string | SExpr;
3477
+ className?: string | SExpr;
3478
+ };
3168
3479
  'community-links': {
3169
3480
  type: 'community-links';
3170
3481
  github?: PatternPropValue | string | SExpr;
@@ -3530,6 +3841,36 @@ interface PatternPropsMap {
3530
3841
  activeId?: string | SExpr;
3531
3842
  className?: string | SExpr;
3532
3843
  };
3844
+ 'dock-layout': {
3845
+ type: 'dock-layout';
3846
+ rail?: unknown | string | SExpr;
3847
+ sidebar?: unknown | string | SExpr;
3848
+ main: unknown | string | SExpr;
3849
+ bottomPanel?: unknown | string | SExpr;
3850
+ statusBar?: unknown | string | SExpr;
3851
+ secondarySidebar?: unknown | string | SExpr;
3852
+ railWidth?: number | string | SExpr;
3853
+ secondarySidebarWidth?: number | string | SExpr;
3854
+ sidebarCollapsed?: boolean | string | SExpr;
3855
+ onSidebarCollapsedChange?: ((...args: unknown[]) => unknown) | string | SExpr;
3856
+ sidebarWidth?: number | string | SExpr;
3857
+ onSidebarWidthChange?: ((...args: unknown[]) => unknown) | string | SExpr;
3858
+ sidebarMinSize?: number | string | SExpr;
3859
+ bottomPanelCollapsed?: boolean | string | SExpr;
3860
+ onBottomPanelCollapsedChange?: ((...args: unknown[]) => unknown) | string | SExpr;
3861
+ bottomPanelHeight?: number | string | SExpr;
3862
+ onBottomPanelHeightChange?: ((...args: unknown[]) => unknown) | string | SExpr;
3863
+ bottomPanelMinSize?: number | string | SExpr;
3864
+ secondarySidebarCollapsed?: boolean | string | SExpr;
3865
+ onSecondarySidebarCollapsedChange?: ((...args: unknown[]) => unknown) | string | SExpr;
3866
+ className?: string | SExpr;
3867
+ railClassName?: string | SExpr;
3868
+ sidebarClassName?: string | SExpr;
3869
+ mainClassName?: string | SExpr;
3870
+ bottomPanelClassName?: string | SExpr;
3871
+ statusBarClassName?: string | SExpr;
3872
+ secondarySidebarClassName?: string | SExpr;
3873
+ };
3533
3874
  'document-details': {
3534
3875
  type: 'document-details';
3535
3876
  entity?: PatternPropValue | string | SExpr;
@@ -3915,6 +4256,7 @@ interface PatternPropsMap {
3915
4256
  onNodeAction?: ((...args: unknown[]) => unknown) | string | SExpr;
3916
4257
  nodeActionIcon?: string | SExpr;
3917
4258
  nodeActionLabel?: string | SExpr;
4259
+ onNodeReorder?: ((...args: unknown[]) => unknown) | string | SExpr;
3918
4260
  className?: string | SExpr;
3919
4261
  indent?: number | string | SExpr;
3920
4262
  };
@@ -3989,6 +4331,13 @@ interface PatternPropsMap {
3989
4331
  position?: string | SExpr;
3990
4332
  className?: string | SExpr;
3991
4333
  };
4334
+ 'floating-toolbar': {
4335
+ type: 'floating-toolbar';
4336
+ items: unknown[] | string | SExpr;
4337
+ position?: string | SExpr;
4338
+ children?: unknown | string | SExpr;
4339
+ className?: string | SExpr;
4340
+ };
3992
4341
  'form': {
3993
4342
  type: 'form';
3994
4343
  children?: unknown | string | SExpr;
@@ -4112,6 +4461,16 @@ interface PatternPropsMap {
4112
4461
  children?: unknown | string | SExpr;
4113
4462
  className?: string | SExpr;
4114
4463
  };
4464
+ 'game-audio-cue': {
4465
+ type: 'game-audio-cue';
4466
+ cue?: string | SExpr;
4467
+ cueSeq?: number | string | SExpr;
4468
+ music?: string | SExpr;
4469
+ muted?: boolean | string | SExpr;
4470
+ volume?: number | string | SExpr;
4471
+ manifest: PatternPropValue | string | SExpr;
4472
+ baseUrl?: string | SExpr;
4473
+ };
4115
4474
  'game-audio-toggle': {
4116
4475
  type: 'game-audio-toggle';
4117
4476
  size?: string | SExpr;
@@ -4120,6 +4479,7 @@ interface PatternPropsMap {
4120
4479
  error?: PatternPropValue | string | SExpr;
4121
4480
  onAsset?: PatternPropValue | string | SExpr;
4122
4481
  offAsset?: PatternPropValue | string | SExpr;
4482
+ toggleEvent?: string | SExpr;
4123
4483
  };
4124
4484
  'game-hud': {
4125
4485
  type: 'game-hud';
@@ -4472,6 +4832,7 @@ interface PatternPropsMap {
4472
4832
  width?: number | string | SExpr;
4473
4833
  height?: number | string | SExpr;
4474
4834
  backgroundColor?: string | SExpr;
4835
+ fontFamily?: string | SExpr;
4475
4836
  shapes?: unknown[] | string | SExpr;
4476
4837
  drawables?: unknown[] | string | SExpr;
4477
4838
  projector?: PatternPropValue | string | SExpr;
@@ -4608,6 +4969,9 @@ interface PatternPropsMap {
4608
4969
  gridColor?: string | SExpr;
4609
4970
  axisColor?: string | SExpr;
4610
4971
  showTickLabels?: boolean | string | SExpr;
4972
+ tickLabelFontSize?: number | string | SExpr;
4973
+ labelFontSize?: number | string | SExpr;
4974
+ fontFamily?: string | SExpr;
4611
4975
  showCurveLabels?: boolean | string | SExpr;
4612
4976
  curves?: unknown[] | string | SExpr;
4613
4977
  points?: unknown[] | string | SExpr;
@@ -5358,6 +5722,7 @@ interface PatternPropsMap {
5358
5722
  className?: string | SExpr;
5359
5723
  leftClassName?: string | SExpr;
5360
5724
  rightClassName?: string | SExpr;
5725
+ onRatioChange?: ((...args: unknown[]) => unknown) | string | SExpr;
5361
5726
  };
5362
5727
  'split-section': {
5363
5728
  type: 'split-section';
@@ -6938,4 +7303,4 @@ interface RenderUINode {
6938
7303
  renderItem?: RenderUINode;
6939
7304
  }
6940
7305
 
6941
- export { type ComposeEffect as $, type AnyPatternConfig as A, AssetCatalogEntrySchema as B, AssetCatalogSchema as C, type AssetDimension as D, type EntityField as E, type FieldValue as F, AssetDimensionSchema as G, AssetSchema as H, type IdentityLedger as I, type AssetUrl as J, type AtomicEffect as K, type BehaviorEffect as L, CAMERA_MODES as M, type CallServiceConfig as N, type OrbitalId as O, type PageId as P, type CallServiceEffect as Q, type RelationConfig as R, type ServiceRef as S, type TraitId as T, type UISlot as U, type Camera as V, type CameraMode as W, CameraModeSchema as X, CameraSchema as Y, type CheckpointLoadEffect as Z, type CheckpointSaveEffect as _, type EntityPersistence as a, type PatternProps as a$, type ControlValue as a0, type DerefEffect as a1, type DespawnEffect as a2, type DoEffect as a3, ENTITY_ROLES as a4, type EffectInput as a5, EffectSchema as a6, type EmitConfig as a7, type EmitEffect as a8, type EntityData as a9, IdentityLedgerSchema as aA, type LedgerEntry as aB, LedgerEntrySchema as aC, type LedgerKind as aD, LedgerKindSchema as aE, type LlmEffect as aF, type LogEffect as aG, type McpServiceDef as aH, McpServiceDefSchema as aI, type MemoryEffect as aJ, type NavigateBackEffect as aK, type NavigateEffect as aL, type NavigateOptions as aM, type NnConfig as aN, type NnLayer as aO, type NotifyEffect as aP, type ObjectEntityField as aQ, type OrbitalEntity as aR, type OrbitalEntityInput as aS, OrbitalEntitySchema as aT, OrbitalIdSchema as aU, type OsEffect as aV, PATTERN_TYPES as aW, PageIdSchema as aX, type PaletteEntryId as aY, PaletteEntryIdSchema as aZ, type PatternConfig as a_, type EntityFieldInput as aa, EntityFieldSchema as ab, EntityIdSchema as ac, EntityPersistenceSchema as ad, type EntityRole as ae, EntityRoleSchema as af, EntitySchema as ag, type EntityWith as ah, type EnumEntityField as ai, type EvaluateConfig as aj, type EvaluateEffect as ak, EventIdSchema as al, FIELD_TYPES as am, type FetchEffect as an, type FetchOptions as ao, type FetchResult as ap, type Field as aq, FieldSchema as ar, type FieldType as as, FieldTypeSchema as at, type FileValue as au, FileValueSchema as av, type ForwardConfig as aw, type ForwardEffect as ax, type IdForKind as ay, type IdKind as az, type EventId as b, type TrainEffect as b$, type PatternPropsMap as b0, type PatternType as b1, type PersistData as b2, type PersistEffect as b3, type PersistEmitConfig as b4, type RefEffect as b5, RelationConfigSchema as b6, type RelationEntityField as b7, type RenderChildrenMap as b8, type RenderItemLambda as b9, type ServiceType as bA, ServiceTypeSchema as bB, type SessionEffect as bC, type SetEffect as bD, type SheetProjection as bE, SheetProjectionSchema as bF, type SocketEvents as bG, SocketEventsSchema as bH, type SocketServiceDef as bI, SocketServiceDefSchema as bJ, type SpawnEffect as bK, type SpriteDirection as bL, SpriteDirectionSchema as bM, type SpriteSheetAtlas as bN, type SpriteSheetAtlasInput as bO, SpriteSheetAtlasSchema as bP, type SubTexture as bQ, SubTextureSchema as bR, type SwapEffect as bS, type TextureAtlas as bT, TextureAtlasSchema as bU, type ThemeId as bV, ThemeIdSchema as bW, type Tilesheet as bX, TilesheetSchema as bY, type TraceEffect as bZ, type TrainConfig as b_, type RenderUINode as ba, type ResolvedPatternProps as bb, type RestAuthConfig as bc, RestAuthConfigSchema as bd, type RestServiceDef as be, RestServiceDefSchema as bf, SEMANTIC_STRING_TYPES as bg, SERVICE_TYPES as bh, SHEET_PROJECTIONS as bi, SPRITE_DIRECTIONS as bj, type ScalarEntityField as bk, type ScenePos as bl, ScenePosSchema as bm, type SemanticAssetRef as bn, type SemanticAssetRefInput as bo, SemanticAssetRefSchema as bp, type SemanticStringType as bq, ServiceDefinitionSchema as br, type ServiceId as bs, ServiceIdSchema as bt, type ServiceParams as bu, type ServiceParamsValue as bv, type ServiceRefObject as bw, ServiceRefObjectSchema as bx, ServiceRefSchema as by, ServiceRefStringSchema as bz, type Effect as c, notify as c$, TraitIdSchema as c0, type TypedEffect as c1, UISlotSchema as c2, UI_SLOTS as c3, VISUAL_STYLES as c4, type ValidateEffect as c5, type VisualStyle as c6, VisualStyleSchema as c7, type WatchEffect as c8, type WatchOptions as c9, isFieldValue as cA, isFileValue as cB, isMcpService as cC, isOrbitalId as cD, isPageId as cE, isPaletteEntryId as cF, isPhoneValue as cG, isRestService as cH, isRuntimeEntity as cI, isSExprEffect as cJ, isSemanticStringType as cK, isSemanticStringValue as cL, isServiceId as cM, isServiceReference as cN, isServiceReferenceObject as cO, isSocketService as cP, isThemeId as cQ, isTraitId as cR, isUrlValue as cS, isUuidValue as cT, isValidPatternType as cU, ledgerCurName as cV, ledgerRename as cW, ledgerResolveName as cX, mintId as cY, navigate as cZ, navigateBack as c_, asEntityId as ca, asEventId as cb, asOrbitalId as cc, asPageId as cd, asPaletteEntryId as ce, asServiceId as cf, asThemeId as cg, asTraitId as ch, atomic as ci, callService as cj, createAssetKey as ck, deref as cl, deriveCollection as cm, despawn as cn, doEffects as co, emit as cp, findService as cq, getDefaultAnimationsForRole as cr, getServiceNames as cs, hasService as ct, idKindOf as cu, idPrefix as cv, isEffect as cw, isEmailValue as cx, isEntityId as cy, isEventId as cz, type EntityId as d, parseAssetKey as d0, parseServiceRef as d1, persist as d2, persistenceModeAllowsOverrides as d3, ref as d4, renderUI as d5, set as d6, spawn as d7, swap as d8, validateAssetAnimations as d9, watch as da, type Entity as e, type EntityRow as f, type ServiceDefinition as g, type RenderBinding as h, type RenderUIEffect as i, ANIMATION_NAMES as j, ASSET_ASPECTS as k, ASSET_DIMENSIONS as l, type AgentEffect as m, type AnimationDef as n, type AnimationDefInput as o, AnimationDefSchema as p, type AnimationName as q, AnimationNameSchema as r, type ApplicationEffect as s, type ArrayEntityField as t, type Asset as u, type AssetAspect as v, AssetAspectSchema as w, type AssetCatalog as x, type AssetCatalogEntry as y, type AssetCatalogEntryInput as z };
7306
+ export { type CheckpointLoadEffect as $, type AnyPatternConfig as A, AssetCatalogEntrySchema as B, AssetCatalogSchema as C, type AssetDimension as D, type EntityField as E, type FieldValue as F, AssetDimensionSchema as G, AssetSchema as H, type IdentityLedger as I, type AssetUrl as J, type AtomicEffect as K, type AudioManifest as L, AudioManifestSchema as M, type BehaviorEffect as N, type OrbitalId as O, type PageId as P, CAMERA_MODES as Q, type RelationConfig as R, type ServiceRef as S, type TraitId as T, type UISlot as U, type CallServiceConfig as V, type CallServiceEffect as W, type Camera as X, type CameraMode as Y, CameraModeSchema as Z, CameraSchema as _, type EntityPersistence as a, type McpServiceDef as a$, type CheckpointSaveEffect as a0, type ComposeEffect as a1, type ControlValue as a2, DEFAULT_UNIT_ANIMATION_ROWS as a3, type DerefEffect as a4, type DespawnEffect as a5, type DoEffect as a6, ENTITY_ROLES as a7, type EffectInput as a8, EffectSchema as a9, type ForwardEffect as aA, type IdForKind as aB, type IdKind as aC, IdentityLedgerSchema as aD, type LedgerEntry as aE, LedgerEntrySchema as aF, type LedgerKind as aG, LedgerKindSchema as aH, type LlmEffect as aI, type LogEffect as aJ, MANIFEST_ASSET_LICENSES as aK, MANIFEST_CANVAS_AFFINITIES as aL, MANIFEST_ENTRY_KINDS as aM, MANIFEST_SOURCE_CATALOGS as aN, type ManifestAssetLicense as aO, ManifestAssetLicenseSchema as aP, type ManifestCanvasAffinity as aQ, ManifestCanvasAffinitySchema as aR, type ManifestEntry as aS, type ManifestEntryInput as aT, type ManifestEntryKind as aU, ManifestEntryKindSchema as aV, ManifestEntrySchema as aW, type ManifestFrameSpec as aX, ManifestFrameSpecSchema as aY, type ManifestSourceCatalog as aZ, ManifestSourceCatalogSchema as a_, type EmitConfig as aa, type EmitEffect as ab, type EntityData as ac, type EntityFieldInput as ad, EntityFieldSchema as ae, EntityIdSchema as af, EntityPersistenceSchema as ag, type EntityRole as ah, EntityRoleSchema as ai, EntitySchema as aj, type EntityWith as ak, type EnumEntityField as al, type EvaluateConfig as am, type EvaluateEffect as an, EventIdSchema as ao, FIELD_TYPES as ap, type FetchEffect as aq, type FetchOptions as ar, type FetchResult as as, type Field as at, FieldSchema as au, type FieldType as av, FieldTypeSchema as aw, type FileValue as ax, FileValueSchema as ay, type ForwardConfig as az, type EventId as b, type SocketEvents as b$, McpServiceDefSchema as b0, type MemoryEffect as b1, type NavigateBackEffect as b2, type NavigateEffect as b3, type NavigateOptions as b4, type NnConfig as b5, type NnLayer as b6, type NotifyEffect as b7, type ObjectEntityField as b8, type OrbitalEntity 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, isFileValue 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, despawn as cN, doEffects as cO, emit as cP, findService as cQ, getDefaultAnimationsForRole as cR, getServiceNames as cS, hasService as cT, idKindOf as cU, idPrefix as cV, isEffect as cW, isEmailValue as cX, isEntityId as cY, isEventId as cZ, isFieldValue 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, isMcpService as d0, isOrbitalId as d1, isPageId as d2, isPaletteEntryId as d3, isPhoneValue as d4, isRestService as d5, isRuntimeEntity as d6, isSExprEffect as d7, isSemanticStringType as d8, isSemanticStringValue as d9, set as dA, spawn as dB, swap as dC, validateAssetAnimations as dD, watch as dE, isServiceId as da, isServiceReference as db, isServiceReferenceObject as dc, isSocketService as dd, isThemeId as de, isTraitId as df, isUrlValue as dg, isUuidValue as dh, isValidPatternType as di, ledgerCurName as dj, ledgerRename as dk, ledgerResolveName as dl, manifestToAssetCatalog as dm, matchAssetQuery as dn, mintId as dp, navigate as dq, navigateBack as dr, notify 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 EntityRow as f, type ServiceDefinition as g, type RenderBinding as h, type RenderUIEffect as i, ANIMATION_NAMES as j, ASSET_ASPECTS as k, ASSET_DIMENSIONS as l, type AgentEffect as m, type AnimationDef as n, type AnimationDefInput as o, AnimationDefSchema as p, type AnimationName as q, AnimationNameSchema as r, type ApplicationEffect as s, type ArrayEntityField as t, type Asset as u, type AssetAspect as v, AssetAspectSchema as w, type AssetCatalog as x, type AssetCatalogEntry as y, type AssetCatalogEntryInput as z };
@@ -1,4 +1,4 @@
1
- import { O as OrbitalSchema } from './schema-Cma07_18.js';
1
+ import { O as OrbitalSchema } from './schema-1KQUz2pE.js';
2
2
  import { S as SExpr } from './expression-Fk8bQWef.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-DoAKLgCZ.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-DoAKLgCZ.js';
3
- import { a as EntityPersistence, E as EntityField } from '../effect-C4uehm-r.js';
4
- import { a as TraitReference } from '../trait-BXkQKZbO.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-DJYozDXK.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-DJYozDXK.js';
3
+ import { a as EntityPersistence, E as EntityField } from '../effect-Baldm2vM.js';
4
+ import { a as TraitReference } from '../trait-Dsp0vmGp.js';
5
5
  export { J as JsonValue } from '../expression-Fk8bQWef.js';
6
6
  import 'zod';
7
7