@almadar/core 10.72.0 → 10.74.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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "exportedAt": "2026-08-23T09:11:28.111Z",
3
+ "exportedAt": "2026-08-29T08:09:09.100Z",
4
4
  "integrators": {
5
5
  "github": {
6
6
  "name": "github",
@@ -1790,6 +1790,40 @@
1790
1790
  "url": "string"
1791
1791
  }
1792
1792
  },
1793
+ {
1794
+ "name": "uploadMany",
1795
+ "description": "",
1796
+ "params": [
1797
+ {
1798
+ "name": "bucket",
1799
+ "type": "string",
1800
+ "required": true,
1801
+ "description": ""
1802
+ },
1803
+ {
1804
+ "name": "files",
1805
+ "type": "array",
1806
+ "required": true,
1807
+ "description": ""
1808
+ },
1809
+ {
1810
+ "name": "acl",
1811
+ "type": "'public' | 'private'",
1812
+ "required": false,
1813
+ "description": ""
1814
+ },
1815
+ {
1816
+ "name": "maxSize",
1817
+ "type": "number",
1818
+ "required": false,
1819
+ "description": ""
1820
+ }
1821
+ ],
1822
+ "responseShape": {
1823
+ "items": "array",
1824
+ "count": "number"
1825
+ }
1826
+ },
1793
1827
  {
1794
1828
  "name": "download",
1795
1829
  "description": "",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "exportedAt": "2026-08-28T23:51:47.246Z",
3
+ "exportedAt": "2026-08-29T18:15:51.642Z",
4
4
  "patterns": {
5
5
  "entity-table": {
6
6
  "type": "entity-table",
@@ -13301,6 +13301,12 @@
13301
13301
  ],
13302
13302
  "description": "Custom sidebar footer (optional). When omitted, the sidebar has no footer — apps that need Settings/etc. add them via navItems."
13303
13303
  },
13304
+ "sidebarContent": {
13305
+ "types": [
13306
+ "node"
13307
+ ],
13308
+ "description": "Optional content region rendered between the nav links and the footer — a page tree or any consumer navigation surface; scrolls independently and takes the sidebar's remaining height. Hidden in the collapsed rail."
13309
+ },
13304
13310
  "currentPath": {
13305
13311
  "types": [
13306
13312
  "string"
@@ -25368,6 +25374,23 @@
25368
25374
  ],
25369
25375
  "description": "Currently selected file path"
25370
25376
  },
25377
+ "selectedId": {
25378
+ "types": [
25379
+ "string"
25380
+ ],
25381
+ "description": "Currently selected node id, in flat `items` mode: the row highlights and every ancestor auto-expands so the selection is always visible — the \"you are here\" a navigation tree needs."
25382
+ },
25383
+ "look": {
25384
+ "types": [
25385
+ "string"
25386
+ ],
25387
+ "description": "Visual treatment for flat `items` mode: `files` (default) keeps the monospace file-browser look; `nav` renders a sidebar navigation tree — regular font, document icons, roomier hit areas.",
25388
+ "enumValues": [
25389
+ "files",
25390
+ "nav"
25391
+ ],
25392
+ "default": "files"
25393
+ },
25371
25394
  "onFileSelect": {
25372
25395
  "types": [
25373
25396
  "function"
@@ -25395,6 +25418,32 @@
25395
25418
  ],
25396
25419
  "default": ""
25397
25420
  },
25421
+ "onNodeAction": {
25422
+ "types": [
25423
+ "function"
25424
+ ],
25425
+ "description": "Called from the row's hover action button, in flat `items` mode; carries that node's id. Presence-gated: binding it renders the action.",
25426
+ "kind": "callback",
25427
+ "callbackArgs": [
25428
+ {
25429
+ "name": "id",
25430
+ "type": "string"
25431
+ }
25432
+ ],
25433
+ "default": ""
25434
+ },
25435
+ "nodeActionIcon": {
25436
+ "types": [
25437
+ "string"
25438
+ ],
25439
+ "description": "Icon for the row hover action (default: plus)."
25440
+ },
25441
+ "nodeActionLabel": {
25442
+ "types": [
25443
+ "string"
25444
+ ],
25445
+ "description": "Accessible label/tooltip for the row hover action."
25446
+ },
25398
25447
  "className": {
25399
25448
  "types": [
25400
25449
  "string"
@@ -47772,6 +47821,19 @@
47772
47821
  ],
47773
47822
  "description": "Muted byline under the title; hidden when empty"
47774
47823
  },
47824
+ "coverImage": {
47825
+ "types": [
47826
+ "string"
47827
+ ],
47828
+ "description": "Cover/hero image URL painted as a full-bleed banner above the header row (Notion/article-hero shape); hidden when empty"
47829
+ },
47830
+ "icon": {
47831
+ "types": [
47832
+ "icon",
47833
+ "string"
47834
+ ],
47835
+ "description": "Document icon rendered beside the title (a file glyph, a domain icon); hidden when empty"
47836
+ },
47775
47837
  "value": {
47776
47838
  "types": [
47777
47839
  "string"
@@ -47936,6 +47998,7 @@
47936
47998
  "family": "core",
47937
47999
  "description": "DocumentDetails — the document's metadata as a compact settings card for the rail beside a DocumentPanel, each property committing in place.",
47938
48000
  "capabilities": "document settings, page details, post settings sidebar, metadata panel, document properties, publish settings",
48001
+ "fieldsContract": "display",
47939
48002
  "suggestedFor": [
47940
48003
  "document",
47941
48004
  "details",
@@ -47995,7 +48058,8 @@
47995
48058
  "text",
47996
48059
  "boolean",
47997
48060
  "select",
47998
- "readonly"
48061
+ "readonly",
48062
+ "image"
47999
48063
  ]
48000
48064
  },
48001
48065
  "options": {
@@ -48019,6 +48083,11 @@
48019
48083
  "boolean",
48020
48084
  "percent"
48021
48085
  ]
48086
+ },
48087
+ "type": {
48088
+ "types": [
48089
+ "string"
48090
+ ]
48022
48091
  }
48023
48092
  }
48024
48093
  }
@@ -48042,6 +48111,30 @@
48042
48111
  }
48043
48112
  ]
48044
48113
  },
