@almadar/core 10.4.0 → 10.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +4 -4
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-C0O7EloG.d.ts → compose-behaviors-CJgreUHY.d.ts} +1 -1
- package/dist/{expression-BVRFm0sV.d.ts → expression-BUIi9ezJ.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/index.d.ts +203 -8
- package/dist/index.js.map +1 -1
- package/dist/{schema-JNr7Yzww.d.ts → schema-Cq9DUnFw.d.ts} +615 -615
- package/dist/state-machine/index.d.ts +1 -1
- package/dist/{trait-C7cTBoi5.d.ts → trait-BsnLnedq.d.ts} +21 -22
- package/dist/types/index.d.ts +8 -8
- package/dist/types/index.js.map +1 -1
- package/dist/{types-CVzLocjv.d.ts → types-CdXuGm8S.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { S as SExpr,
|
|
2
|
+
import { S as SExpr, c as EventPayload, E as Expression } from './expression-BUIi9ezJ.js';
|
|
3
3
|
import { AnyPatternConfig } from '@almadar/patterns';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -1622,30 +1622,29 @@ type EntityRow = {
|
|
|
1622
1622
|
id?: string;
|
|
1623
1623
|
} & Record<string, FieldValue | undefined>;
|
|
1624
1624
|
/**
|
|
1625
|
-
* A field-
|
|
1626
|
-
*
|
|
1627
|
-
*
|
|
1628
|
-
*
|
|
1629
|
-
*
|
|
1630
|
-
*
|
|
1631
|
-
*
|
|
1632
|
-
*
|
|
1633
|
-
*
|
|
1634
|
-
*
|
|
1635
|
-
*
|
|
1636
|
-
* rejects an incompatible bind at
|
|
1637
|
-
*
|
|
1638
|
-
*
|
|
1625
|
+
* A field-TYPED `EntityRow` — the SINGLE entity type, refined with a concrete
|
|
1626
|
+
* field SHAPE `S`. Non-optional members of `S` are REQUIRED, each with its real
|
|
1627
|
+
* type; the result stays `& EntityRow`, so the index signature is intact and
|
|
1628
|
+
* every other field is still field-open — any domain entity that provides those
|
|
1629
|
+
* fields satisfies it.
|
|
1630
|
+
*
|
|
1631
|
+
* One declaration, two jobs: (1) TypeScript enforces the bound entity has the
|
|
1632
|
+
* fields WITH their types (a behavior binding a thinner/mistyped entity fails to
|
|
1633
|
+
* typecheck); and (2) pattern-sync reads the same type and writes the entity
|
|
1634
|
+
* prop's field shape (`properties` + `requiredFields`) onto the registry, so
|
|
1635
|
+
* lolo-ui emits a COMPLETE `entity { … }` (every field, typed + demo-seeded) and
|
|
1636
|
+
* the `ORB_X_ENTITY_PROP_CONTRACT` validator rejects an incompatible bind at
|
|
1637
|
+
* `orbital validate`. (A raw `EntityRow & { rating: number }` intersection is
|
|
1638
|
+
* equivalent for one-off shapes.)
|
|
1639
1639
|
*
|
|
1640
1640
|
* @example
|
|
1641
1641
|
* // HeroOrganism renders entity.title / entity.subtitle:
|
|
1642
|
-
* entity?: EntityWith<
|
|
1643
|
-
* // entity.title
|
|
1644
|
-
* // entity.
|
|
1642
|
+
* entity?: EntityWith<{ title: string; subtitle?: string }>;
|
|
1643
|
+
* // entity.title → string (required)
|
|
1644
|
+
* // entity.subtitle → string | undefined (optional)
|
|
1645
|
+
* // entity.other → FieldValue | undefined (still field-open)
|
|
1645
1646
|
*/
|
|
1646
|
-
type EntityWith<
|
|
1647
|
-
readonly [P in K]: FieldValue;
|
|
1648
|
-
};
|
|
1647
|
+
type EntityWith<S extends object> = EntityRow & S;
|
|
1649
1648
|
/**
|
|
1650
1649
|
* Collection of entity instances keyed by entity name.
|
|
1651
1650
|
* Used by OrbPreview mockData, OrbitalServerRuntime state, data grids, etc.
|
|
@@ -6213,4 +6212,4 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
6213
6212
|
} | undefined;
|
|
6214
6213
|
}>]>;
|
|
6215
6214
|
|
|
6216
|
-
export {
|
|
6215
|
+
export { type EntityData as $, type AgentEffect as A, type AssetMapping as B, type ConfigFieldDeclaration as C, type AssetMappingInput as D, type Effect as E, AssetMappingSchema as F, type AssetUrl as G, type AtomicEffect as H, type CallServiceConfig as I, type CallServiceEffect as J, type CheckpointLoadEffect as K, type CheckpointSaveEffect as L, ConfigFieldDeclarationSchema as M, type DeclaredTraitConfig as N, DeclaredTraitConfigSchema as O, type DerefEffect as P, type DespawnEffect as Q, type RenderBinding as R, type ServiceRef as S, type TraitConfig as T, type UISlot as U, type DoEffect as V, ENTITY_ROLES as W, type EffectInput as X, EffectSchema as Y, type EmitConfig as Z, type EmitEffect as _, type Trait as a, type RenderUINode as a$, type EntityFieldContract as a0, EntityFieldContractSchema as a1, type EntityFieldInput as a2, EntityFieldSchema as a3, EntityPersistenceSchema as a4, type EntityRole as a5, EntityRoleSchema as a6, EntitySchema as a7, type EntityWith as a8, type EnumEntityField as a9, type ListenSource as aA, ListenSourceSchema as aB, type LogEffect as aC, type McpServiceDef as aD, McpServiceDefSchema as aE, type NavigateEffect as aF, type NnConfig as aG, type NnLayer as aH, type NotifyEffect as aI, type OrbitalEntity as aJ, type OrbitalEntityInput as aK, OrbitalEntitySchema as aL, type OrbitalTraitRef as aM, OrbitalTraitRefSchema as aN, type OsEffect as aO, type PayloadField as aP, PayloadFieldSchema as aQ, type PersistData as aR, type PersistEffect as aS, type PersistEmitConfig as aT, type PresentationType as aU, type RefEffect as aV, type RelationConfig as aW, RelationConfigSchema as aX, type RelationEntityField as aY, type RenderItemLambda as aZ, type RenderUIConfig as a_, type EvaluateConfig as aa, type EvaluateEffect as ab, type Event as ac, type EventInput as ad, EventPayloadFieldSchema as ae, EventSchema as af, type EventScope as ag, EventScopeSchema as ah, type FetchEffect as ai, type FetchOptions as aj, type FetchResult as ak, type Field as al, type FieldFormat as am, FieldFormatSchema as an, FieldSchema as ao, type FieldType as ap, FieldTypeSchema as aq, type FieldValue as ar, type ForwardConfig as as, type ForwardEffect as at, GAME_TYPES as au, type GameType as av, GameTypeSchema as aw, type Guard as ax, type GuardInput as ay, GuardSchema as az, type RenderUIEffect as b, VISUAL_STYLES as b$, type RequiredField as b0, RequiredFieldSchema as b1, type ResolvedAsset as b2, type ResolvedAssetInput as b3, ResolvedAssetSchema as b4, type ResolvedPatternProps as b5, type RestAuthConfig as b6, RestAuthConfigSchema as b7, type RestServiceDef as b8, RestServiceDefSchema as b9, type TrainConfig as bA, type TrainEffect as bB, type TraitCategory as bC, TraitCategorySchema as bD, TraitConfigSchema as bE, type TraitConfigValue as bF, TraitConfigValueSchema as bG, type TraitDataEntity as bH, TraitDataEntitySchema as bI, type TraitEntityField as bJ, TraitEntityFieldSchema as bK, TraitEventContractSchema as bL, TraitEventListenerSchema as bM, type TraitInput as bN, TraitRefSchema as bO, type TraitReferenceInput as bP, TraitReferenceSchema as bQ, TraitSchema as bR, type TraitTick as bS, TraitTickSchema as bT, type TraitUIBinding as bU, type Transition as bV, type TransitionInput as bW, TransitionSchema as bX, type TypedEffect as bY, UISlotSchema as bZ, UI_SLOTS as b_, SERVICE_TYPES as ba, type ScalarEntityField as bb, type SemanticAssetRef as bc, type SemanticAssetRefInput as bd, SemanticAssetRefSchema as be, ServiceDefinitionSchema as bf, type ServiceParams as bg, type ServiceParamsValue as bh, type ServiceRefObject as bi, ServiceRefObjectSchema as bj, ServiceRefSchema as bk, ServiceRefStringSchema as bl, type ServiceType as bm, ServiceTypeSchema as bn, type SetEffect as bo, type SocketEvents as bp, SocketEventsSchema as bq, type SocketServiceDef as br, SocketServiceDefSchema as bs, type SpawnEffect as bt, type StateInput as bu, type StateMachine as bv, type StateMachineInput as bw, StateMachineSchema as bx, StateSchema as by, type SwapEffect as bz, type TraitEventContract as c, type VisualStyle as c0, VisualStyleSchema as c1, type WatchEffect as c2, type WatchOptions as c3, atomic as c4, callService as c5, createAssetKey as c6, deref as c7, deriveCollection as c8, despawn as c9, renderUI as cA, set as cB, spawn as cC, swap as cD, validateAssetAnimations as cE, watch as cF, type TraitScope as cG, doEffects as ca, emit as cb, findService as cc, getDefaultAnimationsForRole as cd, getServiceNames as ce, getTraitConfig as cf, getTraitName as cg, hasService as ch, isCircuitEvent as ci, isEffect as cj, isInlineTrait as ck, isMcpService as cl, isRestService as cm, isRuntimeEntity as cn, isSExprEffect as co, isServiceReference as cp, isServiceReferenceObject as cq, isSingletonEntity as cr, isSocketService as cs, navigate as ct, normalizeTraitRef as cu, notify as cv, parseAssetKey as cw, parseServiceRef as cx, persist as cy, ref as cz, type Entity as d, type TraitEventListener as e, type EntityField as f, type EntityPersistence as g, type EntityRow as h, type TraitRef as i, type TraitReference as j, type TraitConfigObject as k, type EventPayloadField as l, type ServiceDefinition as m, type State as n, type AnimationDef as o, type AnimationDefInput as p, AnimationDefSchema as q, type ArrayEntityField as r, type AssetCatalog as s, type AssetCatalogEntry as t, type AssetCatalogEntryInput as u, AssetCatalogEntrySchema as v, AssetCatalogSchema as w, type AssetMap as x, type AssetMapInput as y, AssetMapSchema as z };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { O as OrbitalSchema, a7 as Orbital, b as Page, L as DomainContext, a as OrbitalDefinition, b0 as PageTraitRef } from '../schema-
|
|
2
|
-
export { A as AGENT_DOMAIN_CATEGORIES, d as ALLOWED_CUSTOM_COMPONENTS, e as AgentDomainCategory, f as AgentDomainCategorySchema, g as AllowedCustomComponent, C as ColorSlice, h as ColorSliceSchema, i as ColorTokens, j as ColorTokensSchema, k as ComputedEventContract, l as ComputedEventContractSchema, m as ComputedEventListener, n as ComputedEventListenerSchema, o as ConfigProvenanceRecord, p as ConfigProvenanceRecordSchema, q as CustomPatternDefinition, r as CustomPatternDefinitionInput, s as CustomPatternDefinitionSchema, t as CustomPatternMap, u as CustomPatternMapInput, v as CustomPatternMapSchema, D as DensitySlice, w as DensitySliceSchema, x as DensityTokens, y as DensityTokensSchema, z as DesignPreferences, B as DesignPreferencesInput, F as DesignPreferencesSchema, G as DesignTokens, H as DesignTokensInput, I as DesignTokensSchema, J as DomainCategory, K as DomainCategorySchema, M as DomainContextInput, N as DomainContextSchema, Q as DomainVocabulary, R as DomainVocabularySchema, S as ElevationSlice, T as ElevationSliceSchema, V as ElevationTokens, W as ElevationTokensSchema, X as EntityCall, Y as EntityCallSchema, E as EntityRef, Z as EntityRefSchema, _ as EntityRefStringSchema, $ as EntitySemanticRole, a0 as EntitySemanticRoleSchema, a1 as EventListener, a2 as EventListenerSchema, a3 as EventSemanticRole, a4 as EventSemanticRoleSchema, a5 as EventSource, a6 as EventSourceSchema, a8 as GameSubCategory, a9 as GameSubCategorySchema, aa as GeometrySlice, ab as GeometrySliceSchema, ac as GeometryTokens, ad as GeometryTokensSchema, ae as IconFamily, af as IconFamilySchema, ag as IconographySlice, ah as IconographySliceSchema, ai as IconographyTokens, aj as IconographyTokensSchema, ak as IllustrationSlice, al as IllustrationSliceSchema, am as IllustrationStyle, an as IllustrationStyleSchema, ao as IllustrationTokens, ap as IllustrationTokensSchema, aq as MotionDurationKey, ar as MotionDurationKeySchema, as as MotionDurationPalette, at as MotionDurationPaletteSchema, au as MotionEasingKey, av as MotionEasingKeySchema, aw as MotionEasingPalette, ax as MotionEasingPaletteSchema, ay as MotionIntent, az as MotionIntentMap, aA as MotionIntentMapSchema, aB as MotionIntentSchema, aC as MotionSlice, aD as MotionSliceSchema, aE as MotionTokens, aF as MotionTokensSchema, aG as NodeClassification, aH as NodeClassificationSchema, aI as OrbitalConfig, aJ as OrbitalConfigInput, aK as OrbitalConfigSchema, aL as OrbitalDefinitionSchema, aM as OrbitalInput, aN as OrbitalPage, aO as OrbitalPageInput, aP as OrbitalPageSchema, aQ as OrbitalPageStrictInput, aR as OrbitalPageStrictSchema, aS as OrbitalSchemaInput, aT as OrbitalSchemaSchema, aU as OrbitalSchemaWithTraits, aV as OrbitalUnit, aW as OrbitalUnitSchema, aX as OrbitalZodSchema, P as PageRef, c as PageRefObject, aY as PageRefObjectSchema, aZ as PageRefSchema, a_ as PageRefStringSchema, a$ as PageSchema, b1 as PageTraitRefSchema, b2 as RelatedLink, b3 as RelatedLinkSchema, b4 as SchemaMetadata, b5 as SchemaMetadataSchema, b6 as SkinSpec, b7 as SkinSpecSchema, b8 as SpacingScale, b9 as SpacingScaleSchema, ba as StateSemanticRole, bb as StateSemanticRoleSchema, bc as SuggestedGuard, bd as SuggestedGuardSchema, be as ThemeDefinition, bf as ThemeDefinitionSchema, bg as ThemeRef, bh as ThemeRefSchema, bi as ThemeRefStringSchema, bj as ThemeTokens, bk as ThemeTokensSchema, bl as ThemeVariant, bm as ThemeVariantSchema, bn as TypeIntent, bo as TypeIntentMap, bp as TypeIntentMapSchema, bq as TypeIntentSchema, br as TypeScale, bs as TypeScaleEntry, bt as TypeScaleEntrySchema, bu as TypeScaleSchema, bv as TypeScaleTokens, bw as TypeScaleTokensSchema, bx as TypeSizeKey, by as TypeSizeKeySchema, bz as TypeSlice, bA as TypeSliceSchema, bB as TypeSlot, bC as TypeSlotSchema, bD as TypeWeight, bE as TypeWeightSchema, bF as UXHints, bG as UXHintsSchema, U as UseDeclaration, bH as UseDeclarationSchema, bI as UserPersona, bJ as UserPersonaInput, bK as UserPersonaSchema, bL as ViewType, bM as ViewTypeSchema, bN as isEntityCall, bO as isEntityReference, bP as isEntityReferenceAny, bQ as isImportedTraitRef, bR as isOrbitalDefinition, bS as isPageReference, bT as isPageReferenceObject, bU as isPageReferenceString, bV as isThemeReference, bW as parseEntityRef, bX as parseImportedTraitRef, bY as parseOrbitalSchema, bZ as parsePageRef, b_ as safeParseOrbitalSchema } from '../schema-
|
|
3
|
-
import {
|
|
4
|
-
export { A as AgentEffect,
|
|
5
|
-
import {
|
|
6
|
-
export { C as CORE_BINDINGS, a as CoreBinding,
|
|
1
|
+
import { O as OrbitalSchema, a7 as Orbital, b as Page, L as DomainContext, a as OrbitalDefinition, b0 as PageTraitRef } from '../schema-Cq9DUnFw.js';
|
|
2
|
+
export { A as AGENT_DOMAIN_CATEGORIES, d as ALLOWED_CUSTOM_COMPONENTS, e as AgentDomainCategory, f as AgentDomainCategorySchema, g as AllowedCustomComponent, C as ColorSlice, h as ColorSliceSchema, i as ColorTokens, j as ColorTokensSchema, k as ComputedEventContract, l as ComputedEventContractSchema, m as ComputedEventListener, n as ComputedEventListenerSchema, o as ConfigProvenanceRecord, p as ConfigProvenanceRecordSchema, q as CustomPatternDefinition, r as CustomPatternDefinitionInput, s as CustomPatternDefinitionSchema, t as CustomPatternMap, u as CustomPatternMapInput, v as CustomPatternMapSchema, D as DensitySlice, w as DensitySliceSchema, x as DensityTokens, y as DensityTokensSchema, z as DesignPreferences, B as DesignPreferencesInput, F as DesignPreferencesSchema, G as DesignTokens, H as DesignTokensInput, I as DesignTokensSchema, J as DomainCategory, K as DomainCategorySchema, M as DomainContextInput, N as DomainContextSchema, Q as DomainVocabulary, R as DomainVocabularySchema, S as ElevationSlice, T as ElevationSliceSchema, V as ElevationTokens, W as ElevationTokensSchema, X as EntityCall, Y as EntityCallSchema, E as EntityRef, Z as EntityRefSchema, _ as EntityRefStringSchema, $ as EntitySemanticRole, a0 as EntitySemanticRoleSchema, a1 as EventListener, a2 as EventListenerSchema, a3 as EventSemanticRole, a4 as EventSemanticRoleSchema, a5 as EventSource, a6 as EventSourceSchema, a8 as GameSubCategory, a9 as GameSubCategorySchema, aa as GeometrySlice, ab as GeometrySliceSchema, ac as GeometryTokens, ad as GeometryTokensSchema, ae as IconFamily, af as IconFamilySchema, ag as IconographySlice, ah as IconographySliceSchema, ai as IconographyTokens, aj as IconographyTokensSchema, ak as IllustrationSlice, al as IllustrationSliceSchema, am as IllustrationStyle, an as IllustrationStyleSchema, ao as IllustrationTokens, ap as IllustrationTokensSchema, aq as MotionDurationKey, ar as MotionDurationKeySchema, as as MotionDurationPalette, at as MotionDurationPaletteSchema, au as MotionEasingKey, av as MotionEasingKeySchema, aw as MotionEasingPalette, ax as MotionEasingPaletteSchema, ay as MotionIntent, az as MotionIntentMap, aA as MotionIntentMapSchema, aB as MotionIntentSchema, aC as MotionSlice, aD as MotionSliceSchema, aE as MotionTokens, aF as MotionTokensSchema, aG as NodeClassification, aH as NodeClassificationSchema, aI as OrbitalConfig, aJ as OrbitalConfigInput, aK as OrbitalConfigSchema, aL as OrbitalDefinitionSchema, aM as OrbitalInput, aN as OrbitalPage, aO as OrbitalPageInput, aP as OrbitalPageSchema, aQ as OrbitalPageStrictInput, aR as OrbitalPageStrictSchema, aS as OrbitalSchemaInput, aT as OrbitalSchemaSchema, aU as OrbitalSchemaWithTraits, aV as OrbitalUnit, aW as OrbitalUnitSchema, aX as OrbitalZodSchema, P as PageRef, c as PageRefObject, aY as PageRefObjectSchema, aZ as PageRefSchema, a_ as PageRefStringSchema, a$ as PageSchema, b1 as PageTraitRefSchema, b2 as RelatedLink, b3 as RelatedLinkSchema, b4 as SchemaMetadata, b5 as SchemaMetadataSchema, b6 as SkinSpec, b7 as SkinSpecSchema, b8 as SpacingScale, b9 as SpacingScaleSchema, ba as StateSemanticRole, bb as StateSemanticRoleSchema, bc as SuggestedGuard, bd as SuggestedGuardSchema, be as ThemeDefinition, bf as ThemeDefinitionSchema, bg as ThemeRef, bh as ThemeRefSchema, bi as ThemeRefStringSchema, bj as ThemeTokens, bk as ThemeTokensSchema, bl as ThemeVariant, bm as ThemeVariantSchema, bn as TypeIntent, bo as TypeIntentMap, bp as TypeIntentMapSchema, bq as TypeIntentSchema, br as TypeScale, bs as TypeScaleEntry, bt as TypeScaleEntrySchema, bu as TypeScaleSchema, bv as TypeScaleTokens, bw as TypeScaleTokensSchema, bx as TypeSizeKey, by as TypeSizeKeySchema, bz as TypeSlice, bA as TypeSliceSchema, bB as TypeSlot, bC as TypeSlotSchema, bD as TypeWeight, bE as TypeWeightSchema, bF as UXHints, bG as UXHintsSchema, U as UseDeclaration, bH as UseDeclarationSchema, bI as UserPersona, bJ as UserPersonaInput, bK as UserPersonaSchema, bL as ViewType, bM as ViewTypeSchema, bN as isEntityCall, bO as isEntityReference, bP as isEntityReferenceAny, bQ as isImportedTraitRef, bR as isOrbitalDefinition, bS as isPageReference, bT as isPageReferenceObject, bU as isPageReferenceString, bV as isThemeReference, bW as parseEntityRef, bX as parseImportedTraitRef, bY as parseOrbitalSchema, bZ as parsePageRef, b_ as safeParseOrbitalSchema } from '../schema-Cq9DUnFw.js';
|
|
3
|
+
import { bg as ServiceParams, a as Trait, d as Entity, h as EntityRow, ar as FieldValue, N as DeclaredTraitConfig, T as TraitConfig, E as Effect, C as ConfigFieldDeclaration, n as State, bV as Transition, f as EntityField, ac as Event, bF as TraitConfigValue, g as EntityPersistence, bC as TraitCategory, cG as TraitScope } from '../trait-BsnLnedq.js';
|
|
4
|
+
export { A as AgentEffect, o as AnimationDef, p as AnimationDefInput, q as AnimationDefSchema, r as ArrayEntityField, s as AssetCatalog, t as AssetCatalogEntry, u as AssetCatalogEntryInput, v as AssetCatalogEntrySchema, w as AssetCatalogSchema, x as AssetMap, y as AssetMapInput, z as AssetMapSchema, B as AssetMapping, D as AssetMappingInput, F as AssetMappingSchema, G as AssetUrl, H as AtomicEffect, I as CallServiceConfig, J as CallServiceEffect, K as CheckpointLoadEffect, L as CheckpointSaveEffect, M as ConfigFieldDeclarationSchema, O as DeclaredTraitConfigSchema, P as DerefEffect, Q as DespawnEffect, V as DoEffect, W as ENTITY_ROLES, X as EffectInput, Y as EffectSchema, Z as EmitConfig, _ as EmitEffect, $ as EntityData, a0 as EntityFieldContract, a1 as EntityFieldContractSchema, a2 as EntityFieldInput, a3 as EntityFieldSchema, a4 as EntityPersistenceSchema, a5 as EntityRole, a6 as EntityRoleSchema, a7 as EntitySchema, a8 as EntityWith, a9 as EnumEntityField, aa as EvaluateConfig, ab as EvaluateEffect, ad as EventInput, l as EventPayloadField, ae as EventPayloadFieldSchema, af as EventSchema, ag as EventScope, ah as EventScopeSchema, ai as FetchEffect, aj as FetchOptions, ak as FetchResult, al as Field, am as FieldFormat, an as FieldFormatSchema, ao as FieldSchema, ap as FieldType, aq as FieldTypeSchema, as as ForwardConfig, at as ForwardEffect, au as GAME_TYPES, av as GameType, aw as GameTypeSchema, ax as Guard, ay as GuardInput, az as GuardSchema, aA as ListenSource, aB as ListenSourceSchema, aC as LogEffect, aD as McpServiceDef, aE as McpServiceDefSchema, aF as NavigateEffect, aG as NnConfig, aH as NnLayer, aI as NotifyEffect, aJ as OrbitalEntity, aK as OrbitalEntityInput, aL as OrbitalEntitySchema, aM as OrbitalTraitRef, aN as OrbitalTraitRefSchema, aO as OsEffect, aP as PayloadField, aQ as PayloadFieldSchema, aR as PersistData, aS as PersistEffect, aT as PersistEmitConfig, aU as PresentationType, aV as RefEffect, aW as RelationConfig, aX as RelationConfigSchema, aY as RelationEntityField, R as RenderBinding, aZ as RenderItemLambda, a_ as RenderUIConfig, b as RenderUIEffect, a$ as RenderUINode, b0 as RequiredField, b1 as RequiredFieldSchema, b2 as ResolvedAsset, b3 as ResolvedAssetInput, b4 as ResolvedAssetSchema, b5 as ResolvedPatternProps, b6 as RestAuthConfig, b7 as RestAuthConfigSchema, b8 as RestServiceDef, b9 as RestServiceDefSchema, ba as SERVICE_TYPES, bb as ScalarEntityField, bc as SemanticAssetRef, bd as SemanticAssetRefInput, be as SemanticAssetRefSchema, m as ServiceDefinition, bf as ServiceDefinitionSchema, bh as ServiceParamsValue, S as ServiceRef, bi as ServiceRefObject, bj as ServiceRefObjectSchema, bk as ServiceRefSchema, bl as ServiceRefStringSchema, bm as ServiceType, bn as ServiceTypeSchema, bo as SetEffect, bp as SocketEvents, bq as SocketEventsSchema, br as SocketServiceDef, bs as SocketServiceDefSchema, bt as SpawnEffect, bu as StateInput, bv as StateMachine, bw as StateMachineInput, bx as StateMachineSchema, by as StateSchema, bz as SwapEffect, bA as TrainConfig, bB as TrainEffect, bD as TraitCategorySchema, k as TraitConfigObject, bE as TraitConfigSchema, bG as TraitConfigValueSchema, bH as TraitDataEntity, bI as TraitDataEntitySchema, bJ as TraitEntityField, bK as TraitEntityFieldSchema, c as TraitEventContract, bL as TraitEventContractSchema, e as TraitEventListener, bM as TraitEventListenerSchema, bN as TraitInput, i as TraitRef, bO as TraitRefSchema, j as TraitReference, bP as TraitReferenceInput, bQ as TraitReferenceSchema, bR as TraitSchema, bS as TraitTick, bT as TraitTickSchema, bU as TraitUIBinding, bW as TransitionInput, bX as TransitionSchema, bY as TypedEffect, U as UISlot, bZ as UISlotSchema, b_ as UI_SLOTS, b$ as VISUAL_STYLES, c0 as VisualStyle, c1 as VisualStyleSchema, c2 as WatchEffect, c3 as WatchOptions, c4 as atomic, c5 as callService, c6 as createAssetKey, c7 as deref, c8 as deriveCollection, c9 as despawn, ca as doEffects, cb as emit, cc as findService, cd as getDefaultAnimationsForRole, ce as getServiceNames, cf as getTraitConfig, cg as getTraitName, ch as hasService, ci as isCircuitEvent, cj as isEffect, ck as isInlineTrait, cl as isMcpService, cm as isRestService, cn as isRuntimeEntity, co as isSExprEffect, cp as isServiceReference, cq as isServiceReferenceObject, cr as isSingletonEntity, cs as isSocketService, ct as navigate, cu as normalizeTraitRef, cv as notify, cw as parseAssetKey, cx as parseServiceRef, cy as persist, cz as ref, cA as renderUI, cB as set, cC as spawn, cD as swap, cE as validateAssetAnimations, cF as watch } from '../trait-BsnLnedq.js';
|
|
5
|
+
import { d as EventPayloadValue, c as EventPayload, L as LogMeta, S as SExpr, b as EvalContext } from '../expression-BUIi9ezJ.js';
|
|
6
|
+
export { C as CORE_BINDINGS, a as CoreBinding, E as Expression, e as ExpressionInput, f as ExpressionSchema, P as ParsedBinding, g as SExprAtom, h as SExprAtomSchema, i as SExprInput, j as SExprSchema, k as collectBindings, l as getArgs, m as getOperator, n as isBinding, o as isSExpr, p as isSExprAtom, q as isSExprCall, r as isValidBinding, s as parseBinding, t as sexpr, w as walkSExpr } from '../expression-BUIi9ezJ.js';
|
|
7
7
|
import { z } from 'zod';
|
|
8
8
|
import { AnyPatternConfig } from '@almadar/patterns';
|
|
9
9
|
export { PATTERN_TYPES, PatternConfig, PatternType, isValidPatternType } from '@almadar/patterns';
|
|
10
|
-
import { c as FactoryConfigTier } from '../types-
|
|
11
|
-
export {
|
|
10
|
+
import { c as FactoryConfigTier } from '../types-CdXuGm8S.js';
|
|
11
|
+
export { l as JsonObject, J as JsonValue, T as ToolArgs, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive } from '../types-CdXuGm8S.js';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* S-Expression Bindings
|