@almadar/core 5.3.2 → 5.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/domain-language/index.js +15 -0
- package/dist/domain-language/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +19 -1
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +235 -1
- package/dist/types/index.js +19 -1
- package/dist/types/index.js.map +1 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -105,6 +105,49 @@ declare function validateBindingInContext(binding: {
|
|
|
105
105
|
*/
|
|
106
106
|
declare function getBindingExamples(context: BindingContext): string[];
|
|
107
107
|
|
|
108
|
+
/**
|
|
109
|
+
* Binding root classification
|
|
110
|
+
*
|
|
111
|
+
* The prefix of an `@X.path` binding expression identifies which runtime
|
|
112
|
+
* context resolves the rest of the path. This type is the TS-side mirror
|
|
113
|
+
* of `OirBindingRoot` in `orbital-core`'s IR; publishing it from
|
|
114
|
+
* `@almadar/core` lets the codegen, the runtime binding resolver, and
|
|
115
|
+
* the verifier's schema walker all refer to the same narrow union.
|
|
116
|
+
*
|
|
117
|
+
* Distinct from {@link ParsedBinding.root} (which is a plain string): use
|
|
118
|
+
* `BindingRoot` whenever you need exhaustiveness over the known prefixes.
|
|
119
|
+
*
|
|
120
|
+
* - `entity`: `@entity.field` — the trait's linked entity (first row on
|
|
121
|
+
* the client, `getById` result on the server).
|
|
122
|
+
* - `payload`: `@payload.x` — the last event's payload.
|
|
123
|
+
* - `state`: `@state.x` — the state machine's `state` slot (rare;
|
|
124
|
+
* mostly used for guard/effect contexts).
|
|
125
|
+
* - `config`: `@config.x` — the trait ref's merged config from the
|
|
126
|
+
* molecule call site.
|
|
127
|
+
* - `user`: `@user.x` — authenticated user / agent context.
|
|
128
|
+
* - `trait`: `@trait.x` — render-time reference to another trait's
|
|
129
|
+
* mounted view. Resolved by `<TraitFrame>` at runtime, not by the
|
|
130
|
+
* SExpression compiler.
|
|
131
|
+
* - `item`: `@item.x` — iterator variable inside a `map` / repeat
|
|
132
|
+
* pattern.
|
|
133
|
+
* - `now`: `@now` — current timestamp (ISO string).
|
|
134
|
+
* - `computed`: `@computed.x` — evaluator-computed value (Phase 4.5).
|
|
135
|
+
* - `other`: catch-all for unknown prefixes or entity-reference
|
|
136
|
+
* bindings (`@User.name`, `@_item`).
|
|
137
|
+
*
|
|
138
|
+
* @packageDocumentation
|
|
139
|
+
*/
|
|
140
|
+
type BindingRoot = 'entity' | 'payload' | 'state' | 'config' | 'user' | 'trait' | 'item' | 'now' | 'computed' | 'other';
|
|
141
|
+
/** Every known binding root, in a stable order — useful for exhaustiveness checks. */
|
|
142
|
+
declare const BINDING_ROOTS: readonly BindingRoot[];
|
|
143
|
+
/**
|
|
144
|
+
* Narrow a raw binding-root string (e.g. the `root` field of
|
|
145
|
+
* `ParsedBinding` from `./expression.ts`) to a `BindingRoot`. Returns
|
|
146
|
+
* `'other'` for entity-reference roots like `@User.name` or unknown
|
|
147
|
+
* prefixes.
|
|
148
|
+
*/
|
|
149
|
+
declare function toBindingRoot(root: string): BindingRoot;
|
|
150
|
+
|
|
108
151
|
/**
|
|
109
152
|
* Agent Types
|
|
110
153
|
*
|
|
@@ -1101,4 +1144,195 @@ type BusEventListener = (event: BusEvent) => void;
|
|
|
1101
1144
|
/** Returned by `on()` / `once()` to detach a listener. */
|
|
1102
1145
|
type Unsubscribe = () => void;
|
|
1103
1146
|
|
|
1104
|
-
|
|
1147
|
+
/**
|
|
1148
|
+
* Verification Types (framework concept)
|
|
1149
|
+
*
|
|
1150
|
+
* The `window.__orbitalVerification` bridge is the single observation
|
|
1151
|
+
* point Playwright-based verifiers (`orbital-verify`, `runtime-verify`,
|
|
1152
|
+
* `@almadar-io/verify`) use to read runtime state out of a live app.
|
|
1153
|
+
* Its shape was previously duplicated between `@almadar/ui`'s
|
|
1154
|
+
* `verificationRegistry.ts` (producer) and `@almadar-io/verify`'s
|
|
1155
|
+
* `state-bridge.ts` (consumer). Every added field had to be mirrored
|
|
1156
|
+
* by hand; one side drifting silently broke the other.
|
|
1157
|
+
*
|
|
1158
|
+
* Hoisting the wire types into `@almadar/core` closes that gap the same
|
|
1159
|
+
* way {@link BusEvent} closed the UI/runtime event-shape drift. The
|
|
1160
|
+
* registry still owns the state machine, the schedule, and the window
|
|
1161
|
+
* exposure — this module owns only the shapes both sides agree on.
|
|
1162
|
+
*
|
|
1163
|
+
* @packageDocumentation
|
|
1164
|
+
*/
|
|
1165
|
+
|
|
1166
|
+
/**
|
|
1167
|
+
* Outcome of a single verification check. `warn` is non-fatal in the
|
|
1168
|
+
* overall pass/fail tally; `pending` means the check has been registered
|
|
1169
|
+
* but not yet resolved.
|
|
1170
|
+
*/
|
|
1171
|
+
type CheckStatus = "pass" | "fail" | "pending" | "warn";
|
|
1172
|
+
interface VerificationCheck {
|
|
1173
|
+
id: string;
|
|
1174
|
+
label: string;
|
|
1175
|
+
status: CheckStatus;
|
|
1176
|
+
details?: string;
|
|
1177
|
+
/** Timestamp (ms since epoch) when the status last changed. */
|
|
1178
|
+
updatedAt: number;
|
|
1179
|
+
}
|
|
1180
|
+
/**
|
|
1181
|
+
* Trace of a single effect as it ran on a transition. `args` are left
|
|
1182
|
+
* as `unknown[]` because different effect kinds have different argument
|
|
1183
|
+
* shapes; consumers narrow via `type` before inspecting.
|
|
1184
|
+
*/
|
|
1185
|
+
interface EffectTrace {
|
|
1186
|
+
type: string;
|
|
1187
|
+
args: unknown[];
|
|
1188
|
+
status: "executed" | "failed" | "skipped";
|
|
1189
|
+
error?: string;
|
|
1190
|
+
durationMs?: number;
|
|
1191
|
+
}
|
|
1192
|
+
/** What the server returned for a forwarded event. */
|
|
1193
|
+
interface ServerResponseTrace {
|
|
1194
|
+
orbitalName: string;
|
|
1195
|
+
success: boolean;
|
|
1196
|
+
clientEffects: number;
|
|
1197
|
+
dataEntities: Record<string, number>;
|
|
1198
|
+
emittedEvents: string[];
|
|
1199
|
+
error?: string;
|
|
1200
|
+
timestamp: number;
|
|
1201
|
+
}
|
|
1202
|
+
interface TransitionTrace {
|
|
1203
|
+
id: string;
|
|
1204
|
+
traitName: string;
|
|
1205
|
+
from: string;
|
|
1206
|
+
to: string;
|
|
1207
|
+
event: string;
|
|
1208
|
+
guardExpression?: string;
|
|
1209
|
+
guardResult?: boolean;
|
|
1210
|
+
effects: EffectTrace[];
|
|
1211
|
+
/** Populated when the event round-tripped to the server. */
|
|
1212
|
+
serverResponse?: ServerResponseTrace;
|
|
1213
|
+
timestamp: number;
|
|
1214
|
+
}
|
|
1215
|
+
interface BridgeHealth {
|
|
1216
|
+
connected: boolean;
|
|
1217
|
+
eventsForwarded: number;
|
|
1218
|
+
eventsReceived: number;
|
|
1219
|
+
lastError?: string;
|
|
1220
|
+
lastHeartbeat: number;
|
|
1221
|
+
}
|
|
1222
|
+
interface VerificationSummary {
|
|
1223
|
+
totalChecks: number;
|
|
1224
|
+
passed: number;
|
|
1225
|
+
failed: number;
|
|
1226
|
+
warnings: number;
|
|
1227
|
+
pending: number;
|
|
1228
|
+
}
|
|
1229
|
+
/**
|
|
1230
|
+
* Per-trait state snapshot exposed to the verifier so it can assert
|
|
1231
|
+
* that reducer data (populated by fetch/persist transitions) and the
|
|
1232
|
+
* last dispatched payload land in the DOM correctly (VG4/VG6/VG11a/b/c).
|
|
1233
|
+
*
|
|
1234
|
+
* Mirrors what `useTraitStateMachine` / generated trait logic hooks
|
|
1235
|
+
* keep internally, without the verifier having to parse rendered text.
|
|
1236
|
+
*/
|
|
1237
|
+
interface TraitStateSnapshot {
|
|
1238
|
+
/** Trait name as declared in the schema. */
|
|
1239
|
+
traitName: string;
|
|
1240
|
+
/** Current state machine state. */
|
|
1241
|
+
currentState: string;
|
|
1242
|
+
/** Declared state names for this trait (non-empty for healthy refs). */
|
|
1243
|
+
states: string[];
|
|
1244
|
+
/** Declared event keys for this trait (non-empty for healthy refs). */
|
|
1245
|
+
events: string[];
|
|
1246
|
+
/**
|
|
1247
|
+
* Entity data keyed by entity name. Uses {@link EntityRow} — the
|
|
1248
|
+
* canonical persisted-entity shape the server returns and the trait
|
|
1249
|
+
* reducer stores. Consumers that need full field-level types can cast
|
|
1250
|
+
* down to the generated entity (e.g. `data['CartItem'] as CartItem[]`).
|
|
1251
|
+
* Snapshot-on-read; mutating the returned arrays does not affect the
|
|
1252
|
+
* live reducer.
|
|
1253
|
+
*/
|
|
1254
|
+
data: Record<string, EntityRow[]>;
|
|
1255
|
+
/** Payload of the last event the state machine processed, if any. */
|
|
1256
|
+
lastPayload?: EventPayload;
|
|
1257
|
+
/**
|
|
1258
|
+
* Last event the walker (or a UI click) dispatched into this trait.
|
|
1259
|
+
* Used by VG11a to resolve `@payload.X` expected values.
|
|
1260
|
+
*/
|
|
1261
|
+
lastEventDispatched?: {
|
|
1262
|
+
event: string;
|
|
1263
|
+
payload?: EventPayload;
|
|
1264
|
+
source?: BusEventSource;
|
|
1265
|
+
timestamp: number;
|
|
1266
|
+
};
|
|
1267
|
+
/**
|
|
1268
|
+
* Bus events received from the server's `emittedEvents` cascade
|
|
1269
|
+
* since the last user dispatch. VG4 compares the length against the
|
|
1270
|
+
* number of `emit: { success/failure: ... }` entries on the
|
|
1271
|
+
* triggering transition.
|
|
1272
|
+
*/
|
|
1273
|
+
cascadeReceived: Array<{
|
|
1274
|
+
event: string;
|
|
1275
|
+
payload?: EventPayload;
|
|
1276
|
+
timestamp: number;
|
|
1277
|
+
}>;
|
|
1278
|
+
}
|
|
1279
|
+
interface VerificationSnapshot {
|
|
1280
|
+
checks: VerificationCheck[];
|
|
1281
|
+
transitions: TransitionTrace[];
|
|
1282
|
+
bridge: BridgeHealth | null;
|
|
1283
|
+
summary: VerificationSummary;
|
|
1284
|
+
/**
|
|
1285
|
+
* Per-trait reducer snapshots. Empty on older runtimes that predate
|
|
1286
|
+
* the Foundation 1 expansion; non-empty once any trait hook has
|
|
1287
|
+
* registered a snapshot getter.
|
|
1288
|
+
*/
|
|
1289
|
+
traits: TraitStateSnapshot[];
|
|
1290
|
+
}
|
|
1291
|
+
/** Asset load status exposed for canvas-based game verification. */
|
|
1292
|
+
type AssetLoadStatus = "loaded" | "failed" | "pending";
|
|
1293
|
+
/**
|
|
1294
|
+
* Entry recorded on the verification event log. The registry clamps
|
|
1295
|
+
* the log size (see `verificationRegistry`'s internal `MAX_EVENT_LOG`)
|
|
1296
|
+
* so long runs don't grow unbounded.
|
|
1297
|
+
*/
|
|
1298
|
+
interface EventLogEntry {
|
|
1299
|
+
type: string;
|
|
1300
|
+
payload?: EventPayload;
|
|
1301
|
+
timestamp: number;
|
|
1302
|
+
}
|
|
1303
|
+
/**
|
|
1304
|
+
* The object attached to `window.__orbitalVerification`. Every optional
|
|
1305
|
+
* member is wired up by a corresponding `bind*` / `register*` call on
|
|
1306
|
+
* the registry (e.g. `bindEventBus` populates `sendEvent`). Consumers
|
|
1307
|
+
* should null-check before calling — an older bundle might expose only
|
|
1308
|
+
* the core readers.
|
|
1309
|
+
*/
|
|
1310
|
+
interface OrbitalVerificationAPI {
|
|
1311
|
+
getSnapshot: () => VerificationSnapshot;
|
|
1312
|
+
getChecks: () => VerificationCheck[];
|
|
1313
|
+
getTransitions: () => TransitionTrace[];
|
|
1314
|
+
getBridge: () => BridgeHealth | null;
|
|
1315
|
+
getSummary: () => VerificationSummary;
|
|
1316
|
+
/** Wait for a specific event to be processed. Resolves to null on timeout. */
|
|
1317
|
+
waitForTransition: (event: string, timeoutMs?: number) => Promise<TransitionTrace | null>;
|
|
1318
|
+
/**
|
|
1319
|
+
* Send an event into the runtime. Requires {@link bindEventBus} (in
|
|
1320
|
+
* `@almadar/ui`) to have run at least once. Payload typed as
|
|
1321
|
+
* {@link EventPayload} so callers can't slip non-bus-shaped data in.
|
|
1322
|
+
*/
|
|
1323
|
+
sendEvent?: (event: string, payload?: EventPayload) => void;
|
|
1324
|
+
/** Current state name for a given trait, if known. */
|
|
1325
|
+
getTraitState?: (traitName: string) => string | undefined;
|
|
1326
|
+
/** Per-trait reducer snapshots (VG4/VG6/VG11a/b/c). */
|
|
1327
|
+
getTraitSnapshots?: () => TraitStateSnapshot[];
|
|
1328
|
+
/** Canvas frame capture. Populated by game organisms on mount. */
|
|
1329
|
+
captureFrame?: () => string | null;
|
|
1330
|
+
/** Asset-url → load-status map. Populated by game organisms. */
|
|
1331
|
+
assetStatus?: Record<string, AssetLoadStatus>;
|
|
1332
|
+
/** Rolling event bus log. Populated by `bindEventBus`. */
|
|
1333
|
+
eventLog?: EventLogEntry[];
|
|
1334
|
+
/** Clear the event log in place. */
|
|
1335
|
+
clearEventLog?: () => void;
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
export { type AgentCodeSearchResult, type AgentCompactResult, type AgentCompactStrategy, type AgentContext, type AgentGenerateOptions, type AgentMemoryCategory, type AgentMemoryRecord, type AppSummary, type AssetLoadStatus, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, type BindingContext, type BindingRoot, BindingSchema, type BridgeHealth, type BusEvent, type BusEventListener, type BusEventSource, type CategorizedRemovals, type ChangeAuthor, type ChangeSetDocument, type ChangeSummary, type CheckStatus, type ContextExtensions, type CreateFlow, DEFAULT_INTERACTION_MODELS, type DeleteFlow, type EditFlow, type EffectTrace, EntityRow, type EventLogEntry, EventPayload, FieldValue, type GitHubLink, type HistoryMeta, type InteractionModel, type InteractionModelInput, InteractionModelSchema, type LazyService, type ListInteraction, type OrbitalVerificationAPI, type PageContentReduction, PatternTypeSchema, type PersistActionName, type ResolvedEntity, type ResolvedEntityBinding, type ResolvedField, type ResolvedIR, type ResolvedNavigation, type ResolvedPage, type ResolvedPattern, type ResolvedSection, type ResolvedSectionEvent, type ResolvedTrait, type ResolvedTraitBinding, type ResolvedTraitDataEntity, type ResolvedTraitEvent, type ResolvedTraitGuard, type ResolvedTraitListener, type ResolvedTraitState, type ResolvedTraitTick, type ResolvedTraitTransition, type ResolvedTraitUIBinding, SExpr, type SaveOptions, type SaveResult, type SchemaChange, type SemanticChangeKind, type SemanticSchemaChange, type ServerResponseTrace, type ServiceAction, type ServiceActionName, type ServiceContract, type ServiceEvents, type SnapshotDocument, type StatsView, type StoreContract, type StoreFilter, type StoreFilterOp, TraitConfig, type TraitStateSnapshot, type TransitionFrom, type TransitionTrace, type Unsubscribe, type ValidationDocument, type ValidationIssue, type ValidationMeta, type ValidationResults, type VerificationCheck, type VerificationSnapshot, type VerificationSummary, type ViewFlow, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, getAllPatternTypes, getBindingExamples, getInteractionModelForDomain, inferTsType, isResolvedIR, toBindingRoot, validateBindingInContext };
|
package/dist/types/index.js
CHANGED
|
@@ -1240,6 +1240,24 @@ function getBindingExamples(context) {
|
|
|
1240
1240
|
examples.push("@GameConfig.gravity", "@Filter.searchTerm");
|
|
1241
1241
|
return examples;
|
|
1242
1242
|
}
|
|
1243
|
+
|
|
1244
|
+
// src/types/binding.ts
|
|
1245
|
+
var BINDING_ROOTS = [
|
|
1246
|
+
"entity",
|
|
1247
|
+
"payload",
|
|
1248
|
+
"state",
|
|
1249
|
+
"config",
|
|
1250
|
+
"user",
|
|
1251
|
+
"trait",
|
|
1252
|
+
"item",
|
|
1253
|
+
"now",
|
|
1254
|
+
"computed",
|
|
1255
|
+
"other"
|
|
1256
|
+
];
|
|
1257
|
+
var KNOWN_ROOTS = new Set(BINDING_ROOTS.filter((r) => r !== "other"));
|
|
1258
|
+
function toBindingRoot(root) {
|
|
1259
|
+
return KNOWN_ROOTS.has(root) ? root : "other";
|
|
1260
|
+
}
|
|
1243
1261
|
var InteractionModelSchema = z.object({
|
|
1244
1262
|
createFlow: z.enum(["modal", "page", "inline", "none"]),
|
|
1245
1263
|
editFlow: z.enum(["modal", "page", "inline", "none"]),
|
|
@@ -1382,6 +1400,6 @@ function isResolvedIR(ir) {
|
|
|
1382
1400
|
return typeof r.appName === "string" && r.traits instanceof Map && r.pages instanceof Map;
|
|
1383
1401
|
}
|
|
1384
1402
|
|
|
1385
|
-
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, AgentDomainCategorySchema, AnimationDefSchema, AssetMapSchema, AssetMappingSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BindingSchema, CORE_BINDINGS, ComputedEventContractSchema, ComputedEventListenerSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, EntityCallSchema, EntityFieldSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FieldFormatSchema, FieldSchema, FieldTypeSchema, GAME_TYPES, GameSubCategorySchema, GameTypeSchema, GuardSchema, InteractionModelSchema, ListenSourceSchema, McpServiceDefSchema, 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, SocketEventsSchema, SocketServiceDefSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SuggestedGuardSchema, ThemeDefinitionSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TransitionSchema, 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, isMcpService, isOrbitalDefinition, isPageReference, isPageReferenceObject, isPageReferenceString, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isServiceReference, isServiceReferenceObject, isSingletonEntity, isSocketService, isThemeReference, isValidBinding, navigate, normalizeTraitRef, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, ref, renderUI, safeParseOrbitalSchema, set, sexpr, spawn, swap, validateAssetAnimations, validateBindingInContext, walkSExpr, watch };
|
|
1403
|
+
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, AgentDomainCategorySchema, AnimationDefSchema, AssetMapSchema, AssetMappingSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CORE_BINDINGS, ComputedEventContractSchema, ComputedEventListenerSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, EntityCallSchema, EntityFieldSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FieldFormatSchema, FieldSchema, FieldTypeSchema, GAME_TYPES, GameSubCategorySchema, GameTypeSchema, GuardSchema, InteractionModelSchema, ListenSourceSchema, McpServiceDefSchema, 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, SocketEventsSchema, SocketServiceDefSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SuggestedGuardSchema, ThemeDefinitionSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TransitionSchema, 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, isMcpService, isOrbitalDefinition, isPageReference, isPageReferenceObject, isPageReferenceString, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isServiceReference, isServiceReferenceObject, isSingletonEntity, isSocketService, isThemeReference, isValidBinding, navigate, normalizeTraitRef, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, ref, renderUI, safeParseOrbitalSchema, set, sexpr, spawn, swap, toBindingRoot, validateAssetAnimations, validateBindingInContext, walkSExpr, watch };
|
|
1386
1404
|
//# sourceMappingURL=index.js.map
|
|
1387
1405
|
//# sourceMappingURL=index.js.map
|