48114
+ "relationEvent": {
48115
+ "types": [
48116
+ "string"
48117
+ ],
48118
+ "description": "Makes relation chips clickable: emitted with { field, id, name } when a hydrated relation value (or one row of a many-relation) is clicked — the host routes it to the linked record's own surface.",
48119
+ "kind": "event-ref",
48120
+ "emitPayloadSchema": [
48121
+ {
48122
+ "name": "field",
48123
+ "type": "string",
48124
+ "required": true
48125
+ },
48126
+ {
48127
+ "name": "id",
48128
+ "type": "string",
48129
+ "required": true
48130
+ },
48131
+ {
48132
+ "name": "name",
48133
+ "type": "string",
48134
+ "required": true
48135
+ }
48136
+ ]
48137
+ },
48045
48138
  "title": {
48046
48139
  "types": [
48047
48140
  "string"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "exportedAt": "2026-08-28T23:51:47.246Z",
3
+ "exportedAt": "2026-08-29T18:15:51.642Z",
4
4
  "patterns": {
5
5
  "entity-table": {
6
6
  "type": "entity-table",
@@ -13301,6 +13301,12 @@
13301
13301
  ],
13302
13302
  "description": "Custom sidebar footer (optional). When omitted, the sidebar has no footer — apps that need Settings/etc. add them via navItems."
13303
13303
  },
13304
+ "sidebarContent": {
13305
+ "types": [
13306
+ "node"
13307
+ ],
13308
+ "description": "Optional content region rendered between the nav links and the footer — a page tree or any consumer navigation surface; scrolls independently and takes the sidebar's remaining height. Hidden in the collapsed rail."
13309
+ },
13304
13310
  "currentPath": {
13305
13311
  "types": [
13306
13312
  "string"
@@ -25368,6 +25374,23 @@
25368
25374
  ],
25369
25375
  "description": "Currently selected file path"
25370
25376
  },
25377
+ "selectedId": {
25378
+ "types": [
25379
+ "string"
25380
+ ],
25381
+ "description": "Currently selected node id, in flat `items` mode: the row highlights and every ancestor auto-expands so the selection is always visible — the \"you are here\" a navigation tree needs."
25382
+ },
25383
+ "look": {
25384
+ "types": [
25385
+ "string"
25386
+ ],
25387
+ "description": "Visual treatment for flat `items` mode: `files` (default) keeps the monospace file-browser look; `nav` renders a sidebar navigation tree — regular font, document icons, roomier hit areas.",
25388
+ "enumValues": [
25389
+ "files",
25390
+ "nav"
25391
+ ],
25392
+ "default": "files"
25393
+ },
25371
25394
  "onFileSelect": {
25372
25395
  "types": [
25373
25396
  "function"
@@ -25395,6 +25418,32 @@
25395
25418
  ],
25396
25419
  "default": ""
25397
25420
  },
25421
+ "onNodeAction": {
25422
+ "types": [
25423
+ "function"
25424
+ ],
25425
+ "description": "Called from the row's hover action button, in flat `items` mode; carries that node's id. Presence-gated: binding it renders the action.",
25426
+ "kind": "callback",
25427
+ "callbackArgs": [
25428
+ {
25429
+ "name": "id",
25430
+ "type": "string"
25431
+ }
25432
+ ],
25433
+ "default": ""
25434
+ },
25435
+ "nodeActionIcon": {
25436
+ "types": [
25437
+ "string"
25438
+ ],
25439
+ "description": "Icon for the row hover action (default: plus)."
25440
+ },
25441
+ "nodeActionLabel": {
25442
+ "types": [
25443
+ "string"
25444
+ ],
25445
+ "description": "Accessible label/tooltip for the row hover action."
25446
+ },
25398
25447
  "className": {
25399
25448
  "types": [
25400
25449
  "string"
@@ -47772,6 +47821,19 @@
47772
47821
  ],
47773
47822
  "description": "Muted byline under the title; hidden when empty"
47774
47823
  },
47824
+ "coverImage": {
47825
+ "types": [
47826
+ "string"
47827
+ ],
47828
+ "description": "Cover/hero image URL painted as a full-bleed banner above the header row (Notion/article-hero shape); hidden when empty"
47829
+ },
47830
+ "icon": {
47831
+ "types": [
47832
+ "icon",
47833
+ "string"
47834
+ ],
47835
+ "description": "Document icon rendered beside the title (a file glyph, a domain icon); hidden when empty"
47836
+ },
47775
47837
  "value": {
47776
47838
  "types": [
47777
47839
  "string"
@@ -47936,6 +47998,7 @@
47936
47998
  "family": "core",
47937
47999
  "description": "DocumentDetails — the document's metadata as a compact settings card for the rail beside a DocumentPanel, each property committing in place.",
47938
48000
  "capabilities": "document settings, page details, post settings sidebar, metadata panel, document properties, publish settings",
48001
+ "fieldsContract": "display",
47939
48002
  "suggestedFor": [
47940
48003
  "document",
47941
48004
  "details",
@@ -47995,7 +48058,8 @@
47995
48058
  "text",
47996
48059
  "boolean",
47997
48060
  "select",
47998
- "readonly"
48061
+ "readonly",
48062
+ "image"
47999
48063
  ]
48000
48064
  },
48001
48065
  "options": {
@@ -48019,6 +48083,11 @@
48019
48083
  "boolean",
48020
48084
  "percent"
48021
48085
  ]
48086
+ },
48087
+ "type": {
48088
+ "types": [
48089
+ "string"
48090
+ ]
48022
48091
  }
48023
48092
  }
48024
48093
  }
@@ -48042,6 +48111,30 @@
48042
48111
  }
48043
48112
  ]
48044
48113
  },
