@almadar/core 9.0.1 → 9.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +3 -3
- package/dist/builders.js +8 -0
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-EFvCpOGu.d.ts → compose-behaviors-Bn9WPGfr.d.ts} +1 -1
- package/dist/factory/index.d.ts +20 -1
- package/dist/index.d.ts +5 -5
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/{schema-Dp3KfQHm.d.ts → schema-B6gRJD4J.d.ts} +643 -121
- package/dist/{trait-C23jbaBB.d.ts → trait-DvvM-71c.d.ts} +126 -1
- package/dist/types/index.d.ts +4 -4
- package/dist/types/index.js +9 -1
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -3308,11 +3308,55 @@ interface TraitUIBinding {
|
|
|
3308
3308
|
* it required and adds static checks in the compiler.
|
|
3309
3309
|
*/
|
|
3310
3310
|
type TraitScope = 'instance' | 'collection';
|
|
3311
|
+
/**
|
|
3312
|
+
* Inferred field contract for a `@rebindable` trait binding. `requires` =
|
|
3313
|
+
* entity fields the trait READS via `@entity.<field>`; `provides` = fields it
|
|
3314
|
+
* WRITES via `(set @entity.<field> ...)`. A consumer that rebinds the trait
|
|
3315
|
+
* (`linkedEntity`) must point at an entity whose fields ⊇ `requires`. Inferred
|
|
3316
|
+
* by the lolo lowerer from the trait's own SExpr usage; the orbital-rust L2
|
|
3317
|
+
* validator enforces it (`ORB_T_REBIND_MISSING_FIELDS`). Mirrors the Rust
|
|
3318
|
+
* `EntityFieldContract` serde shape exactly.
|
|
3319
|
+
*/
|
|
3320
|
+
interface EntityFieldContract {
|
|
3321
|
+
requires: string[];
|
|
3322
|
+
provides: string[];
|
|
3323
|
+
}
|
|
3324
|
+
declare const EntityFieldContractSchema: z.ZodObject<{
|
|
3325
|
+
requires: z.ZodArray<z.ZodString, "many">;
|
|
3326
|
+
provides: z.ZodArray<z.ZodString, "many">;
|
|
3327
|
+
}, "strip", z.ZodTypeAny, {
|
|
3328
|
+
requires: string[];
|
|
3329
|
+
provides: string[];
|
|
3330
|
+
}, {
|
|
3331
|
+
requires: string[];
|
|
3332
|
+
provides: string[];
|
|
3333
|
+
}>;
|
|
3311
3334
|
interface Trait {
|
|
3312
3335
|
name: string;
|
|
3313
3336
|
description?: string;
|
|
3314
3337
|
description_visual_prompt?: string;
|
|
3315
3338
|
category?: TraitCategory;
|
|
3339
|
+
/**
|
|
3340
|
+
* Opt-in marker authored as `-> @rebindable Entity` in `.lolo`. When
|
|
3341
|
+
* `true`, a consuming molecule/organism may rebind this trait's entity via
|
|
3342
|
+
* `linkedEntity`; otherwise the binding is fixed and the validator rejects
|
|
3343
|
+
* any rebind (`ORB_T_ENTITY_NOT_REBINDABLE`). Absent on traits that don't
|
|
3344
|
+
* bind an entity.
|
|
3345
|
+
*/
|
|
3346
|
+
entityRebindable?: boolean;
|
|
3347
|
+
/**
|
|
3348
|
+
* Inferred field contract a rebind target must satisfy. Emitted only
|
|
3349
|
+
* alongside `entityRebindable: true`. See {@link EntityFieldContract}.
|
|
3350
|
+
*/
|
|
3351
|
+
entityContract?: EntityFieldContract;
|
|
3352
|
+
/**
|
|
3353
|
+
* `@description "..."` authored on the `@rebindable` binding in `.lolo`.
|
|
3354
|
+
* Surfaced to catalog prose + knob-embeddings so the LLM can reach for the
|
|
3355
|
+
* binding from intent vocabulary (binding-discovery). Absent when unmarked.
|
|
3356
|
+
*/
|
|
3357
|
+
entityBindingDescription?: string;
|
|
3358
|
+
/** `@synonyms "..."` authored on the `@rebindable` binding in `.lolo`. */
|
|
3359
|
+
entityBindingSynonyms?: string;
|
|
3316
3360
|
/**
|
|
3317
3361
|
* Author-supplied capability tags lifted from the `.lolo` trait header's
|
|
3318
3362
|
* bracket list. Anything beyond the known scope tokens (`instance` /
|
|
@@ -3397,6 +3441,19 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3397
3441
|
description: z.ZodOptional<z.ZodString>;
|
|
3398
3442
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
3399
3443
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
3444
|
+
entityRebindable: z.ZodOptional<z.ZodBoolean>;
|
|
3445
|
+
entityContract: z.ZodOptional<z.ZodObject<{
|
|
3446
|
+
requires: z.ZodArray<z.ZodString, "many">;
|
|
3447
|
+
provides: z.ZodArray<z.ZodString, "many">;
|
|
3448
|
+
}, "strip", z.ZodTypeAny, {
|
|
3449
|
+
requires: string[];
|
|
3450
|
+
provides: string[];
|
|
3451
|
+
}, {
|
|
3452
|
+
requires: string[];
|
|
3453
|
+
provides: string[];
|
|
3454
|
+
}>>;
|
|
3455
|
+
entityBindingDescription: z.ZodOptional<z.ZodString>;
|
|
3456
|
+
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
3400
3457
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3401
3458
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
3402
3459
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
@@ -3925,6 +3982,13 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3925
3982
|
}[] | undefined;
|
|
3926
3983
|
linkedEntity?: string | undefined;
|
|
3927
3984
|
description_visual_prompt?: string | undefined;
|
|
3985
|
+
entityRebindable?: boolean | undefined;
|
|
3986
|
+
entityContract?: {
|
|
3987
|
+
requires: string[];
|
|
3988
|
+
provides: string[];
|
|
3989
|
+
} | undefined;
|
|
3990
|
+
entityBindingDescription?: string | undefined;
|
|
3991
|
+
entityBindingSynonyms?: string | undefined;
|
|
3928
3992
|
requiredFields?: {
|
|
3929
3993
|
type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
|
|
3930
3994
|
name: string;
|
|
@@ -4056,6 +4120,13 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
4056
4120
|
}[] | undefined;
|
|
4057
4121
|
linkedEntity?: string | undefined;
|
|
4058
4122
|
description_visual_prompt?: string | undefined;
|
|
4123
|
+
entityRebindable?: boolean | undefined;
|
|
4124
|
+
entityContract?: {
|
|
4125
|
+
requires: string[];
|
|
4126
|
+
provides: string[];
|
|
4127
|
+
} | undefined;
|
|
4128
|
+
entityBindingDescription?: string | undefined;
|
|
4129
|
+
entityBindingSynonyms?: string | undefined;
|
|
4059
4130
|
requiredFields?: {
|
|
4060
4131
|
type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
|
|
4061
4132
|
name: string;
|
|
@@ -4172,6 +4243,19 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4172
4243
|
description: z.ZodOptional<z.ZodString>;
|
|
4173
4244
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
4174
4245
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
4246
|
+
entityRebindable: z.ZodOptional<z.ZodBoolean>;
|
|
4247
|
+
entityContract: z.ZodOptional<z.ZodObject<{
|
|
4248
|
+
requires: z.ZodArray<z.ZodString, "many">;
|
|
4249
|
+
provides: z.ZodArray<z.ZodString, "many">;
|
|
4250
|
+
}, "strip", z.ZodTypeAny, {
|
|
4251
|
+
requires: string[];
|
|
4252
|
+
provides: string[];
|
|
4253
|
+
}, {
|
|
4254
|
+
requires: string[];
|
|
4255
|
+
provides: string[];
|
|
4256
|
+
}>>;
|
|
4257
|
+
entityBindingDescription: z.ZodOptional<z.ZodString>;
|
|
4258
|
+
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
4175
4259
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4176
4260
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
4177
4261
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
@@ -4700,6 +4784,13 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4700
4784
|
}[] | undefined;
|
|
4701
4785
|
linkedEntity?: string | undefined;
|
|
4702
4786
|
description_visual_prompt?: string | undefined;
|
|
4787
|
+
entityRebindable?: boolean | undefined;
|
|
4788
|
+
entityContract?: {
|
|
4789
|
+
requires: string[];
|
|
4790
|
+
provides: string[];
|
|
4791
|
+
} | undefined;
|
|
4792
|
+
entityBindingDescription?: string | undefined;
|
|
4793
|
+
entityBindingSynonyms?: string | undefined;
|
|
4703
4794
|
requiredFields?: {
|
|
4704
4795
|
type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
|
|
4705
4796
|
name: string;
|
|
@@ -4831,6 +4922,13 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4831
4922
|
}[] | undefined;
|
|
4832
4923
|
linkedEntity?: string | undefined;
|
|
4833
4924
|
description_visual_prompt?: string | undefined;
|
|
4925
|
+
entityRebindable?: boolean | undefined;
|
|
4926
|
+
entityContract?: {
|
|
4927
|
+
requires: string[];
|
|
4928
|
+
provides: string[];
|
|
4929
|
+
} | undefined;
|
|
4930
|
+
entityBindingDescription?: string | undefined;
|
|
4931
|
+
entityBindingSynonyms?: string | undefined;
|
|
4834
4932
|
requiredFields?: {
|
|
4835
4933
|
type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
|
|
4836
4934
|
name: string;
|
|
@@ -5017,6 +5115,19 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5017
5115
|
description: z.ZodOptional<z.ZodString>;
|
|
5018
5116
|
description_visual_prompt: z.ZodOptional<z.ZodString>;
|
|
5019
5117
|
category: z.ZodOptional<z.ZodEnum<["lifecycle", "temporal", "validation", "notification", "integration", "interaction", "agent", "game-core", "game-character", "game-ai", "game-combat", "game-items", "game-cards", "game-board", "game-puzzle"]>>;
|
|
5118
|
+
entityRebindable: z.ZodOptional<z.ZodBoolean>;
|
|
5119
|
+
entityContract: z.ZodOptional<z.ZodObject<{
|
|
5120
|
+
requires: z.ZodArray<z.ZodString, "many">;
|
|
5121
|
+
provides: z.ZodArray<z.ZodString, "many">;
|
|
5122
|
+
}, "strip", z.ZodTypeAny, {
|
|
5123
|
+
requires: string[];
|
|
5124
|
+
provides: string[];
|
|
5125
|
+
}, {
|
|
5126
|
+
requires: string[];
|
|
5127
|
+
provides: string[];
|
|
5128
|
+
}>>;
|
|
5129
|
+
entityBindingDescription: z.ZodOptional<z.ZodString>;
|
|
5130
|
+
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
5020
5131
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5021
5132
|
scope: z.ZodEnum<["instance", "collection"]>;
|
|
5022
5133
|
linkedEntity: z.ZodOptional<z.ZodString>;
|
|
@@ -5545,6 +5656,13 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5545
5656
|
}[] | undefined;
|
|
5546
5657
|
linkedEntity?: string | undefined;
|
|
5547
5658
|
description_visual_prompt?: string | undefined;
|
|
5659
|
+
entityRebindable?: boolean | undefined;
|
|
5660
|
+
entityContract?: {
|
|
5661
|
+
requires: string[];
|
|
5662
|
+
provides: string[];
|
|
5663
|
+
} | undefined;
|
|
5664
|
+
entityBindingDescription?: string | undefined;
|
|
5665
|
+
entityBindingSynonyms?: string | undefined;
|
|
5548
5666
|
requiredFields?: {
|
|
5549
5667
|
type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
|
|
5550
5668
|
name: string;
|
|
@@ -5676,6 +5794,13 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5676
5794
|
}[] | undefined;
|
|
5677
5795
|
linkedEntity?: string | undefined;
|
|
5678
5796
|
description_visual_prompt?: string | undefined;
|
|
5797
|
+
entityRebindable?: boolean | undefined;
|
|
5798
|
+
entityContract?: {
|
|
5799
|
+
requires: string[];
|
|
5800
|
+
provides: string[];
|
|
5801
|
+
} | undefined;
|
|
5802
|
+
entityBindingDescription?: string | undefined;
|
|
5803
|
+
entityBindingSynonyms?: string | undefined;
|
|
5679
5804
|
requiredFields?: {
|
|
5680
5805
|
type: "string" | "number" | "boolean" | "object" | "date" | "timestamp" | "datetime" | "array" | "enum";
|
|
5681
5806
|
name: string;
|
|
@@ -5770,4 +5895,4 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5770
5895
|
} | undefined;
|
|
5771
5896
|
}>]>;
|
|
5772
5897
|
|
|
5773
|
-
export { type
|
|
5898
|
+
export { type FetchOptions as $, type AgentEffect as A, type EntityData as B, type CallServiceConfig as C, type DeclaredTraitConfig as D, ENTITY_ROLES as E, type EntityField as F, type EntityFieldContract as G, EntityFieldContractSchema as H, type EntityFieldInput as I, EntityFieldSchema as J, type EntityPersistence as K, EntityPersistenceSchema as L, type EntityRole as M, EntityRoleSchema as N, type EntityRow as O, EntitySchema as P, type EnumEntityField as Q, type EvaluateConfig as R, type EvaluateEffect as S, type Event as T, type EventInput as U, type EventPayloadField as V, EventPayloadFieldSchema as W, EventSchema as X, type EventScope as Y, EventScopeSchema as Z, type FetchEffect as _, type AnimationDef as a, type ServiceParamsValue as a$, type FetchResult as a0, type Field as a1, type FieldFormat as a2, FieldFormatSchema as a3, FieldSchema as a4, type FieldType as a5, FieldTypeSchema as a6, type FieldValue as a7, type ForwardConfig as a8, type ForwardEffect as a9, type PresentationType as aA, type RefEffect as aB, type RelationConfig as aC, RelationConfigSchema as aD, type RelationEntityField as aE, type RenderItemLambda as aF, type RenderUIConfig as aG, type RenderUIEffect as aH, type RenderUINode as aI, type RequiredField as aJ, RequiredFieldSchema as aK, type ResolvedAsset as aL, type ResolvedAssetInput as aM, ResolvedAssetSchema as aN, type ResolvedPatternProps as aO, type RestAuthConfig as aP, RestAuthConfigSchema as aQ, type RestServiceDef as aR, RestServiceDefSchema as aS, SERVICE_TYPES as aT, type ScalarEntityField as aU, type SemanticAssetRef as aV, type SemanticAssetRefInput as aW, SemanticAssetRefSchema as aX, type ServiceDefinition as aY, ServiceDefinitionSchema as aZ, type ServiceParams as a_, GAME_TYPES as aa, type GameType as ab, GameTypeSchema as ac, type Guard as ad, type GuardInput as ae, GuardSchema as af, type ListenSource as ag, ListenSourceSchema as ah, type LogEffect as ai, type McpServiceDef as aj, McpServiceDefSchema as ak, type NavigateEffect as al, type NnConfig as am, type NnLayer as an, type NotifyEffect as ao, type OrbitalEntity as ap, type OrbitalEntityInput as aq, OrbitalEntitySchema as ar, type OrbitalTraitRef as as, OrbitalTraitRefSchema as at, type OsEffect as au, type PayloadField as av, PayloadFieldSchema as aw, type PersistData as ax, type PersistEffect as ay, type PersistEmitConfig as az, type AnimationDefInput as b, createAssetKey as b$, type ServiceRef as b0, type ServiceRefObject as b1, ServiceRefObjectSchema as b2, ServiceRefSchema as b3, ServiceRefStringSchema as b4, type ServiceType as b5, ServiceTypeSchema as b6, type SetEffect as b7, type SocketEvents as b8, SocketEventsSchema as b9, type TraitEventListener as bA, TraitEventListenerSchema as bB, type TraitInput as bC, type TraitRef as bD, TraitRefSchema as bE, type TraitReference as bF, type TraitReferenceInput as bG, TraitReferenceSchema as bH, TraitSchema as bI, type TraitScope as bJ, type TraitTick as bK, TraitTickSchema as bL, type TraitUIBinding as bM, type Transition as bN, type TransitionInput as bO, TransitionSchema as bP, type TypedEffect as bQ, type UISlot as bR, UISlotSchema as bS, UI_SLOTS as bT, VISUAL_STYLES as bU, type VisualStyle as bV, VisualStyleSchema as bW, type WatchEffect as bX, type WatchOptions as bY, atomic as bZ, callService as b_, type SocketServiceDef as ba, SocketServiceDefSchema as bb, type SpawnEffect as bc, type State as bd, type StateInput as be, type StateMachine as bf, type StateMachineInput as bg, StateMachineSchema as bh, StateSchema as bi, type SwapEffect as bj, type TrainConfig as bk, type TrainEffect as bl, type Trait as bm, type TraitCategory as bn, TraitCategorySchema as bo, type TraitConfig as bp, type TraitConfigObject as bq, TraitConfigSchema as br, type TraitConfigValue as bs, TraitConfigValueSchema as bt, type TraitDataEntity as bu, TraitDataEntitySchema as bv, type TraitEntityField as bw, TraitEntityFieldSchema as bx, type TraitEventContract as by, TraitEventContractSchema as bz, AnimationDefSchema as c, deref as c0, deriveCollection as c1, despawn as c2, doEffects as c3, emit as c4, findService as c5, getDefaultAnimationsForRole as c6, getServiceNames as c7, getTraitConfig as c8, getTraitName as c9, hasService as ca, isCircuitEvent as cb, isEffect as cc, isInlineTrait as cd, isMcpService as ce, isRestService as cf, isRuntimeEntity as cg, isSExprEffect as ch, isServiceReference as ci, isServiceReferenceObject as cj, isSingletonEntity as ck, isSocketService as cl, navigate as cm, normalizeTraitRef as cn, notify as co, parseAssetKey as cp, parseServiceRef as cq, persist as cr, ref as cs, renderUI as ct, set as cu, spawn as cv, swap as cw, validateAssetAnimations as cx, watch as cy, type ArrayEntityField as d, type AssetMap as e, type AssetMapInput as f, AssetMapSchema as g, type AssetMapping as h, type AssetMappingInput as i, AssetMappingSchema as j, type AtomicEffect as k, type CallServiceEffect as l, type CheckpointLoadEffect as m, type CheckpointSaveEffect as n, type ConfigFieldDeclaration as o, ConfigFieldDeclarationSchema as p, DeclaredTraitConfigSchema as q, type DerefEffect as r, type DespawnEffect as s, type DoEffect as t, type Effect as u, type EffectInput as v, EffectSchema as w, type EmitConfig as x, type EmitEffect as y, type Entity as z };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { aL as OrbitalSchema, az as Orbital, aS as Page, F as DomainContext, aZ as PageTraitRef } from '../schema-
|
|
2
|
-
export { A as AGENT_DOMAIN_CATEGORIES, a as ALLOWED_CUSTOM_COMPONENTS, b as AgentDomainCategory, c as AgentDomainCategorySchema, d as AllowedCustomComponent, C as ColorSlice, e as ColorSliceSchema, f as ColorTokens, g as ColorTokensSchema, h as ComputedEventContract, i as ComputedEventContractSchema, j as ComputedEventListener, k as ComputedEventListenerSchema, l as CustomPatternDefinition, m as CustomPatternDefinitionInput, n as CustomPatternDefinitionSchema, o as CustomPatternMap, p as CustomPatternMapInput, q as CustomPatternMapSchema, D as DensitySlice, r as DensitySliceSchema, s as DensityTokens, t as DensityTokensSchema, u as DesignPreferences, v as DesignPreferencesInput, w as DesignPreferencesSchema, x as DesignTokens, y as DesignTokensInput, z as DesignTokensSchema, B as DomainCategory, E as DomainCategorySchema, G as DomainContextInput, H as DomainContextSchema, I as DomainVocabulary, J as DomainVocabularySchema, K as ElevationSlice, L as ElevationSliceSchema, M as ElevationTokens, N as ElevationTokensSchema, O as EntityCall, P as EntityCallSchema, Q as EntityRef, R as EntityRefSchema, S as EntityRefStringSchema, T as EntitySemanticRole, U as EntitySemanticRoleSchema, V as EventListener, W as EventListenerSchema, X as EventSemanticRole, Y as EventSemanticRoleSchema, Z as EventSource, _ as EventSourceSchema, $ as GameSubCategory, a0 as GameSubCategorySchema, a1 as GeometrySlice, a2 as GeometrySliceSchema, a3 as GeometryTokens, a4 as GeometryTokensSchema, a5 as IconFamily, a6 as IconFamilySchema, a7 as IconographySlice, a8 as IconographySliceSchema, a9 as IconographyTokens, aa as IconographyTokensSchema, ab as IllustrationSlice, ac as IllustrationSliceSchema, ad as IllustrationStyle, ae as IllustrationStyleSchema, af as IllustrationTokens, ag as IllustrationTokensSchema, ah as MotionDurationKey, ai as MotionDurationKeySchema, aj as MotionDurationPalette, ak as MotionDurationPaletteSchema, al as MotionEasingKey, am as MotionEasingKeySchema, an as MotionEasingPalette, ao as MotionEasingPaletteSchema, ap as MotionIntent, aq as MotionIntentMap, ar as MotionIntentMapSchema, as as MotionIntentSchema, at as MotionSlice, au as MotionSliceSchema, av as MotionTokens, aw as MotionTokensSchema, ax as NodeClassification, ay as NodeClassificationSchema, aA as OrbitalConfig, aB as OrbitalConfigInput, aC as OrbitalConfigSchema, aD as OrbitalDefinition, aE as OrbitalDefinitionSchema, aF as OrbitalInput, aG as OrbitalPage, aH as OrbitalPageInput, aI as OrbitalPageSchema, aJ as OrbitalPageStrictInput, aK as OrbitalPageStrictSchema, aN as OrbitalSchemaInput, aO as OrbitalSchemaSchema, aP as OrbitalSchemaWithTraits, aQ as OrbitalUnit, aR as OrbitalUnitSchema, aM as OrbitalZodSchema, aT as PageRef, aU as PageRefObject, aV as PageRefObjectSchema, aW as PageRefSchema, aX as PageRefStringSchema, aY as PageSchema, a_ as PageTraitRefSchema, a$ as RelatedLink, b0 as RelatedLinkSchema, b1 as SkinSpec, b2 as SkinSpecSchema, b3 as SpacingScale, b4 as SpacingScaleSchema, b5 as StateSemanticRole, b6 as StateSemanticRoleSchema, b7 as SuggestedGuard, b8 as SuggestedGuardSchema, b9 as ThemeDefinition, ba as ThemeDefinitionSchema, bb as ThemeRef, bc as ThemeRefSchema, bd as ThemeRefStringSchema, be as ThemeTokens, bf as ThemeTokensSchema, bg as ThemeVariant, bh as ThemeVariantSchema, bi as TypeIntent, bj as TypeIntentMap, bk as TypeIntentMapSchema, bl as TypeIntentSchema, bm as TypeScale, bn as TypeScaleEntry, bo as TypeScaleEntrySchema, bp as TypeScaleSchema, bq as TypeScaleTokens, br as TypeScaleTokensSchema, bs as TypeSizeKey, bt as TypeSizeKeySchema, bu as TypeSlice, bv as TypeSliceSchema, bw as TypeSlot, bx as TypeSlotSchema, by as TypeWeight, bz as TypeWeightSchema, bA as UXHints, bB as UXHintsSchema, bC as UseDeclaration, bD as UseDeclarationSchema, bE as UserPersona, bF as UserPersonaInput, bG as UserPersonaSchema, aD as ValidatedOrbital, bH as ViewType, bI as ViewTypeSchema, bJ as isEntityCall, bK as isEntityReference, bL as isEntityReferenceAny, bM as isImportedTraitRef, bN as isOrbitalDefinition, bO as isPageReference, bP as isPageReferenceObject, bQ as isPageReferenceString, bR as isThemeReference, bS as parseEntityRef, bT as parseImportedTraitRef, bU as parseOrbitalSchema, bV as parsePageRef, bW as safeParseOrbitalSchema } from '../schema-
|
|
3
|
-
import {
|
|
4
|
-
export { A as AgentEffect, a as AnimationDef, b as AnimationDefInput, c as AnimationDefSchema, d as ArrayEntityField, e as AssetMap, f as AssetMapInput, g as AssetMapSchema, h as AssetMapping, i as AssetMappingInput, j as AssetMappingSchema, k as AtomicEffect, C as CallServiceConfig, l as CallServiceEffect, m as CheckpointLoadEffect, n as CheckpointSaveEffect, o as ConfigFieldDeclaration, p as ConfigFieldDeclarationSchema, q as DeclaredTraitConfigSchema, r as DerefEffect, s as DespawnEffect, t as DoEffect, E as ENTITY_ROLES, u as Effect, v as EffectInput, w as EffectSchema, x as EmitConfig, y as EmitEffect, B as EntityData, G as
|
|
1
|
+
import { aL as OrbitalSchema, az as Orbital, aS as Page, F as DomainContext, aZ as PageTraitRef } from '../schema-B6gRJD4J.js';
|
|
2
|
+
export { A as AGENT_DOMAIN_CATEGORIES, a as ALLOWED_CUSTOM_COMPONENTS, b as AgentDomainCategory, c as AgentDomainCategorySchema, d as AllowedCustomComponent, C as ColorSlice, e as ColorSliceSchema, f as ColorTokens, g as ColorTokensSchema, h as ComputedEventContract, i as ComputedEventContractSchema, j as ComputedEventListener, k as ComputedEventListenerSchema, l as CustomPatternDefinition, m as CustomPatternDefinitionInput, n as CustomPatternDefinitionSchema, o as CustomPatternMap, p as CustomPatternMapInput, q as CustomPatternMapSchema, D as DensitySlice, r as DensitySliceSchema, s as DensityTokens, t as DensityTokensSchema, u as DesignPreferences, v as DesignPreferencesInput, w as DesignPreferencesSchema, x as DesignTokens, y as DesignTokensInput, z as DesignTokensSchema, B as DomainCategory, E as DomainCategorySchema, G as DomainContextInput, H as DomainContextSchema, I as DomainVocabulary, J as DomainVocabularySchema, K as ElevationSlice, L as ElevationSliceSchema, M as ElevationTokens, N as ElevationTokensSchema, O as EntityCall, P as EntityCallSchema, Q as EntityRef, R as EntityRefSchema, S as EntityRefStringSchema, T as EntitySemanticRole, U as EntitySemanticRoleSchema, V as EventListener, W as EventListenerSchema, X as EventSemanticRole, Y as EventSemanticRoleSchema, Z as EventSource, _ as EventSourceSchema, $ as GameSubCategory, a0 as GameSubCategorySchema, a1 as GeometrySlice, a2 as GeometrySliceSchema, a3 as GeometryTokens, a4 as GeometryTokensSchema, a5 as IconFamily, a6 as IconFamilySchema, a7 as IconographySlice, a8 as IconographySliceSchema, a9 as IconographyTokens, aa as IconographyTokensSchema, ab as IllustrationSlice, ac as IllustrationSliceSchema, ad as IllustrationStyle, ae as IllustrationStyleSchema, af as IllustrationTokens, ag as IllustrationTokensSchema, ah as MotionDurationKey, ai as MotionDurationKeySchema, aj as MotionDurationPalette, ak as MotionDurationPaletteSchema, al as MotionEasingKey, am as MotionEasingKeySchema, an as MotionEasingPalette, ao as MotionEasingPaletteSchema, ap as MotionIntent, aq as MotionIntentMap, ar as MotionIntentMapSchema, as as MotionIntentSchema, at as MotionSlice, au as MotionSliceSchema, av as MotionTokens, aw as MotionTokensSchema, ax as NodeClassification, ay as NodeClassificationSchema, aA as OrbitalConfig, aB as OrbitalConfigInput, aC as OrbitalConfigSchema, aD as OrbitalDefinition, aE as OrbitalDefinitionSchema, aF as OrbitalInput, aG as OrbitalPage, aH as OrbitalPageInput, aI as OrbitalPageSchema, aJ as OrbitalPageStrictInput, aK as OrbitalPageStrictSchema, aN as OrbitalSchemaInput, aO as OrbitalSchemaSchema, aP as OrbitalSchemaWithTraits, aQ as OrbitalUnit, aR as OrbitalUnitSchema, aM as OrbitalZodSchema, aT as PageRef, aU as PageRefObject, aV as PageRefObjectSchema, aW as PageRefSchema, aX as PageRefStringSchema, aY as PageSchema, a_ as PageTraitRefSchema, a$ as RelatedLink, b0 as RelatedLinkSchema, b1 as SkinSpec, b2 as SkinSpecSchema, b3 as SpacingScale, b4 as SpacingScaleSchema, b5 as StateSemanticRole, b6 as StateSemanticRoleSchema, b7 as SuggestedGuard, b8 as SuggestedGuardSchema, b9 as ThemeDefinition, ba as ThemeDefinitionSchema, bb as ThemeRef, bc as ThemeRefSchema, bd as ThemeRefStringSchema, be as ThemeTokens, bf as ThemeTokensSchema, bg as ThemeVariant, bh as ThemeVariantSchema, bi as TypeIntent, bj as TypeIntentMap, bk as TypeIntentMapSchema, bl as TypeIntentSchema, bm as TypeScale, bn as TypeScaleEntry, bo as TypeScaleEntrySchema, bp as TypeScaleSchema, bq as TypeScaleTokens, br as TypeScaleTokensSchema, bs as TypeSizeKey, bt as TypeSizeKeySchema, bu as TypeSlice, bv as TypeSliceSchema, bw as TypeSlot, bx as TypeSlotSchema, by as TypeWeight, bz as TypeWeightSchema, bA as UXHints, bB as UXHintsSchema, bC as UseDeclaration, bD as UseDeclarationSchema, bE as UserPersona, bF as UserPersonaInput, bG as UserPersonaSchema, aD as ValidatedOrbital, bH as ViewType, bI as ViewTypeSchema, bJ as isEntityCall, bK as isEntityReference, bL as isEntityReferenceAny, bM as isImportedTraitRef, bN as isOrbitalDefinition, bO as isPageReference, bP as isPageReferenceObject, bQ as isPageReferenceString, bR as isThemeReference, bS as parseEntityRef, bT as parseImportedTraitRef, bU as parseOrbitalSchema, bV as parsePageRef, bW as safeParseOrbitalSchema } from '../schema-B6gRJD4J.js';
|
|
3
|
+
import { a_ as ServiceParams, bm as Trait, z as Entity, O as EntityRow, a7 as FieldValue, D as DeclaredTraitConfig, bp as TraitConfig, F as EntityField, K as EntityPersistence, bn as TraitCategory, bJ as TraitScope } from '../trait-DvvM-71c.js';
|
|
4
|
+
export { A as AgentEffect, a as AnimationDef, b as AnimationDefInput, c as AnimationDefSchema, d as ArrayEntityField, e as AssetMap, f as AssetMapInput, g as AssetMapSchema, h as AssetMapping, i as AssetMappingInput, j as AssetMappingSchema, k as AtomicEffect, C as CallServiceConfig, l as CallServiceEffect, m as CheckpointLoadEffect, n as CheckpointSaveEffect, o as ConfigFieldDeclaration, p as ConfigFieldDeclarationSchema, q as DeclaredTraitConfigSchema, r as DerefEffect, s as DespawnEffect, t as DoEffect, E as ENTITY_ROLES, u as Effect, v as EffectInput, w as EffectSchema, x as EmitConfig, y as EmitEffect, B as EntityData, G as EntityFieldContract, H as EntityFieldContractSchema, I as EntityFieldInput, J as EntityFieldSchema, L as EntityPersistenceSchema, M as EntityRole, N as EntityRoleSchema, P as EntitySchema, Q as EnumEntityField, R as EvaluateConfig, S as EvaluateEffect, T as Event, U as EventInput, V as EventPayloadField, W as EventPayloadFieldSchema, X as EventSchema, Y as EventScope, Z as EventScopeSchema, _ as FetchEffect, $ as FetchOptions, a0 as FetchResult, a1 as Field, a2 as FieldFormat, a3 as FieldFormatSchema, a4 as FieldSchema, a5 as FieldType, a6 as FieldTypeSchema, a8 as ForwardConfig, a9 as ForwardEffect, aa as GAME_TYPES, ab as GameType, ac as GameTypeSchema, ad as Guard, ae as GuardInput, af as GuardSchema, ag as ListenSource, ah as ListenSourceSchema, ai as LogEffect, aj as McpServiceDef, ak as McpServiceDefSchema, al as NavigateEffect, am as NnConfig, an as NnLayer, ao as NotifyEffect, ap as OrbitalEntity, aq as OrbitalEntityInput, ar as OrbitalEntitySchema, as as OrbitalTraitRef, at as OrbitalTraitRefSchema, au as OsEffect, av as PayloadField, aw as PayloadFieldSchema, ax as PersistData, ay as PersistEffect, az as PersistEmitConfig, aA as PresentationType, aB as RefEffect, aC as RelationConfig, aD as RelationConfigSchema, aE as RelationEntityField, aF as RenderItemLambda, aG as RenderUIConfig, aH as RenderUIEffect, aI as RenderUINode, aJ as RequiredField, aK as RequiredFieldSchema, aL as ResolvedAsset, aM as ResolvedAssetInput, aN as ResolvedAssetSchema, aO as ResolvedPatternProps, aP as RestAuthConfig, aQ as RestAuthConfigSchema, aR as RestServiceDef, aS as RestServiceDefSchema, aT as SERVICE_TYPES, aU as ScalarEntityField, aV as SemanticAssetRef, aW as SemanticAssetRefInput, aX as SemanticAssetRefSchema, aY as ServiceDefinition, aZ as ServiceDefinitionSchema, a$ as ServiceParamsValue, b0 as ServiceRef, b1 as ServiceRefObject, b2 as ServiceRefObjectSchema, b3 as ServiceRefSchema, b4 as ServiceRefStringSchema, b5 as ServiceType, b6 as ServiceTypeSchema, b7 as SetEffect, b8 as SocketEvents, b9 as SocketEventsSchema, ba as SocketServiceDef, bb as SocketServiceDefSchema, bc as SpawnEffect, bd as State, be as StateInput, bf as StateMachine, bg as StateMachineInput, bh as StateMachineSchema, bi as StateSchema, bj as SwapEffect, bk as TrainConfig, bl as TrainEffect, bo as TraitCategorySchema, bq as TraitConfigObject, br as TraitConfigSchema, bs as TraitConfigValue, bt as TraitConfigValueSchema, bu as TraitDataEntity, bv as TraitDataEntitySchema, bw as TraitEntityField, bx as TraitEntityFieldSchema, by as TraitEventContract, bz as TraitEventContractSchema, bA as TraitEventListener, bB as TraitEventListenerSchema, bC as TraitInput, bD as TraitRef, bE as TraitRefSchema, bF as TraitReference, bG as TraitReferenceInput, bH as TraitReferenceSchema, bI as TraitSchema, bK as TraitTick, bL as TraitTickSchema, bM as TraitUIBinding, bN as Transition, bO as TransitionInput, bP as TransitionSchema, bQ as TypedEffect, bR as UISlot, bS as UISlotSchema, bT as UI_SLOTS, bU as VISUAL_STYLES, bV as VisualStyle, bW as VisualStyleSchema, bX as WatchEffect, bY as WatchOptions, bZ as atomic, b_ as callService, b$ as createAssetKey, c0 as deref, c1 as deriveCollection, c2 as despawn, c3 as doEffects, c4 as emit, c5 as findService, c6 as getDefaultAnimationsForRole, c7 as getServiceNames, c8 as getTraitConfig, c9 as getTraitName, ca as hasService, cb as isCircuitEvent, cc as isEffect, cd as isInlineTrait, ce as isMcpService, cf as isRestService, cg as isRuntimeEntity, ch as isSExprEffect, ci as isServiceReference, cj as isServiceReferenceObject, ck as isSingletonEntity, cl as isSocketService, cm as navigate, cn as normalizeTraitRef, co as notify, cp as parseAssetKey, cq as parseServiceRef, cr as persist, cs as ref, ct as renderUI, cu as set, cv as spawn, cw as swap, cx as validateAssetAnimations, cy as watch } from '../trait-DvvM-71c.js';
|
|
5
5
|
import { c as EventPayloadValue, b as EventPayload, L as LogMeta, S as SExpr } from '../expression-BVRFm0sV.js';
|
|
6
6
|
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-BVRFm0sV.js';
|
|
7
7
|
import { z } from 'zod';
|
package/dist/types/index.js
CHANGED
|
@@ -650,6 +650,10 @@ var TraitReferenceSchema = z.object({
|
|
|
650
650
|
}
|
|
651
651
|
);
|
|
652
652
|
var TraitScopeSchema = z.enum(["instance", "collection"]);
|
|
653
|
+
var EntityFieldContractSchema = z.object({
|
|
654
|
+
requires: z.array(z.string()),
|
|
655
|
+
provides: z.array(z.string())
|
|
656
|
+
});
|
|
653
657
|
var SourceBehaviorMetadataSchema = z.object({
|
|
654
658
|
behavior: z.string().min(1),
|
|
655
659
|
alias: z.string().min(1),
|
|
@@ -660,6 +664,10 @@ var TraitSchema = z.object({
|
|
|
660
664
|
description: z.string().optional(),
|
|
661
665
|
description_visual_prompt: z.string().optional(),
|
|
662
666
|
category: TraitCategorySchema.optional(),
|
|
667
|
+
entityRebindable: z.boolean().optional(),
|
|
668
|
+
entityContract: EntityFieldContractSchema.optional(),
|
|
669
|
+
entityBindingDescription: z.string().optional(),
|
|
670
|
+
entityBindingSynonyms: z.string().optional(),
|
|
663
671
|
capabilities: z.array(z.string()).optional(),
|
|
664
672
|
scope: TraitScopeSchema,
|
|
665
673
|
linkedEntity: z.string().optional(),
|
|
@@ -1867,6 +1875,6 @@ function isKnownValidationErrorCode(code) {
|
|
|
1867
1875
|
return code in KNOWN_VALIDATION_ERROR_CODES;
|
|
1868
1876
|
}
|
|
1869
1877
|
|
|
1870
|
-
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, AgentDomainCategorySchema, AnimationDefSchema, AssetMapSchema, AssetMappingSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CORE_BINDINGS, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FieldFormatSchema, FieldSchema, FieldTypeSchema, GAME_TYPES, GameSubCategorySchema, GameTypeSchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PatternTypeSchema, PayloadFieldSchema, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, ResolvedAssetSchema, RestAuthConfigSchema, RestServiceDefSchema, SERVICE_TYPES, SExprAtomSchema, SExprSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SuggestedGuardSchema, ThemeDefinitionSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, atomic, callService, collectBindings, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, deref, deriveCollection, despawn, doEffects, emit, findService, getAllPatternTypes, getArgs, getBindingExamples, getDefaultAnimationsForRole, getInteractionModelForDomain, getOperator, getServiceNames, getTraitConfig, getTraitName, hasService, inferTsType, isBinding, isCircuitEvent, isEffect, isEntityCall, isEntityReference, isEntityReferenceAny, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMcpService, isOrbitalDefinition, isPageReference, isPageReferenceObject, isPageReferenceString, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isServiceReference, isServiceReferenceObject, isSingletonEntity, isSocketService, isThemeReference, isTraitFieldRef, isValidBinding, navigate, normalizeTraitRef, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, ref, renderUI, safeParseOrbitalSchema, set, sexpr, spawn, swap, toBindingRoot, validateAssetAnimations, validateBindingInContext, walkSExpr, watch };
|
|
1878
|
+
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, AgentDomainCategorySchema, AnimationDefSchema, AssetMapSchema, AssetMappingSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CORE_BINDINGS, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FieldFormatSchema, FieldSchema, FieldTypeSchema, GAME_TYPES, GameSubCategorySchema, GameTypeSchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PatternTypeSchema, PayloadFieldSchema, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, ResolvedAssetSchema, RestAuthConfigSchema, RestServiceDefSchema, SERVICE_TYPES, SExprAtomSchema, SExprSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SuggestedGuardSchema, ThemeDefinitionSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, atomic, callService, collectBindings, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, deref, deriveCollection, despawn, doEffects, emit, findService, getAllPatternTypes, getArgs, getBindingExamples, getDefaultAnimationsForRole, getInteractionModelForDomain, getOperator, getServiceNames, getTraitConfig, getTraitName, hasService, inferTsType, isBinding, isCircuitEvent, isEffect, isEntityCall, isEntityReference, isEntityReferenceAny, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMcpService, isOrbitalDefinition, isPageReference, isPageReferenceObject, isPageReferenceString, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isServiceReference, isServiceReferenceObject, isSingletonEntity, isSocketService, isThemeReference, isTraitFieldRef, isValidBinding, navigate, normalizeTraitRef, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, ref, renderUI, safeParseOrbitalSchema, set, sexpr, spawn, swap, toBindingRoot, validateAssetAnimations, validateBindingInContext, walkSExpr, watch };
|
|
1871
1879
|
//# sourceMappingURL=index.js.map
|
|
1872
1880
|
//# sourceMappingURL=index.js.map
|