@almadar/core 7.4.0 → 7.5.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 +2 -2
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-CoKYNzwM.d.ts → compose-behaviors-BH2woEkf.d.ts} +1 -1
- package/dist/domain-language/index.d.ts +1 -1
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js.map +1 -1
- package/dist/{schema-CI7VxcmO.d.ts → schema-C3iwMsTl.d.ts} +17 -3
- package/dist/types/index.d.ts +2 -2
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -1648,9 +1648,10 @@ type PersistEffect = ['persist', 'create', string, PersistData] | ['persist', 'c
|
|
|
1648
1648
|
* older call sites using the builder helper continue to typecheck.
|
|
1649
1649
|
*
|
|
1650
1650
|
* @example ['call-service', 'llm', 'generate', { userPrompt: '@entity.inputText' }]
|
|
1651
|
+
* @example ['call-service', 'llm', 'generate', { userPrompt: '...' }, { emit: { success: 'OK', failure: 'ERR' } }]
|
|
1651
1652
|
* @example ['call-service', 'WeatherAPI', { service: 'weather', action: 'get', onSuccess: 'OK' }]
|
|
1652
1653
|
*/
|
|
1653
|
-
type CallServiceEffect = ['call-service', string, string] | ['call-service', string, string, ServiceParams] | ['call-service', string, CallServiceConfig];
|
|
1654
|
+
type CallServiceEffect = ['call-service', string, string] | ['call-service', string, string, ServiceParams] | ['call-service', string, string, ServiceParams, PersistEmitConfig] | ['call-service', string, CallServiceConfig];
|
|
1654
1655
|
/**
|
|
1655
1656
|
* Spawn effect - creates a new entity instance (games).
|
|
1656
1657
|
* @example ['spawn', 'Bullet', { x: '@entity.x', y: '@entity.y' }]
|
|
@@ -1857,6 +1858,19 @@ type CheckpointLoadEffect = ['checkpoint/load', string];
|
|
|
1857
1858
|
* @example ['agent/generate', 'Summarize this schema']
|
|
1858
1859
|
*/
|
|
1859
1860
|
type AgentEffect = [`agent/${string}`, ...SExpr[]];
|
|
1861
|
+
/**
|
|
1862
|
+
* OS effect - invokes an os/* operator.
|
|
1863
|
+
*
|
|
1864
|
+
* Covers reactive subscriptions to OS / network resources:
|
|
1865
|
+
* - `os/watch-http`, `os/watch-ws`, `os/watch-sse` — long-lived streams
|
|
1866
|
+
* that fire `on_message` / `failure` events through a trailing
|
|
1867
|
+
* `EmitConfig` block (see `EmitConfig` for the supported keys).
|
|
1868
|
+
* - `os/read-file`, `os/exec`, etc. — one-shot OS operations.
|
|
1869
|
+
*
|
|
1870
|
+
* @example ['os/watch-http', 'wss://push.example.com', { emit: { on_message: 'PUSH_RECEIVED', failure: 'PUSH_DISCONNECTED' } }]
|
|
1871
|
+
* @example ['os/read-file', '/etc/hosts']
|
|
1872
|
+
*/
|
|
1873
|
+
type OsEffect = [`os/${string}`, ...SExpr[]];
|
|
1860
1874
|
/**
|
|
1861
1875
|
* Async delay effect - wait then execute effects.
|
|
1862
1876
|
* @example ['async/delay', 2000, ['emit', 'TIMEOUT']]
|
|
@@ -1899,7 +1913,7 @@ type AsyncSequenceEffect = ['async/sequence', ...Effect[]];
|
|
|
1899
1913
|
* Union of all typed effects.
|
|
1900
1914
|
* Provides compile-time validation for common effect types.
|
|
1901
1915
|
*/
|
|
1902
|
-
type TypedEffect = RenderUIEffect | NavigateEffect | EmitEffect | SetEffect | PersistEffect | CallServiceEffect | SpawnEffect | DespawnEffect | DoEffect | NotifyEffect | FetchEffect | IfEffect | WhenEffect | LetEffect | LogEffect | WaitEffect | RefEffect | DerefEffect | SwapEffect | WatchEffect | AtomicEffect | AsyncDelayEffect | AsyncDebounceEffect | AsyncThrottleEffect | AsyncIntervalEffect | AsyncRaceEffect | AsyncAllEffect | AsyncSequenceEffect | ForwardEffect | TrainEffect | EvaluateEffect | CheckpointSaveEffect | CheckpointLoadEffect | AgentEffect;
|
|
1916
|
+
type TypedEffect = RenderUIEffect | NavigateEffect | EmitEffect | SetEffect | PersistEffect | CallServiceEffect | SpawnEffect | DespawnEffect | DoEffect | NotifyEffect | FetchEffect | IfEffect | WhenEffect | LetEffect | LogEffect | WaitEffect | RefEffect | DerefEffect | SwapEffect | WatchEffect | AtomicEffect | AsyncDelayEffect | AsyncDebounceEffect | AsyncThrottleEffect | AsyncIntervalEffect | AsyncRaceEffect | AsyncAllEffect | AsyncSequenceEffect | ForwardEffect | TrainEffect | EvaluateEffect | CheckpointSaveEffect | CheckpointLoadEffect | AgentEffect | OsEffect;
|
|
1903
1917
|
/**
|
|
1904
1918
|
* Effect type - typed S-expression format.
|
|
1905
1919
|
*
|
|
@@ -22755,4 +22769,4 @@ declare function safeParseOrbitalSchema(data: unknown): z.SafeParseReturnType<{
|
|
|
22755
22769
|
type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
|
|
22756
22770
|
type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
|
|
22757
22771
|
|
|
22758
|
-
export { type DesignTokensInput as $, AGENT_DOMAIN_CATEGORIES as A, type AtomicEffect as B, type CallServiceConfig as C, type CallServiceEffect as D, type Entity as E, type CheckpointLoadEffect as F, type CheckpointSaveEffect as G, type ComputedEventContract as H, ComputedEventContractSchema as I, type ComputedEventListener as J, ComputedEventListenerSchema as K, type CustomPatternDefinition as L, type CustomPatternDefinitionInput as M, CustomPatternDefinitionSchema as N, type OrbitalDefinition as O, type PageRef as P, type CustomPatternMap as Q, type CustomPatternMapInput as R, type State as S, type TraitEventContract as T, type UseDeclaration as U, CustomPatternMapSchema as V, type DerefEffect as W, type DesignPreferences as X, type DesignPreferencesInput as Y, DesignPreferencesSchema as Z, type DesignTokens as _, type TraitEventListener as a, GuardSchema as a$, DesignTokensSchema as a0, type DespawnEffect as a1, type DoEffect as a2, type DomainCategory as a3, DomainCategorySchema as a4, type DomainContext as a5, type DomainContextInput as a6, DomainContextSchema as a7, type DomainVocabulary as a8, DomainVocabularySchema as a9, EventPayloadFieldSchema as aA, EventSchema as aB, type EventScope as aC, EventScopeSchema as aD, type EventSemanticRole as aE, EventSemanticRoleSchema as aF, type EventSource as aG, EventSourceSchema as aH, type FetchEffect as aI, type FetchOptions as aJ, type Field as aK, type FieldFormat as aL, FieldFormatSchema as aM, FieldSchema as aN, type FieldType as aO, FieldTypeSchema as aP, type FieldValue as aQ, type ForwardConfig as aR, type ForwardEffect as aS, type Orbital as aT, GAME_TYPES as aU, type GameSubCategory as aV, GameSubCategorySchema as aW, type GameType as aX, GameTypeSchema as aY, type Guard as aZ, type GuardInput as a_, ENTITY_ROLES as aa, type Effect as ab, type EffectInput as ac, EffectSchema as ad, type EmitConfig as ae, type EmitEffect as af, type EntityCall as ag, EntityCallSchema as ah, type EntityData as ai, type EntityFieldInput as aj, EntityFieldSchema as ak, EntityPersistenceSchema as al, EntityRefSchema as am, EntityRefStringSchema as an, type EntityRole as ao, EntityRoleSchema as ap, EntitySchema as aq, type EntitySemanticRole as ar, EntitySemanticRoleSchema as as, type EvaluateConfig as at, type EvaluateEffect as au, type Event as av, type EventInput as aw, type EventListener as ax, EventListenerSchema as ay, type EventPayloadField as az, type TraitConfig as b,
|
|
22772
|
+
export { type DesignTokensInput as $, AGENT_DOMAIN_CATEGORIES as A, type AtomicEffect as B, type CallServiceConfig as C, type CallServiceEffect as D, type Entity as E, type CheckpointLoadEffect as F, type CheckpointSaveEffect as G, type ComputedEventContract as H, ComputedEventContractSchema as I, type ComputedEventListener as J, ComputedEventListenerSchema as K, type CustomPatternDefinition as L, type CustomPatternDefinitionInput as M, CustomPatternDefinitionSchema as N, type OrbitalDefinition as O, type PageRef as P, type CustomPatternMap as Q, type CustomPatternMapInput as R, type State as S, type TraitEventContract as T, type UseDeclaration as U, CustomPatternMapSchema as V, type DerefEffect as W, type DesignPreferences as X, type DesignPreferencesInput as Y, DesignPreferencesSchema as Z, type DesignTokens as _, type TraitEventListener as a, GuardSchema as a$, DesignTokensSchema as a0, type DespawnEffect as a1, type DoEffect as a2, type DomainCategory as a3, DomainCategorySchema as a4, type DomainContext as a5, type DomainContextInput as a6, DomainContextSchema as a7, type DomainVocabulary as a8, DomainVocabularySchema as a9, EventPayloadFieldSchema as aA, EventSchema as aB, type EventScope as aC, EventScopeSchema as aD, type EventSemanticRole as aE, EventSemanticRoleSchema as aF, type EventSource as aG, EventSourceSchema as aH, type FetchEffect as aI, type FetchOptions as aJ, type Field as aK, type FieldFormat as aL, FieldFormatSchema as aM, FieldSchema as aN, type FieldType as aO, FieldTypeSchema as aP, type FieldValue as aQ, type ForwardConfig as aR, type ForwardEffect as aS, type Orbital as aT, GAME_TYPES as aU, type GameSubCategory as aV, GameSubCategorySchema as aW, type GameType as aX, GameTypeSchema as aY, type Guard as aZ, type GuardInput as a_, ENTITY_ROLES as aa, type Effect as ab, type EffectInput as ac, EffectSchema as ad, type EmitConfig as ae, type EmitEffect as af, type EntityCall as ag, EntityCallSchema as ah, type EntityData as ai, type EntityFieldInput as aj, EntityFieldSchema as ak, EntityPersistenceSchema as al, EntityRefSchema as am, EntityRefStringSchema as an, type EntityRole as ao, EntityRoleSchema as ap, EntitySchema as aq, type EntitySemanticRole as ar, EntitySemanticRoleSchema as as, type EvaluateConfig as at, type EvaluateEffect as au, type Event as av, type EventInput as aw, type EventListener as ax, EventListenerSchema as ay, type EventPayloadField as az, type TraitConfig as b, SERVICE_TYPES as b$, type ListenSource as b0, ListenSourceSchema as b1, type LogEffect as b2, type McpServiceDef as b3, McpServiceDefSchema as b4, type NavigateEffect as b5, type NnConfig as b6, type NnLayer as b7, type NodeClassification as b8, NodeClassificationSchema as b9, type PageTraitRef as bA, PageTraitRefSchema as bB, type PayloadField as bC, PayloadFieldSchema as bD, type PersistData as bE, type PersistEffect as bF, type PersistEmitConfig as bG, type PresentationType as bH, type RefEffect as bI, type RelatedLink as bJ, RelatedLinkSchema as bK, type RelationConfig as bL, RelationConfigSchema as bM, type RenderItemLambda as bN, type RenderUIConfig as bO, type RenderUIEffect as bP, type RenderUINode as bQ, type RequiredField as bR, RequiredFieldSchema as bS, type ResolvedAsset as bT, type ResolvedAssetInput as bU, ResolvedAssetSchema as bV, type ResolvedPatternProps as bW, type RestAuthConfig as bX, RestAuthConfigSchema as bY, type RestServiceDef as bZ, RestServiceDefSchema as b_, type NotifyEffect as ba, type OrbitalConfig as bb, type OrbitalConfigInput as bc, OrbitalConfigSchema as bd, OrbitalDefinitionSchema as be, type OrbitalEntity as bf, type OrbitalEntityInput as bg, OrbitalEntitySchema as bh, type OrbitalInput as bi, type OrbitalPage as bj, type OrbitalPageInput as bk, OrbitalPageSchema as bl, type OrbitalPageStrictInput as bm, OrbitalPageStrictSchema as bn, type OrbitalSchemaInput as bo, OrbitalSchemaSchema as bp, type OrbitalTraitRef as bq, OrbitalTraitRefSchema as br, type OrbitalUnit as bs, OrbitalUnitSchema as bt, OrbitalSchema$1 as bu, type OsEffect as bv, PageRefObjectSchema as bw, PageRefSchema as bx, PageRefStringSchema as by, PageSchema as bz, type EntityField as c, type TypedEffect as c$, type SemanticAssetRef as c0, type SemanticAssetRefInput as c1, SemanticAssetRefSchema as c2, type ServiceDefinition as c3, ServiceDefinitionSchema as c4, type ServiceParams as c5, type ServiceRef as c6, type ServiceRefObject as c7, ServiceRefObjectSchema as c8, ServiceRefSchema as c9, type ThemeVariant as cA, ThemeVariantSchema as cB, type TrainConfig as cC, type TrainEffect as cD, type TraitCategory as cE, TraitCategorySchema as cF, type TraitConfigObject as cG, TraitConfigSchema as cH, type TraitConfigValue as cI, TraitConfigValueSchema as cJ, type TraitDataEntity as cK, TraitDataEntitySchema as cL, type TraitEntityField as cM, TraitEntityFieldSchema as cN, TraitEventContractSchema as cO, TraitEventListenerSchema as cP, type TraitInput as cQ, TraitRefSchema as cR, type TraitReferenceInput as cS, TraitReferenceSchema as cT, TraitSchema as cU, type TraitTick as cV, TraitTickSchema as cW, type TraitUIBinding as cX, type Transition as cY, type TransitionInput as cZ, TransitionSchema as c_, ServiceRefStringSchema as ca, type ServiceType as cb, ServiceTypeSchema as cc, type SetEffect as cd, type SocketEvents as ce, SocketEventsSchema as cf, type SocketServiceDef as cg, SocketServiceDefSchema as ch, type SpawnEffect as ci, type StateInput as cj, type StateMachine as ck, type StateMachineInput as cl, StateMachineSchema as cm, StateSchema as cn, type StateSemanticRole as co, StateSemanticRoleSchema as cp, type SuggestedGuard as cq, SuggestedGuardSchema as cr, type SwapEffect as cs, type ThemeDefinition as ct, ThemeDefinitionSchema as cu, type ThemeRef as cv, ThemeRefSchema as cw, ThemeRefStringSchema as cx, type ThemeTokens as cy, ThemeTokensSchema as cz, type EntityPersistence as d, safeParseOrbitalSchema as d$, type UISlot as d0, UISlotSchema as d1, UI_SLOTS as d2, type UXHints as d3, UXHintsSchema as d4, UseDeclarationSchema as d5, type UserPersona as d6, type UserPersonaInput as d7, UserPersonaSchema as d8, VISUAL_STYLES as d9, isImportedTraitRef as dA, isInlineTrait as dB, isMcpService as dC, isOrbitalDefinition as dD, isPageReference as dE, isPageReferenceObject as dF, isPageReferenceString as dG, isRestService as dH, isRuntimeEntity as dI, isSExprEffect as dJ, isServiceReference as dK, isServiceReferenceObject as dL, isSingletonEntity as dM, isSocketService as dN, isThemeReference as dO, navigate as dP, normalizeTraitRef as dQ, notify as dR, parseAssetKey as dS, parseEntityRef as dT, parseImportedTraitRef as dU, parseOrbitalSchema as dV, parsePageRef as dW, parseServiceRef as dX, persist as dY, ref as dZ, renderUI as d_, type ViewType as da, ViewTypeSchema as db, type VisualStyle as dc, VisualStyleSchema as dd, type WatchEffect as de, type WatchOptions as df, atomic as dg, callService as dh, createAssetKey as di, deref as dj, deriveCollection as dk, despawn as dl, doEffects as dm, emit as dn, findService as dp, getDefaultAnimationsForRole as dq, getServiceNames as dr, getTraitConfig as ds, getTraitName as dt, hasService as du, isCircuitEvent as dv, isEffect as dw, isEntityCall as dx, isEntityReference as dy, isEntityReferenceAny as dz, type EntityRow as e, set as e0, spawn as e1, swap as e2, validateAssetAnimations as e3, watch as e4, type EntityRef as f, type TraitRef as g, type OrbitalSchema as h, type Trait as i, type Page as j, type PageRefObject as k, type TraitReference as l, ALLOWED_CUSTOM_COMPONENTS as m, type AgentDomainCategory as n, AgentDomainCategorySchema as o, type AgentEffect as p, type AllowedCustomComponent as q, type AnimationDef as r, type AnimationDefInput as s, AnimationDefSchema as t, type AssetMap as u, type AssetMapInput as v, AssetMapSchema as w, type AssetMapping as x, type AssetMappingInput as y, AssetMappingSchema as z };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export { A as AGENT_DOMAIN_CATEGORIES, m as ALLOWED_CUSTOM_COMPONENTS, n as AgentDomainCategory, o as AgentDomainCategorySchema, p as AgentEffect, q as AllowedCustomComponent, r as AnimationDef, s as AnimationDefInput, t as AnimationDefSchema, u as AssetMap, v as AssetMapInput, w as AssetMapSchema, x as AssetMapping, y as AssetMappingInput, z as AssetMappingSchema, B as AtomicEffect, C as CallServiceConfig, D as CallServiceEffect, F as CheckpointLoadEffect, G as CheckpointSaveEffect, H as ComputedEventContract, I as ComputedEventContractSchema, J as ComputedEventListener, K as ComputedEventListenerSchema, L as CustomPatternDefinition, M as CustomPatternDefinitionInput, N as CustomPatternDefinitionSchema, Q as CustomPatternMap, R as CustomPatternMapInput, V as CustomPatternMapSchema, W as DerefEffect, X as DesignPreferences, Y as DesignPreferencesInput, Z as DesignPreferencesSchema, _ as DesignTokens, $ as DesignTokensInput, a0 as DesignTokensSchema, a1 as DespawnEffect, a2 as DoEffect, a3 as DomainCategory, a4 as DomainCategorySchema, a5 as DomainContext, a6 as DomainContextInput, a7 as DomainContextSchema, a8 as DomainVocabulary, a9 as DomainVocabularySchema, aa as ENTITY_ROLES, ab as Effect, ac as EffectInput, ad as EffectSchema, ae as EmitConfig, af as EmitEffect, E as Entity, ag as EntityCall, ah as EntityCallSchema, ai as EntityData, c as EntityField, aj as EntityFieldInput, ak as EntityFieldSchema, d as EntityPersistence, al as EntityPersistenceSchema, f as EntityRef, am as EntityRefSchema, an as EntityRefStringSchema, ao as EntityRole, ap as EntityRoleSchema, aq as EntitySchema, ar as EntitySemanticRole, as as EntitySemanticRoleSchema, at as EvaluateConfig, au as EvaluateEffect, av as Event, aw as EventInput, ax as EventListener, ay as EventListenerSchema, az as EventPayloadField, aA as EventPayloadFieldSchema, aB as EventSchema, aC as EventScope, aD as EventScopeSchema, aE as EventSemanticRole, aF as EventSemanticRoleSchema, aG as EventSource, aH as EventSourceSchema, aI as FetchEffect, aJ as FetchOptions, aK as Field, aL as FieldFormat, aM as FieldFormatSchema, aN as FieldSchema, aO as FieldType, aP as FieldTypeSchema, aR as ForwardConfig, aS as ForwardEffect, aT as FullOrbitalUnit, aU as GAME_TYPES, aV as GameSubCategory, aW as GameSubCategorySchema, aX as GameType, aY as GameTypeSchema, aZ as Guard, a_ as GuardInput, a$ as GuardSchema, b0 as ListenSource, b1 as ListenSourceSchema, b2 as LogEffect, b3 as McpServiceDef, b4 as McpServiceDefSchema, b5 as NavigateEffect, b6 as NnConfig, b7 as NnLayer, b8 as NodeClassification, b9 as NodeClassificationSchema, ba as NotifyEffect, aT as Orbital, bb as OrbitalConfig, bc as OrbitalConfigInput, bd as OrbitalConfigSchema, O as OrbitalDefinition, be as OrbitalDefinitionSchema, bf as OrbitalEntity, bg as OrbitalEntityInput, bh as OrbitalEntitySchema, bi as OrbitalInput, bj as OrbitalPage, bk as OrbitalPageInput, bl as OrbitalPageSchema, bm as OrbitalPageStrictInput, bn as OrbitalPageStrictSchema, bo as OrbitalSchemaInput, bp as OrbitalSchemaSchema, bq as OrbitalTraitRef, br as OrbitalTraitRefSchema, bs as OrbitalUnit, bt as OrbitalUnitSchema, bu as OrbitalZodSchema, j as Page, P as PageRef, k as PageRefObject,
|
|
1
|
+
import { c5 as ServiceParams, h as OrbitalSchema, e as EntityRow, aQ as FieldValue, b as TraitConfig } from '../schema-C3iwMsTl.js';
|
|
2
|
+
export { A as AGENT_DOMAIN_CATEGORIES, m as ALLOWED_CUSTOM_COMPONENTS, n as AgentDomainCategory, o as AgentDomainCategorySchema, p as AgentEffect, q as AllowedCustomComponent, r as AnimationDef, s as AnimationDefInput, t as AnimationDefSchema, u as AssetMap, v as AssetMapInput, w as AssetMapSchema, x as AssetMapping, y as AssetMappingInput, z as AssetMappingSchema, B as AtomicEffect, C as CallServiceConfig, D as CallServiceEffect, F as CheckpointLoadEffect, G as CheckpointSaveEffect, H as ComputedEventContract, I as ComputedEventContractSchema, J as ComputedEventListener, K as ComputedEventListenerSchema, L as CustomPatternDefinition, M as CustomPatternDefinitionInput, N as CustomPatternDefinitionSchema, Q as CustomPatternMap, R as CustomPatternMapInput, V as CustomPatternMapSchema, W as DerefEffect, X as DesignPreferences, Y as DesignPreferencesInput, Z as DesignPreferencesSchema, _ as DesignTokens, $ as DesignTokensInput, a0 as DesignTokensSchema, a1 as DespawnEffect, a2 as DoEffect, a3 as DomainCategory, a4 as DomainCategorySchema, a5 as DomainContext, a6 as DomainContextInput, a7 as DomainContextSchema, a8 as DomainVocabulary, a9 as DomainVocabularySchema, aa as ENTITY_ROLES, ab as Effect, ac as EffectInput, ad as EffectSchema, ae as EmitConfig, af as EmitEffect, E as Entity, ag as EntityCall, ah as EntityCallSchema, ai as EntityData, c as EntityField, aj as EntityFieldInput, ak as EntityFieldSchema, d as EntityPersistence, al as EntityPersistenceSchema, f as EntityRef, am as EntityRefSchema, an as EntityRefStringSchema, ao as EntityRole, ap as EntityRoleSchema, aq as EntitySchema, ar as EntitySemanticRole, as as EntitySemanticRoleSchema, at as EvaluateConfig, au as EvaluateEffect, av as Event, aw as EventInput, ax as EventListener, ay as EventListenerSchema, az as EventPayloadField, aA as EventPayloadFieldSchema, aB as EventSchema, aC as EventScope, aD as EventScopeSchema, aE as EventSemanticRole, aF as EventSemanticRoleSchema, aG as EventSource, aH as EventSourceSchema, aI as FetchEffect, aJ as FetchOptions, aK as Field, aL as FieldFormat, aM as FieldFormatSchema, aN as FieldSchema, aO as FieldType, aP as FieldTypeSchema, aR as ForwardConfig, aS as ForwardEffect, aT as FullOrbitalUnit, aU as GAME_TYPES, aV as GameSubCategory, aW as GameSubCategorySchema, aX as GameType, aY as GameTypeSchema, aZ as Guard, a_ as GuardInput, a$ as GuardSchema, b0 as ListenSource, b1 as ListenSourceSchema, b2 as LogEffect, b3 as McpServiceDef, b4 as McpServiceDefSchema, b5 as NavigateEffect, b6 as NnConfig, b7 as NnLayer, b8 as NodeClassification, b9 as NodeClassificationSchema, ba as NotifyEffect, aT as Orbital, bb as OrbitalConfig, bc as OrbitalConfigInput, bd as OrbitalConfigSchema, O as OrbitalDefinition, be as OrbitalDefinitionSchema, bf as OrbitalEntity, bg as OrbitalEntityInput, bh as OrbitalEntitySchema, bi as OrbitalInput, bj as OrbitalPage, bk as OrbitalPageInput, bl as OrbitalPageSchema, bm as OrbitalPageStrictInput, bn as OrbitalPageStrictSchema, bo as OrbitalSchemaInput, bp as OrbitalSchemaSchema, bq as OrbitalTraitRef, br as OrbitalTraitRefSchema, bs as OrbitalUnit, bt as OrbitalUnitSchema, bu as OrbitalZodSchema, bv as OsEffect, j as Page, P as PageRef, k as PageRefObject, bw as PageRefObjectSchema, bx as PageRefSchema, by as PageRefStringSchema, bz as PageSchema, bA as PageTraitRef, bB as PageTraitRefSchema, bC as PayloadField, bD as PayloadFieldSchema, bE as PersistData, bF as PersistEffect, bG as PersistEmitConfig, bH as PresentationType, bI as RefEffect, bJ as RelatedLink, bK as RelatedLinkSchema, bL as RelationConfig, bM as RelationConfigSchema, bN as RenderItemLambda, bO as RenderUIConfig, bP as RenderUIEffect, bQ as RenderUINode, bR as RequiredField, bS as RequiredFieldSchema, bT as ResolvedAsset, bU as ResolvedAssetInput, bV as ResolvedAssetSchema, bW as ResolvedPatternProps, bX as RestAuthConfig, bY as RestAuthConfigSchema, bZ as RestServiceDef, b_ as RestServiceDefSchema, b$ as SERVICE_TYPES, c0 as SemanticAssetRef, c1 as SemanticAssetRefInput, c2 as SemanticAssetRefSchema, c3 as ServiceDefinition, c4 as ServiceDefinitionSchema, c6 as ServiceRef, c7 as ServiceRefObject, c8 as ServiceRefObjectSchema, c9 as ServiceRefSchema, ca as ServiceRefStringSchema, cb as ServiceType, cc as ServiceTypeSchema, cd as SetEffect, ce as SocketEvents, cf as SocketEventsSchema, cg as SocketServiceDef, ch as SocketServiceDefSchema, ci as SpawnEffect, S as State, cj as StateInput, ck as StateMachine, cl as StateMachineInput, cm as StateMachineSchema, cn as StateSchema, co as StateSemanticRole, cp as StateSemanticRoleSchema, cq as SuggestedGuard, cr as SuggestedGuardSchema, cs as SwapEffect, ct as ThemeDefinition, cu as ThemeDefinitionSchema, cv as ThemeRef, cw as ThemeRefSchema, cx as ThemeRefStringSchema, cy as ThemeTokens, cz as ThemeTokensSchema, cA as ThemeVariant, cB as ThemeVariantSchema, cC as TrainConfig, cD as TrainEffect, i as Trait, cE as TraitCategory, cF as TraitCategorySchema, cG as TraitConfigObject, cH as TraitConfigSchema, cI as TraitConfigValue, cJ as TraitConfigValueSchema, cK as TraitDataEntity, cL as TraitDataEntitySchema, cM as TraitEntityField, cN as TraitEntityFieldSchema, T as TraitEventContract, cO as TraitEventContractSchema, a as TraitEventListener, cP as TraitEventListenerSchema, cQ as TraitInput, g as TraitRef, cR as TraitRefSchema, l as TraitReference, cS as TraitReferenceInput, cT as TraitReferenceSchema, cU as TraitSchema, cV as TraitTick, cW as TraitTickSchema, cX as TraitUIBinding, cY as Transition, cZ as TransitionInput, c_ as TransitionSchema, c$ as TypedEffect, d0 as UISlot, d1 as UISlotSchema, d2 as UI_SLOTS, d3 as UXHints, d4 as UXHintsSchema, U as UseDeclaration, d5 as UseDeclarationSchema, d6 as UserPersona, d7 as UserPersonaInput, d8 as UserPersonaSchema, d9 as VISUAL_STYLES, da as ViewType, db as ViewTypeSchema, dc as VisualStyle, dd as VisualStyleSchema, de as WatchEffect, df as WatchOptions, dg as atomic, dh as callService, di as createAssetKey, dj as deref, dk as deriveCollection, dl as despawn, dm as doEffects, dn as emit, dp as findService, dq as getDefaultAnimationsForRole, dr as getServiceNames, ds as getTraitConfig, dt as getTraitName, du as hasService, dv as isCircuitEvent, dw as isEffect, dx as isEntityCall, dy as isEntityReference, dz as isEntityReferenceAny, dA as isImportedTraitRef, dB as isInlineTrait, dC as isMcpService, dD as isOrbitalDefinition, dE as isPageReference, dF as isPageReferenceObject, dG as isPageReferenceString, dH as isRestService, dI as isRuntimeEntity, dJ as isSExprEffect, dK as isServiceReference, dL as isServiceReferenceObject, dM as isSingletonEntity, dN as isSocketService, dO as isThemeReference, dP as navigate, dQ as normalizeTraitRef, dR as notify, dS as parseAssetKey, dT as parseEntityRef, dU as parseImportedTraitRef, dV as parseOrbitalSchema, dW as parsePageRef, dX as parseServiceRef, dY as persist, dZ as ref, d_ as renderUI, d$ as safeParseOrbitalSchema, e0 as set, e1 as spawn, e2 as swap, e3 as validateAssetAnimations, e4 as watch } from '../schema-C3iwMsTl.js';
|
|
3
3
|
import { c as EventPayloadValue, b as EventPayload, L as LogMeta, S as SExpr } from '../expression-eBO9-SQM.js';
|
|
4
4
|
export { C as CORE_BINDINGS, a as CoreBinding, E as EvalContext, d 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-eBO9-SQM.js';
|
|
5
5
|
import { z } from 'zod';
|