48114
+ "relationEvent": {
48115
+ "types": [
48116
+ "string"
48117
+ ],
48118
+ "description": "Makes relation chips clickable: emitted with { field, id, name } when a hydrated relation value (or one row of a many-relation) is clicked — the host routes it to the linked record's own surface.",
48119
+ "kind": "event-ref",
48120
+ "emitPayloadSchema": [
48121
+ {
48122
+ "name": "field",
48123
+ "type": "string",
48124
+ "required": true
48125
+ },
48126
+ {
48127
+ "name": "id",
48128
+ "type": "string",
48129
+ "required": true
48130
+ },
48131
+ {
48132
+ "name": "name",
48133
+ "type": "string",
48134
+ "required": true
48135
+ }
48136
+ ]
48137
+ },
48045
48138
  "title": {
48046
48139
  "types": [
48047
48140
  "string"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "exportedAt": "2026-08-23T09:11:28.111Z",
3
+ "exportedAt": "2026-08-29T08:09:09.100Z",
4
4
  "services": {
5
5
  "llm": {
6
6
  "name": "llm",
@@ -2682,6 +2682,40 @@
2682
2682
  "url": "string"
2683
2683
  }
2684
2684
  },
2685
+ {
2686
+ "name": "uploadMany",
2687
+ "description": "",
2688
+ "params": [
2689
+ {
2690
+ "name": "bucket",
2691
+ "type": "string",
2692
+ "required": true,
2693
+ "description": ""
2694
+ },
2695
+ {
2696
+ "name": "files",
2697
+ "type": "array",
2698
+ "required": true,
2699
+ "description": ""
2700
+ },
2701
+ {
2702
+ "name": "acl",
2703
+ "type": "'public' | 'private'",
2704
+ "required": false,
2705
+ "description": ""
2706
+ },
2707
+ {
2708
+ "name": "maxSize",
2709
+ "type": "number",
2710
+ "required": false,
2711
+ "description": ""
2712
+ }
2713
+ ],
2714
+ "responseShape": {
2715
+ "items": "array",
2716
+ "count": "number"
2717
+ }
2718
+ },
2685
2719
  {
2686
2720
  "name": "download",
2687
2721
  "description": "",
@@ -1,6 +1,6 @@
1
- import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-BRv7XO6_.js';
1
+ import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-D1zKrxnf.js';
2
2
  import { J as JsonValue, E as Expression, S as SExpr, R as RuntimeValue } from './expression-Fk8bQWef.js';
3
- import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, g as ServiceDefinition, I as IdentityLedger } from './effect-BftJTKJZ.js';
3
+ import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, g as ServiceDefinition, I as IdentityLedger } from './effect-C0MRXCwF.js';
4
4
  import { z } from 'zod';
5
5
 
6
6
  /**
@@ -1,4 +1,4 @@
1
- import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-BftJTKJZ.js';
1
+ import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-C0MRXCwF.js';
2
2
  import { E as Expression, S as SExpr, J as JsonValue } from './expression-Fk8bQWef.js';
3
3
  import { z } from 'zod';
4
4
 
@@ -1,8 +1,8 @@
1
- export { A as AGENT_DOMAIN_CATEGORIES, f as ALLOWED_CUSTOM_COMPONENTS, g as AgentDomainCategory, h as AgentDomainCategorySchema, i as AllowedCustomComponent, O as AppSchema, C as ColorSlice, j as ColorSliceSchema, k as ColorTokens, l as ColorTokensSchema, m as ComputedEventContract, n as ComputedEventContractSchema, o as ComputedEventListener, p as ComputedEventListenerSchema, q as ConfigProvenanceRecord, r as ConfigProvenanceRecordSchema, s as CustomPatternDefinition, t as CustomPatternDefinitionInput, u as CustomPatternDefinitionSchema, v as CustomPatternMap, w as CustomPatternMapInput, x as CustomPatternMapSchema, D as DensitySlice, y as DensitySliceSchema, z as DensityTokens, B as DensityTokensSchema, F as DesignPreferences, G as DesignPreferencesInput, H as DesignPreferencesSchema, I as DesignTokens, J as DesignTokensInput, K as DesignTokensSchema, L as DomainCategory, M as DomainCategorySchema, N as DomainContext, Q as DomainContextInput, R as DomainContextSchema, S as DomainVocabulary, T as DomainVocabularySchema, V as ElevationSlice, W as ElevationSliceSchema, X as ElevationTokens, Y as ElevationTokensSchema, Z as EntityCall, _ as EntityCallSchema, E as EntityRef, $ as EntityRefSchema, a0 as EntityRefStringSchema, a1 as EntitySemanticRole, a2 as EntitySemanticRoleSchema, a3 as EventListener, a4 as EventListenerSchema, a5 as EventSemanticRole, a6 as EventSemanticRoleSchema, a7 as EventSource, a8 as EventSourceSchema, b as ExpectDeclaration, a9 as ExpectDeclarationSchema, aa as FullOrbitalUnit, ab as GameSubCategory, ac as GameSubCategorySchema, ad as GeometrySlice, ae as GeometrySliceSchema, af as GeometryTokens, ag as GeometryTokensSchema, ah as IconFamily, ai as IconFamilySchema, aj as IconographySlice, ak as IconographySliceSchema, al as IconographyTokens, am as IconographyTokensSchema, an as IllustrationSlice, ao as IllustrationSliceSchema, ap as IllustrationStyle, aq as IllustrationStyleSchema, ar as IllustrationTokens, as as IllustrationTokensSchema, at as MotionDurationKey, au as MotionDurationKeySchema, av as MotionDurationPalette, aw as MotionDurationPaletteSchema, ax as MotionEasingKey, ay as MotionEasingKeySchema, az as MotionEasingPalette, aA as MotionEasingPaletteSchema, aB as MotionIntent, aC as MotionIntentMap, aD as MotionIntentMapSchema, aE as MotionIntentSchema, aF as MotionSlice, aG as MotionSliceSchema, aH as MotionTokens, aI as MotionTokensSchema, aJ as NavItem, aK as NavStackEntry, aL as NodeClassification, aM as NodeClassificationSchema, aa as Orbital, aN as OrbitalConfig, aO as OrbitalConfigInput, aP as OrbitalConfigSchema, a as OrbitalDefinition, aQ as OrbitalDefinitionSchema, aR as OrbitalInput, e as OrbitalPage, aS as OrbitalPageInput, aT as OrbitalPageSchema, aU as OrbitalPageStrictInput, aV as OrbitalPageStrictSchema, O as OrbitalSchema, aW as OrbitalSchemaInput, aX as OrbitalSchemaSchema, aY as OrbitalSchemaWithTraits, aZ as OrbitalUnit, a_ as OrbitalUnitSchema, a$ as OrbitalZodSchema, c as Page, P as PageRef, d as PageRefObject, b0 as PageRefObjectSchema, b1 as PageRefSchema, b2 as PageRefStringSchema, b3 as PageSchema, b4 as PageTraitRef, b5 as PageTraitRefSchema, b6 as RelatedLink, b7 as RelatedLinkSchema, b8 as SchemaMetadata, b9 as SchemaMetadataSchema, ba as SkinSpec, bb as SkinSpecSchema, bc as SpacingScale, bd as SpacingScaleSchema, be as StateSemanticRole, bf as StateSemanticRoleSchema, bg as SuggestedGuard, bh as SuggestedGuardSchema, bi as ThemeDefinition, bj as ThemeDefinitionSchema, bk as ThemeRef, bl as ThemeRefSchema, bm as ThemeRefStringSchema, bn as ThemeTokens, bo as ThemeTokensSchema, bp as ThemeVariant, bq as ThemeVariantSchema, br as TypeIntent, bs as TypeIntentMap, bt as TypeIntentMapSchema, bu as TypeIntentSchema, bv as TypeScale, bw as TypeScaleEntry, bx as TypeScaleEntrySchema, by as TypeScaleSchema, bz as TypeScaleTokens, bA as TypeScaleTokensSchema, bB as TypeSizeKey, bC as TypeSizeKeySchema, bD as TypeSlice, bE as TypeSliceSchema, bF as TypeSlot, bG as TypeSlotSchema, bH as TypeWeight, bI as TypeWeightSchema, bJ as UXHints, bK as UXHintsSchema, U as UseDeclaration, bL as UseDeclarationSchema, bM as UserPersona, bN as UserPersonaInput, bO as UserPersonaSchema, a as ValidatedOrbital, bP as ViewType, bQ as ViewTypeSchema, bR as isEntityCall, bS as isEntityReference, bT as isEntityReferenceAny, bU as isImportedTraitRef, bV as isOrbitalDefinition, bW as isPageReference, bX as isPageReferenceObject, bY as isPageReferenceString, bZ as isThemeReference, b_ as parseEntityRef, b$ as parseImportedTraitRef, c0 as parseOrbitalSchema, c1 as parsePageRef, c2 as safeParseOrbitalSchema } from '../schema-8n8qR2Rb.js';
2
- export { j as ANIMATION_NAMES, k as ASSET_ASPECTS, l as ASSET_DIMENSIONS, m as AgentEffect, n as AnimationDef, o as AnimationDefInput, p as AnimationDefSchema, q as AnimationName, r as AnimationNameSchema, s as ApplicationEffect, t as ArrayEntityField, u as Asset, v as AssetAspect, w as AssetAspectSchema, x as AssetCatalog, y as AssetCatalogEntry, z as AssetCatalogEntryInput, B as AssetCatalogEntrySchema, C as AssetCatalogSchema, D as AssetDimension, G as AssetDimensionSchema, H as AssetSchema, J as AssetUrl, K as AtomicEffect, L as BehaviorEffect, M as CAMERA_MODES, N as CallServiceConfig, Q as CallServiceEffect, V as Camera, W as CameraMode, X as CameraModeSchema, Y as CameraSchema, Z as CheckpointLoadEffect, _ as CheckpointSaveEffect, $ as ComposeEffect, a0 as DerefEffect, a1 as DespawnEffect, a2 as DoEffect, a3 as ENTITY_ROLES, c as Effect, a4 as EffectInput, a5 as EffectSchema, a6 as EmitConfig, a7 as EmitEffect, e as Entity, a8 as EntityData, E as EntityField, a9 as EntityFieldInput, aa as EntityFieldSchema, d as EntityId, ab as EntityIdSchema, a as EntityPersistence, ac as EntityPersistenceSchema, ad as EntityRole, ae as EntityRoleSchema, f as EntityRow, af as EntitySchema, ag as EntityWith, ah as EnumEntityField, ai as EvaluateConfig, aj as EvaluateEffect, b as EventId, ak as EventIdSchema, al as FIELD_TYPES, am as FetchEffect, an as FetchOptions, ao as FetchResult, ap as Field, aq as FieldSchema, ar as FieldType, as as FieldTypeSchema, F as FieldValue, at as FileValue, au as FileValueSchema, av as ForwardConfig, aw as ForwardEffect, ax as IdForKind, ay as IdKind, I as IdentityLedger, az as IdentityLedgerSchema, aA as LedgerEntry, aB as LedgerEntrySchema, aC as LedgerKind, aD as LedgerKindSchema, aE as LlmEffect, aF as LogEffect, aG as McpServiceDef, aH as McpServiceDefSchema, aI as MemoryEffect, aJ as NavigateBackEffect, aK as NavigateEffect, aL as NavigateOptions, aM as NnConfig, aN as NnLayer, aO as NotifyEffect, aP as ObjectEntityField, aQ as OrbitalEntity, aR as OrbitalEntityInput, aS as OrbitalEntitySchema, O as OrbitalId, aT as OrbitalIdSchema, aU as OsEffect, aV as PATTERN_TYPES, P as PageId, aW as PageIdSchema, aX as PaletteEntryId, aY as PaletteEntryIdSchema, aZ as PatternConfig, b0 as PatternType, b1 as PersistData, b2 as PersistEffect, b3 as PersistEmitConfig, b4 as RefEffect, R as RelationConfig, b5 as RelationConfigSchema, b6 as RelationEntityField, h as RenderBinding, b7 as RenderChildrenMap, b8 as RenderItemLambda, i as RenderUIEffect, b9 as RenderUINode, ba as ResolvedPatternProps, bb as RestAuthConfig, bc as RestAuthConfigSchema, bd as RestServiceDef, be as RestServiceDefSchema, bf as SEMANTIC_STRING_TYPES, bg as SERVICE_TYPES, bh as SHEET_PROJECTIONS, bi as SPRITE_DIRECTIONS, bj as ScalarEntityField, bk as ScenePos, bl as ScenePosSchema, bm as SemanticAssetRef, bn as SemanticAssetRefInput, bo as SemanticAssetRefSchema, bp as SemanticStringType, g as ServiceDefinition, bq as ServiceDefinitionSchema, br as ServiceId, bs as ServiceIdSchema, bt as ServiceParams, bu as ServiceParamsValue, S as ServiceRef, bv as ServiceRefObject, bw as ServiceRefObjectSchema, bx as ServiceRefSchema, by as ServiceRefStringSchema, bz as ServiceType, bA as ServiceTypeSchema, bB as SessionEffect, bC as SetEffect, bD as SheetProjection, bE as SheetProjectionSchema, bF as SocketEvents, bG as SocketEventsSchema, bH as SocketServiceDef, bI as SocketServiceDefSchema, bJ as SpawnEffect, bK as SpriteDirection, bL as SpriteDirectionSchema, bM as SpriteSheetAtlas, bN as SpriteSheetAtlasInput, bO as SpriteSheetAtlasSchema, bP as SubTexture, bQ as SubTextureSchema, bR as SwapEffect, bS as TextureAtlas, bT as TextureAtlasSchema, bU as ThemeId, bV as ThemeIdSchema, bW as Tilesheet, bX as TilesheetSchema, bY as TraceEffect, bZ as TrainConfig, b_ as TrainEffect, T as TraitId, b$ as TraitIdSchema, c0 as TypedEffect, U as UISlot, c1 as UISlotSchema, c2 as UI_SLOTS, c3 as VISUAL_STYLES, c4 as ValidateEffect, c5 as VisualStyle, c6 as VisualStyleSchema, c7 as WatchEffect, c8 as WatchOptions, c9 as asEntityId, ca as asEventId, cb as asOrbitalId, cc as asPageId, cd as asPaletteEntryId, ce as asServiceId, cf as asThemeId, cg as asTraitId, ch as atomic, ci as callService, cj as createAssetKey, ck as deref, cl as deriveCollection, cm as despawn, cn as doEffects, co as emit, cp as findService, cq as getDefaultAnimationsForRole, cr as getServiceNames, cs as hasService, ct as idKindOf, cu as idPrefix, cv as isEffect, cw as isEmailValue, cx as isEntityId, cy as isEventId, cz as isFieldValue, cA as isFileValue, cB as isMcpService, cC as isOrbitalId, cD as isPageId, cE as isPaletteEntryId, cF as isPhoneValue, cG as isRestService, cH as isRuntimeEntity, cI as isSExprEffect, cJ as isSemanticStringType, cK as isSemanticStringValue, cL as isServiceId, cM as isServiceReference, cN as isServiceReferenceObject, cO as isSocketService, cP as isThemeId, cQ as isTraitId, cR as isUrlValue, cS as isUuidValue, cT as isValidPatternType, cU as ledgerCurName, cV as ledgerRename, cW as ledgerResolveName, cX as mintId, cY as navigate, cZ as navigateBack, c_ as notify, c$ as parseAssetKey, d0 as parseServiceRef, d1 as persist, d2 as persistenceModeAllowsOverrides, d3 as ref, d4 as renderUI, d5 as set, d6 as spawn, d7 as swap, d8 as validateAssetAnimations, d9 as watch } from '../effect-BftJTKJZ.js';
1
+ export { A as AGENT_DOMAIN_CATEGORIES, f as ALLOWED_CUSTOM_COMPONENTS, g as AgentDomainCategory, h as AgentDomainCategorySchema, i as AllowedCustomComponent, O as AppSchema, C as ColorSlice, j as ColorSliceSchema, k as ColorTokens, l as ColorTokensSchema, m as ComputedEventContract, n as ComputedEventContractSchema, o as ComputedEventListener, p as ComputedEventListenerSchema, q as ConfigProvenanceRecord, r as ConfigProvenanceRecordSchema, s as CustomPatternDefinition, t as CustomPatternDefinitionInput, u as CustomPatternDefinitionSchema, v as CustomPatternMap, w as CustomPatternMapInput, x as CustomPatternMapSchema, D as DensitySlice, y as DensitySliceSchema, z as DensityTokens, B as DensityTokensSchema, F as DesignPreferences, G as DesignPreferencesInput, H as DesignPreferencesSchema, I as DesignTokens, J as DesignTokensInput, K as DesignTokensSchema, L as DomainCategory, M as DomainCategorySchema, N as DomainContext, Q as DomainContextInput, R as DomainContextSchema, S as DomainVocabulary, T as DomainVocabularySchema, V as ElevationSlice, W as ElevationSliceSchema, X as ElevationTokens, Y as ElevationTokensSchema, Z as EntityCall, _ as EntityCallSchema, E as EntityRef, $ as EntityRefSchema, a0 as EntityRefStringSchema, a1 as EntitySemanticRole, a2 as EntitySemanticRoleSchema, a3 as EventListener, a4 as EventListenerSchema, a5 as EventSemanticRole, a6 as EventSemanticRoleSchema, a7 as EventSource, a8 as EventSourceSchema, b as ExpectDeclaration, a9 as ExpectDeclarationSchema, aa as FullOrbitalUnit, ab as GameSubCategory, ac as GameSubCategorySchema, ad as GeometrySlice, ae as GeometrySliceSchema, af as GeometryTokens, ag as GeometryTokensSchema, ah as IconFamily, ai as IconFamilySchema, aj as IconographySlice, ak as IconographySliceSchema, al as IconographyTokens, am as IconographyTokensSchema, an as IllustrationSlice, ao as IllustrationSliceSchema, ap as IllustrationStyle, aq as IllustrationStyleSchema, ar as IllustrationTokens, as as IllustrationTokensSchema, at as MotionDurationKey, au as MotionDurationKeySchema, av as MotionDurationPalette, aw as MotionDurationPaletteSchema, ax as MotionEasingKey, ay as MotionEasingKeySchema, az as MotionEasingPalette, aA as MotionEasingPaletteSchema, aB as MotionIntent, aC as MotionIntentMap, aD as MotionIntentMapSchema, aE as MotionIntentSchema, aF as MotionSlice, aG as MotionSliceSchema, aH as MotionTokens, aI as MotionTokensSchema, aJ as NavItem, aK as NavStackEntry, aL as NodeClassification, aM as NodeClassificationSchema, aa as Orbital, aN as OrbitalConfig, aO as OrbitalConfigInput, aP as OrbitalConfigSchema, a as OrbitalDefinition, aQ as OrbitalDefinitionSchema, aR as OrbitalInput, e as OrbitalPage, aS as OrbitalPageInput, aT as OrbitalPageSchema, aU as OrbitalPageStrictInput, aV as OrbitalPageStrictSchema, O as OrbitalSchema, aW as OrbitalSchemaInput, aX as OrbitalSchemaSchema, aY as OrbitalSchemaWithTraits, aZ as OrbitalUnit, a_ as OrbitalUnitSchema, a$ as OrbitalZodSchema, c as Page, P as PageRef, d as PageRefObject, b0 as PageRefObjectSchema, b1 as PageRefSchema, b2 as PageRefStringSchema, b3 as PageSchema, b4 as PageTraitRef, b5 as PageTraitRefSchema, b6 as RelatedLink, b7 as RelatedLinkSchema, b8 as SchemaMetadata, b9 as SchemaMetadataSchema, ba as SkinSpec, bb as SkinSpecSchema, bc as SpacingScale, bd as SpacingScaleSchema, be as StateSemanticRole, bf as StateSemanticRoleSchema, bg as SuggestedGuard, bh as SuggestedGuardSchema, bi as ThemeDefinition, bj as ThemeDefinitionSchema, bk as ThemeRef, bl as ThemeRefSchema, bm as ThemeRefStringSchema, bn as ThemeTokens, bo as ThemeTokensSchema, bp as ThemeVariant, bq as ThemeVariantSchema, br as TypeIntent, bs as TypeIntentMap, bt as TypeIntentMapSchema, bu as TypeIntentSchema, bv as TypeScale, bw as TypeScaleEntry, bx as TypeScaleEntrySchema, by as TypeScaleSchema, bz as TypeScaleTokens, bA as TypeScaleTokensSchema, bB as TypeSizeKey, bC as TypeSizeKeySchema, bD as TypeSlice, bE as TypeSliceSchema, bF as TypeSlot, bG as TypeSlotSchema, bH as TypeWeight, bI as TypeWeightSchema, bJ as UXHints, bK as UXHintsSchema, U as UseDeclaration, bL as UseDeclarationSchema, bM as UserPersona, bN as UserPersonaInput, bO as UserPersonaSchema, a as ValidatedOrbital, bP as ViewType, bQ as ViewTypeSchema, bR as isEntityCall, bS as isEntityReference, bT as isEntityReferenceAny, bU as isImportedTraitRef, bV as isOrbitalDefinition, bW as isPageReference, bX as isPageReferenceObject, bY as isPageReferenceString, bZ as isThemeReference, b_ as parseEntityRef, b$ as parseImportedTraitRef, c0 as parseOrbitalSchema, c1 as parsePageRef, c2 as safeParseOrbitalSchema } from '../schema-DJY7OUOM.js';
2
+ export { j as ANIMATION_NAMES, k as ASSET_ASPECTS, l as ASSET_DIMENSIONS, m as AgentEffect, n as AnimationDef, o as AnimationDefInput, p as AnimationDefSchema, q as AnimationName, r as AnimationNameSchema, s as ApplicationEffect, t as ArrayEntityField, u as Asset, v as AssetAspect, w as AssetAspectSchema, x as AssetCatalog, y as AssetCatalogEntry, z as AssetCatalogEntryInput, B as AssetCatalogEntrySchema, C as AssetCatalogSchema, D as AssetDimension, G as AssetDimensionSchema, H as AssetSchema, J as AssetUrl, K as AtomicEffect, L as BehaviorEffect, M as CAMERA_MODES, N as CallServiceConfig, Q as CallServiceEffect, V as Camera, W as CameraMode, X as CameraModeSchema, Y as CameraSchema, Z as CheckpointLoadEffect, _ as CheckpointSaveEffect, $ as ComposeEffect, a0 as DerefEffect, a1 as DespawnEffect, a2 as DoEffect, a3 as ENTITY_ROLES, c as Effect, a4 as EffectInput, a5 as EffectSchema, a6 as EmitConfig, a7 as EmitEffect, e as Entity, a8 as EntityData, E as EntityField, a9 as EntityFieldInput, aa as EntityFieldSchema, d as EntityId, ab as EntityIdSchema, a as EntityPersistence, ac as EntityPersistenceSchema, ad as EntityRole, ae as EntityRoleSchema, f as EntityRow, af as EntitySchema, ag as EntityWith, ah as EnumEntityField, ai as EvaluateConfig, aj as EvaluateEffect, b as EventId, ak as EventIdSchema, al as FIELD_TYPES, am as FetchEffect, an as FetchOptions, ao as FetchResult, ap as Field, aq as FieldSchema, ar as FieldType, as as FieldTypeSchema, F as FieldValue, at as FileValue, au as FileValueSchema, av as ForwardConfig, aw as ForwardEffect, ax as IdForKind, ay as IdKind, I as IdentityLedger, az as IdentityLedgerSchema, aA as LedgerEntry, aB as LedgerEntrySchema, aC as LedgerKind, aD as LedgerKindSchema, aE as LlmEffect, aF as LogEffect, aG as McpServiceDef, aH as McpServiceDefSchema, aI as MemoryEffect, aJ as NavigateBackEffect, aK as NavigateEffect, aL as NavigateOptions, aM as NnConfig, aN as NnLayer, aO as NotifyEffect, aP as ObjectEntityField, aQ as OrbitalEntity, aR as OrbitalEntityInput, aS as OrbitalEntitySchema, O as OrbitalId, aT as OrbitalIdSchema, aU as OsEffect, aV as PATTERN_TYPES, P as PageId, aW as PageIdSchema, aX as PaletteEntryId, aY as PaletteEntryIdSchema, aZ as PatternConfig, b0 as PatternType, b1 as PersistData, b2 as PersistEffect, b3 as PersistEmitConfig, b4 as RefEffect, R as RelationConfig, b5 as RelationConfigSchema, b6 as RelationEntityField, h as RenderBinding, b7 as RenderChildrenMap, b8 as RenderItemLambda, i as RenderUIEffect, b9 as RenderUINode, ba as ResolvedPatternProps, bb as RestAuthConfig, bc as RestAuthConfigSchema, bd as RestServiceDef, be as RestServiceDefSchema, bf as SEMANTIC_STRING_TYPES, bg as SERVICE_TYPES, bh as SHEET_PROJECTIONS, bi as SPRITE_DIRECTIONS, bj as ScalarEntityField, bk as ScenePos, bl as ScenePosSchema, bm as SemanticAssetRef, bn as SemanticAssetRefInput, bo as SemanticAssetRefSchema, bp as SemanticStringType, g as ServiceDefinition, bq as ServiceDefinitionSchema, br as ServiceId, bs as ServiceIdSchema, bt as ServiceParams, bu as ServiceParamsValue, S as ServiceRef, bv as ServiceRefObject, bw as ServiceRefObjectSchema, bx as ServiceRefSchema, by as ServiceRefStringSchema, bz as ServiceType, bA as ServiceTypeSchema, bB as SessionEffect, bC as SetEffect, bD as SheetProjection, bE as SheetProjectionSchema, bF as SocketEvents, bG as SocketEventsSchema, bH as SocketServiceDef, bI as SocketServiceDefSchema, bJ as SpawnEffect, bK as SpriteDirection, bL as SpriteDirectionSchema, bM as SpriteSheetAtlas, bN as SpriteSheetAtlasInput, bO as SpriteSheetAtlasSchema, bP as SubTexture, bQ as SubTextureSchema, bR as SwapEffect, bS as TextureAtlas, bT as TextureAtlasSchema, bU as ThemeId, bV as ThemeIdSchema, bW as Tilesheet, bX as TilesheetSchema, bY as TraceEffect, bZ as TrainConfig, b_ as TrainEffect, T as TraitId, b$ as TraitIdSchema, c0 as TypedEffect, U as UISlot, c1 as UISlotSchema, c2 as UI_SLOTS, c3 as VISUAL_STYLES, c4 as ValidateEffect, c5 as VisualStyle, c6 as VisualStyleSchema, c7 as WatchEffect, c8 as WatchOptions, c9 as asEntityId, ca as asEventId, cb as asOrbitalId, cc as asPageId, cd as asPaletteEntryId, ce as asServiceId, cf as asThemeId, cg as asTraitId, ch as atomic, ci as callService, cj as createAssetKey, ck as deref, cl as deriveCollection, cm as despawn, cn as doEffects, co as emit, cp as findService, cq as getDefaultAnimationsForRole, cr as getServiceNames, cs as hasService, ct as idKindOf, cu as idPrefix, cv as isEffect, cw as isEmailValue, cx as isEntityId, cy as isEventId, cz as isFieldValue, cA as isFileValue, cB as isMcpService, cC as isOrbitalId, cD as isPageId, cE as isPaletteEntryId, cF as isPhoneValue, cG as isRestService, cH as isRuntimeEntity, cI as isSExprEffect, cJ as isSemanticStringType, cK as isSemanticStringValue, cL as isServiceId, cM as isServiceReference, cN as isServiceReferenceObject, cO as isSocketService, cP as isThemeId, cQ as isTraitId, cR as isUrlValue, cS as isUuidValue, cT as isValidPatternType, cU as ledgerCurName, cV as ledgerRename, cW as ledgerResolveName, cX as mintId, cY as navigate, cZ as navigateBack, c_ as notify, c$ as parseAssetKey, d0 as parseServiceRef, d1 as persist, d2 as persistenceModeAllowsOverrides, d3 as ref, d4 as renderUI, d5 as set, d6 as spawn, d7 as swap, d8 as validateAssetAnimations, d9 as watch } from '../effect-C0MRXCwF.js';
3
3
  export { C as CORE_BINDINGS, b as CoreBinding, c as EvalContext, a as EventPayload, d as EventPayloadValue, E as Expression, e as ExpressionInput, f as ExpressionSchema, g as JsonObject, J as JsonValue, L as LogMeta, h as LogMetaValue, P as ParsedBinding, R as RuntimeValue, S as SExpr, i as SExprAtom, j as SExprAtomSchema, k as SExprDataSchema, l as SExprInput, m as SExprObject, n as SExprSchema, T as ToolArgs, o as collectBindings, p as getArgs, q as getOperator, r as isBinding, s as isEventPayloadValue, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive, w as isSExpr, x as isSExprAtom, y as isSExprCall, z as isValidBinding, A as parseBinding, B as sexpr, D as walkSExpr } from '../expression-Fk8bQWef.js';
4
- export { A as ANONYMOUS_USER, f as AgentCodeSearchResult, g as AgentCompactResult, h as AgentCompactStrategy, i as AgentContext, j as AgentGenerateOptions, k as AgentMemoryCategory, l as AgentMemoryRecord, m as AnalysisOrbital, n as AnalysisOrbitalParams, o as AnalysisPageOverride, p as AnalysisRename, q as AnalysisResult, r as AnnotationTier, s as AppCreatedEvent, t as AppSummary, u as AssetLoadStatus, B as BINDING_CONTEXT_RULES, v as BINDING_DOCS, w as BINDING_ROOTS, x as BindingContext, y as BindingRoot, z as BindingSchema, D as BridgeHealth, E as BuilderResult, F as BusEvent, G as BusEventListener, H as BusEventSource, I as CancelledEvent, d as CategorizedRemovals, J as ChangeAuthor, K as ChangeSetDocument, L as ChangeSummary, M as ChangesetRecordedEvent, C as ChangesetValue, N as CheckStatus, O as Clarification, Q as ClarificationCandidate, T as ClarificationLevel, U as CompleteEvent, V as ComplexityAssessment, W as ComposeAllResult, X as ComposeChildrenResult, Y as ComposeOptions, Z as ContextExtensions, _ as CreateFlow, $ as DEFAULT_INTERACTION_MODELS, a0 as DEFAULT_VIEWER, a1 as DEV_TOKEN_PREFIX, a2 as DeleteFlow, a3 as DispatchUpdatesResult, a4 as DrawableDescriptor, a5 as EdgeType, a6 as EditFlow, a9 as EffectPayload, aa as EffectResult, ab as EffectTrace, ac as ErrorEvent, ad as EventEmit, ae as EventKey, af as EventListen, ag as EventLogEntry, ah as EvolutionDelta, ai as ExecutePlanResult, aj as ExtraTraitRef, ak as FileOperationEvent, al as FileWrittenEvent, am as GateState, an as GenerationLogEvent, ao as GitHubIssue, ap as GitHubLink, aq as GitHubRepo, ar as HistoryMeta, as as IntegrationContext, at as InteractionModel, au as InteractionModelInput, av as InteractionModelSchema, aw as InterruptEvent, ax as KNOWN_VALIDATION_ERROR_CODES, ay as KnobPayload, az as KnownValidationErrorCode, aA as LLMErrorContext, aB as LazyService, aC as LineageEntry, aD as ListInteraction, aE as LivingEdge, aF as LivingEffect, aG as LivingEntity, aH as LivingEvent, aI as LivingField, aJ as LivingOrbital, aK as LivingOrbitalSchema, aL as LivingPage, aM as LivingState, aN as LivingTrait, aO as LivingTransition, aP as LivingValue, aQ as LivingVertex, aR as LlmCallToolsResult, aS as LlmContext, aT as LlmMessage, aU as LlmTokenUsage, aV as LlmToolCall, aW as LlmToolDef, aX as LoloEmitResult, aY as MemoryContext, aZ as MessageEvent, a_ as OrbitalAddedEvent, a$ as OrbitalSchemaCompleteEvent, b0 as OrbitalVerificationAPI, P as PageContentReduction, b1 as ParamsRepairEmittedEvent, b2 as ParsedDesign, b3 as ParsedDomainContext, b4 as ParsedEmitDeclaration, b5 as ParsedEntity, b6 as ParsedEvent, b7 as ParsedListenDeclaration, b8 as ParsedOrbital, b9 as ParsedPage, ba as ParsedState, bb as ParsedStateMachine, bc as ParsedTrait, bd as ParsedTraitConfig, be as ParsedTransition, bf as PatternNode, bg as PatternTypeSchema, bh as PatternValue, bi as PersistActionName, bj as PlanSnapshot, bk as PlanSnapshotStatus, bl as PlannerResult, bm as Probability, bn as ProcessCompleteEvent, bo as ProcessErrorEvent, bp as ProcessRepairCompleteEvent, bq as ProcessRepairEvent, br as ProcessStartEvent, bs as RENDER_BINDING_MARKER, bt as RawUserClaims, bu as RenderBindingMarker, bz as RepairResult, a as ResolvedEntity, bA as ResolvedEntityBinding, bB as ResolvedField, R as ResolvedIR, bC as ResolvedNavigation, b as ResolvedPage, bD as ResolvedPattern, bE as ResolvedSection, bF as ResolvedSectionEvent, c as ResolvedTrait, bG as ResolvedTraitBinding, bH as ResolvedTraitDataEntity, bI as ResolvedTraitEvent, bJ as ResolvedTraitGuard, bK as ResolvedTraitListener, bL as ResolvedTraitState, bM as ResolvedTraitTick, bN as ResolvedTraitTransition, bO as ResolvedTraitUIBinding, bP as SSEEvent, bQ as SSEEventBase, bR as SSEEventType, bS as SaveOptions, bT as SaveResult, S as SchemaChange, bU as SchemaPhaseUpdateEvent, bV as SchemaPhaseValidatedEvent, bW as SchemaUpdateEvent, bX as SemanticAnnotation, bY as SemanticChangeKind, e as SemanticSchemaChange, bZ as SemanticVector, b_ as ServerResponseTrace, b$ as ServiceAction, c0 as ServiceActionName, c1 as ServiceCallResult, c2 as ServiceContract, c3 as ServiceEvents, c4 as SessionContext, c5 as SessionHistoryEntry, c6 as SnapshotCreatedEvent, c7 as SnapshotDocument, c8 as SpawnResult, c9 as StartEvent, ca as StatsView, cb as StoreContract, cc as StoreFilter, cd as StoreFilterOp, ce as SubagentCompleteEvent, cf as SubagentEvent, cg as SubagentProgressEvent, ch as SubagentStartEvent, ci as TodoActivityType, cj as TodoDetailEvent, ck as TodoUpdateEvent, cl as ToolCallEvent, cm as ToolResultEvent, cn as TraceContext, co as TraitFieldRef, cp as TraitFieldRefSchema, cq as TraitStateSnapshot, cr as TransitionFrom, cs as TransitionTrace, ct as Unsubscribe, cu as UserContext, cv as ValidateResult, cw as ValidationDocument, cx as ValidationError, cy as ValidationErrorCode, cz as ValidationIssue, cA as ValidationMeta, cB as ValidationResult, cC as ValidationResults, cD as VerificationCheck, cE as VerificationSnapshot, cF as VerificationSummary, cG as VertexId, cH as VertexPayload, cI as VertexType, cJ as ViewFlow, cK as WorkspaceContext, cM as containsEntityBinding, cN as containsPayloadBinding, cO as createEmptyResolvedPage, cP as createEmptyResolvedTrait, cQ as createLazyService, cR as createResolvedField, cS as createTypedEventBus, cT as decodeDevIdentityToken, cU as encodeDevIdentityToken, cV as findPersonaInRoster, cX as getBindingExamples, cY as getInteractionModelForDomain, cZ as inferTsType, c$ as isKnownValidationErrorCode, d0 as isPlanSnapshot, d1 as isRenderBindingMarker, d2 as isResolvedIR, d3 as isSessionHistoryEntry, d4 as isTraitFieldRef, d6 as normalizeUserContext, d7 as personaFromIdentityRow, da as resolveDefaultViewer, db as resolvePersonaSpec, dd as toBindingRoot, de as validateBindingInContext, df as widenTier } from '../index-cXViQbl2.js';
5
- export { k as CONFIG_REF_EVENT_PATTERN, h as CallSiteConfig, i as CallSiteConfigEntry, C as ConfigFieldDeclaration, l as ConfigFieldDeclarationSchema, m as ConfigFieldItemsDeclaration, n as ConfigRefEventError, D as DeclaredTraitConfig, o as DeclaredTraitConfigSchema, p as EntityFieldContract, q as EntityFieldContractSchema, r as Event, s as EventInput, E as EventPayloadField, t as EventPayloadFieldSchema, u as EventSchema, v as EventScope, w as EventScopeSchema, G as Guard, x as GuardInput, y as GuardSchema, L as ListenSource, z as ListenSourceSchema, O as OrbitalTraitRef, A as OrbitalTraitRefSchema, P as PayloadField, B as PayloadFieldSchema, F as PresentationType, R as REFERENCE_CONFIG_TYPES, H as ReferenceConfigType, I as RequiredField, J as RequiredFieldSchema, K as SECRET_CONFIG_TYPES, M as SecretConfigType, S as State, N as StateInput, Q as StateMachine, U as StateMachineInput, V as StateMachineSchema, W as StateSchema, X as TickIntervalSchema, g as Trait, Y as TraitCategory, Z as TraitCategorySchema, b as TraitConfig, c as TraitConfigObject, _ as TraitConfigSchema, e as TraitConfigValue, $ as TraitConfigValueSchema, a0 as TraitDataEntity, a1 as TraitDataEntitySchema, f as TraitEntityField, a2 as TraitEntityFieldSchema, j as TraitEventContract, a3 as TraitEventContractSchema, T as TraitEventListener, a4 as TraitEventListenerSchema, a5 as TraitInput, d as TraitRef, a6 as TraitRefSchema, a as TraitReference, a7 as TraitReferenceInput, a8 as TraitReferenceSchema, a9 as TraitSchema, aa as TraitTick, ab as TraitTickSchema, ac as TraitUIBinding, ad as TraitUIBindingSchema, ae as Transition, af as TransitionInput, ag as TransitionSchema, ah as configRefEventKnob, ai as getTraitConfig, aj as getTraitName, ak as isCallSiteConfigDeclaration, al as isCircuitEvent, am as isInlineTrait, an as isReferenceConfigType, ao as isSecretConfigType, ap as maskSecretConfigValues, aq as normalizeCallSiteConfigToValues, ar as normalizeTraitRef, as as resolveConfigRefEventName } from '../trait-BRv7XO6_.js';
4
+ export { A as ANONYMOUS_USER, f as AgentCodeSearchResult, g as AgentCompactResult, h as AgentCompactStrategy, i as AgentContext, j as AgentGenerateOptions, k as AgentMemoryCategory, l as AgentMemoryRecord, m as AnalysisOrbital, n as AnalysisOrbitalParams, o as AnalysisPageOverride, p as AnalysisRename, q as AnalysisResult, r as AnnotationTier, s as AppCreatedEvent, t as AppSummary, u as AssetLoadStatus, B as BINDING_CONTEXT_RULES, v as BINDING_DOCS, w as BINDING_ROOTS, x as BindingContext, y as BindingRoot, z as BindingSchema, D as BridgeHealth, E as BuilderResult, F as BusEvent, G as BusEventListener, H as BusEventSource, I as CancelledEvent, d as CategorizedRemovals, J as ChangeAuthor, K as ChangeSetDocument, L as ChangeSummary, M as ChangesetRecordedEvent, C as ChangesetValue, N as CheckStatus, O as Clarification, Q as ClarificationCandidate, T as ClarificationLevel, U as CompleteEvent, V as ComplexityAssessment, W as ComposeAllResult, X as ComposeChildrenResult, Y as ComposeOptions, Z as ContextExtensions, _ as CreateFlow, $ as DEFAULT_INTERACTION_MODELS, a0 as DEFAULT_VIEWER, a1 as DEV_TOKEN_PREFIX, a2 as DeleteFlow, a3 as DispatchUpdatesResult, a4 as DrawableDescriptor, a5 as EdgeType, a6 as EditFlow, a9 as EffectPayload, aa as EffectResult, ab as EffectTrace, ac as ErrorEvent, ad as EventEmit, ae as EventKey, af as EventListen, ag as EventLogEntry, ah as EvolutionDelta, ai as ExecutePlanResult, aj as ExtraTraitRef, ak as FileOperationEvent, al as FileWrittenEvent, am as GateState, an as GenerationLogEvent, ao as GitHubIssue, ap as GitHubLink, aq as GitHubRepo, ar as HistoryMeta, as as IntegrationContext, at as InteractionModel, au as InteractionModelInput, av as InteractionModelSchema, aw as InterruptEvent, ax as KNOWN_VALIDATION_ERROR_CODES, ay as KnobPayload, az as KnownValidationErrorCode, aA as LLMErrorContext, aB as LazyService, aC as LineageEntry, aD as ListInteraction, aE as LivingEdge, aF as LivingEffect, aG as LivingEntity, aH as LivingEvent, aI as LivingField, aJ as LivingOrbital, aK as LivingOrbitalSchema, aL as LivingPage, aM as LivingState, aN as LivingTrait, aO as LivingTransition, aP as LivingValue, aQ as LivingVertex, aR as LlmCallToolsResult, aS as LlmContext, aT as LlmMessage, aU as LlmTokenUsage, aV as LlmToolCall, aW as LlmToolDef, aX as LoloEmitResult, aY as MemoryContext, aZ as MessageEvent, a_ as OrbitalAddedEvent, a$ as OrbitalSchemaCompleteEvent, b0 as OrbitalVerificationAPI, P as PageContentReduction, b1 as ParamsRepairEmittedEvent, b2 as ParsedDesign, b3 as ParsedDomainContext, b4 as ParsedEmitDeclaration, b5 as ParsedEntity, b6 as ParsedEvent, b7 as ParsedListenDeclaration, b8 as ParsedOrbital, b9 as ParsedPage, ba as ParsedState, bb as ParsedStateMachine, bc as ParsedTrait, bd as ParsedTraitConfig, be as ParsedTransition, bf as PatternNode, bg as PatternTypeSchema, bh as PatternValue, bi as PersistActionName, bj as PlanSnapshot, bk as PlanSnapshotStatus, bl as PlannerResult, bm as Probability, bn as ProcessCompleteEvent, bo as ProcessErrorEvent, bp as ProcessRepairCompleteEvent, bq as ProcessRepairEvent, br as ProcessStartEvent, bs as RENDER_BINDING_MARKER, bt as RawUserClaims, bu as RenderBindingMarker, bz as RepairResult, a as ResolvedEntity, bA as ResolvedEntityBinding, bB as ResolvedField, R as ResolvedIR, bC as ResolvedNavigation, b as ResolvedPage, bD as ResolvedPattern, bE as ResolvedSection, bF as ResolvedSectionEvent, c as ResolvedTrait, bG as ResolvedTraitBinding, bH as ResolvedTraitDataEntity, bI as ResolvedTraitEvent, bJ as ResolvedTraitGuard, bK as ResolvedTraitListener, bL as ResolvedTraitState, bM as ResolvedTraitTick, bN as ResolvedTraitTransition, bO as ResolvedTraitUIBinding, bP as SSEEvent, bQ as SSEEventBase, bR as SSEEventType, bS as SaveOptions, bT as SaveResult, S as SchemaChange, bU as SchemaPhaseUpdateEvent, bV as SchemaPhaseValidatedEvent, bW as SchemaUpdateEvent, bX as SemanticAnnotation, bY as SemanticChangeKind, e as SemanticSchemaChange, bZ as SemanticVector, b_ as ServerResponseTrace, b$ as ServiceAction, c0 as ServiceActionName, c1 as ServiceCallResult, c2 as ServiceContract, c3 as ServiceEvents, c4 as SessionContext, c5 as SessionHistoryEntry, c6 as SnapshotCreatedEvent, c7 as SnapshotDocument, c8 as SpawnResult, c9 as StartEvent, ca as StatsView, cb as StoreContract, cc as StoreFilter, cd as StoreFilterOp, ce as SubagentCompleteEvent, cf as SubagentEvent, cg as SubagentProgressEvent, ch as SubagentStartEvent, ci as TodoActivityType, cj as TodoDetailEvent, ck as TodoUpdateEvent, cl as ToolCallEvent, cm as ToolResultEvent, cn as TraceContext, co as TraitFieldRef, cp as TraitFieldRefSchema, cq as TraitStateSnapshot, cr as TransitionFrom, cs as TransitionTrace, ct as Unsubscribe, cu as UserContext, cv as ValidateResult, cw as ValidationDocument, cx as ValidationError, cy as ValidationErrorCode, cz as ValidationIssue, cA as ValidationMeta, cB as ValidationResult, cC as ValidationResults, cD as VerificationCheck, cE as VerificationSnapshot, cF as VerificationSummary, cG as VertexId, cH as VertexPayload, cI as VertexType, cJ as ViewFlow, cK as WorkspaceContext, cM as containsEntityBinding, cN as containsPayloadBinding, cO as createEmptyResolvedPage, cP as createEmptyResolvedTrait, cQ as createLazyService, cR as createResolvedField, cS as createTypedEventBus, cT as decodeDevIdentityToken, cU as encodeDevIdentityToken, cV as findPersonaInRoster, cX as getBindingExamples, cY as getInteractionModelForDomain, cZ as inferTsType, c$ as isKnownValidationErrorCode, d0 as isPlanSnapshot, d1 as isRenderBindingMarker, d2 as isResolvedIR, d3 as isSessionHistoryEntry, d4 as isTraitFieldRef, d6 as normalizeUserContext, d7 as personaFromIdentityRow, da as resolveDefaultViewer, db as resolvePersonaSpec, dd as toBindingRoot, de as validateBindingInContext, df as widenTier } from '../index-D4jODKSD.js';
5
+ export { k as CONFIG_REF_EVENT_PATTERN, h as CallSiteConfig, i as CallSiteConfigEntry, C as ConfigFieldDeclaration, l as ConfigFieldDeclarationSchema, m as ConfigFieldItemsDeclaration, n as ConfigRefEventError, D as DeclaredTraitConfig, o as DeclaredTraitConfigSchema, p as EntityFieldContract, q as EntityFieldContractSchema, r as Event, s as EventInput, E as EventPayloadField, t as EventPayloadFieldSchema, u as EventSchema, v as EventScope, w as EventScopeSchema, G as Guard, x as GuardInput, y as GuardSchema, L as ListenSource, z as ListenSourceSchema, O as OrbitalTraitRef, A as OrbitalTraitRefSchema, P as PayloadField, B as PayloadFieldSchema, F as PresentationType, R as REFERENCE_CONFIG_TYPES, H as ReferenceConfigType, I as RequiredField, J as RequiredFieldSchema, K as SECRET_CONFIG_TYPES, M as SecretConfigType, S as State, N as StateInput, Q as StateMachine, U as StateMachineInput, V as StateMachineSchema, W as StateSchema, X as TickIntervalSchema, g as Trait, Y as TraitCategory, Z as TraitCategorySchema, b as TraitConfig, c as TraitConfigObject, _ as TraitConfigSchema, e as TraitConfigValue, $ as TraitConfigValueSchema, a0 as TraitDataEntity, a1 as TraitDataEntitySchema, f as TraitEntityField, a2 as TraitEntityFieldSchema, j as TraitEventContract, a3 as TraitEventContractSchema, T as TraitEventListener, a4 as TraitEventListenerSchema, a5 as TraitInput, d as TraitRef, a6 as TraitRefSchema, a as TraitReference, a7 as TraitReferenceInput, a8 as TraitReferenceSchema, a9 as TraitSchema, aa as TraitTick, ab as TraitTickSchema, ac as TraitUIBinding, ad as TraitUIBindingSchema, ae as Transition, af as TransitionInput, ag as TransitionSchema, ah as configRefEventKnob, ai as getTraitConfig, aj as getTraitName, ak as isCallSiteConfigDeclaration, al as isCircuitEvent, am as isInlineTrait, an as isReferenceConfigType, ao as isSecretConfigType, ap as maskSecretConfigValues, aq as normalizeCallSiteConfigToValues, ar as normalizeTraitRef, as as resolveConfigRefEventName } from '../trait-D1zKrxnf.js';
6
6
  import 'zod';
7
- import '../types-RhC1qunQ.js';
7
+ import '../types-BdiOJCat.js';
8
8
  import '../builders.js';