@almadar/core 10.63.0 → 10.65.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 +3 -3
- package/dist/builders.js.map +1 -1
- package/dist/{effect-CgDrWfKW.d.ts → effect-COsZyQ3w.d.ts} +36 -5
- package/dist/{entityAccess-Dr7XPoi_.d.ts → entityAccess-BrSu-_jI.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/{index-D2rQS1PS.d.ts → index-BRf3dUz-.d.ts} +4 -4
- package/dist/index.d.ts +10 -10
- package/dist/index.js +42 -12
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +80 -14
- package/dist/patterns/index.js +36 -10
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +34 -8
- package/dist/patterns/registry.json +34 -8
- package/dist/{schema-KdqDOMXm.d.ts → schema-BBcQsU1e.d.ts} +16 -3
- package/dist/{trait-CesmHKZ2.d.ts → trait-DjBq4fW8.d.ts} +1 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +6 -2
- package/dist/types/index.js.map +1 -1
- package/dist/{types-mYXAkmBy.d.ts → types-B3z8_OnS.d.ts} +2 -2
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-08-
|
|
3
|
+
"exportedAt": "2026-08-21T17:33:36.142Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -1518,6 +1518,12 @@
|
|
|
1518
1518
|
]
|
|
1519
1519
|
}
|
|
1520
1520
|
},
|
|
1521
|
+
"maxInlineActions": {
|
|
1522
|
+
"types": [
|
|
1523
|
+
"number"
|
|
1524
|
+
],
|
|
1525
|
+
"description": "Max inline action buttons before the rest collapse into a \"⋯\" overflow menu (mirrors DataGrid's maxInlineActions). Omit = all inline."
|
|
1526
|
+
},
|
|
1521
1527
|
"backAction": {
|
|
1522
1528
|
"types": [
|
|
1523
1529
|
"object"
|
|
@@ -4418,8 +4424,9 @@
|
|
|
4418
4424
|
"types": [
|
|
4419
4425
|
"array"
|
|
4420
4426
|
],
|
|
4421
|
-
"description": "Breadcrumb items",
|
|
4422
|
-
"
|
|
4427
|
+
"description": "Breadcrumb items. Omit together with `fromNavStack` to render the orbital-scoped navigation stack instead of an authored trail.",
|
|
4428
|
+
"kind": "event-list",
|
|
4429
|
+
"eventField": "event",
|
|
4423
4430
|
"items": {
|
|
4424
4431
|
"types": [
|
|
4425
4432
|
"object"
|
|
@@ -4467,6 +4474,20 @@
|
|
|
4467
4474
|
]
|
|
4468
4475
|
}
|
|
4469
4476
|
},
|
|
4477
|
+
"fromNavStack": {
|
|
4478
|
+
"types": [
|
|
4479
|
+
"boolean"
|
|
4480
|
+
],
|
|
4481
|
+
"description": "Render the current orbital's navigation stack (NavStackProvider) as the trail: one crumb per visited/declared level, last entry current. The stack is client-session state both execution paths maintain; outside a provider this renders nothing.",
|
|
4482
|
+
"default": false
|
|
4483
|
+
},
|
|
4484
|
+
"itemEvent": {
|
|
4485
|
+
"types": [
|
|
4486
|
+
"string"
|
|
4487
|
+
],
|
|
4488
|
+
"description": "Event emitted when a non-current crumb is clicked, with payload `{ label, href, index }` — the trait handles it with `(navigate ?href)`. Without it, stack crumbs navigate directly.",
|
|
4489
|
+
"kind": "event"
|
|
4490
|
+
},
|
|
4470
4491
|
"separator": {
|
|
4471
4492
|
"types": [
|
|
4472
4493
|
"icon",
|
|
@@ -7555,7 +7576,8 @@
|
|
|
7555
7576
|
],
|
|
7556
7577
|
"description": "When set, renders a small X button on the right of the badge that invokes this handler — turns the badge into a removable chip. Used by the TagInput molecule and other \"list of removable values\" surfaces.",
|
|
7557
7578
|
"kind": "callback",
|
|
7558
|
-
"callbackArgs": []
|
|
7579
|
+
"callbackArgs": [],
|
|
7580
|
+
"default": ""
|
|
7559
7581
|
},
|
|
7560
7582
|
"removeLabel": {
|
|
7561
7583
|
"types": [
|
|
@@ -25345,7 +25367,8 @@
|
|
|
25345
25367
|
],
|
|
25346
25368
|
"description": "Called when the user clicks the remove (×) button",
|
|
25347
25369
|
"kind": "callback",
|
|
25348
|
-
"callbackArgs": []
|
|
25370
|
+
"callbackArgs": [],
|
|
25371
|
+
"default": ""
|
|
25349
25372
|
},
|
|
25350
25373
|
"removable": {
|
|
25351
25374
|
"types": [
|
|
@@ -25388,7 +25411,8 @@
|
|
|
25388
25411
|
"type": "string",
|
|
25389
25412
|
"required": true
|
|
25390
25413
|
}
|
|
25391
|
-
]
|
|
25414
|
+
],
|
|
25415
|
+
"default": ""
|
|
25392
25416
|
}
|
|
25393
25417
|
}
|
|
25394
25418
|
},
|
|
@@ -31810,7 +31834,8 @@
|
|
|
31810
31834
|
],
|
|
31811
31835
|
"description": "Remove handler",
|
|
31812
31836
|
"kind": "callback",
|
|
31813
|
-
"callbackArgs": []
|
|
31837
|
+
"callbackArgs": [],
|
|
31838
|
+
"default": ""
|
|
31814
31839
|
},
|
|
31815
31840
|
"clickEvent": {
|
|
31816
31841
|
"types": [
|
|
@@ -31838,7 +31863,8 @@
|
|
|
31838
31863
|
"type": "number",
|
|
31839
31864
|
"required": true
|
|
31840
31865
|
}
|
|
31841
|
-
]
|
|
31866
|
+
],
|
|
31867
|
+
"default": ""
|
|
31842
31868
|
},
|
|
31843
31869
|
"dropEvent": {
|
|
31844
31870
|
"types": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "1.0.0",
|
|
3
|
-
"exportedAt": "2026-08-
|
|
3
|
+
"exportedAt": "2026-08-21T17:33:36.142Z",
|
|
4
4
|
"patterns": {
|
|
5
5
|
"entity-table": {
|
|
6
6
|
"type": "entity-table",
|
|
@@ -1518,6 +1518,12 @@
|
|
|
1518
1518
|
]
|
|
1519
1519
|
}
|
|
1520
1520
|
},
|
|
1521
|
+
"maxInlineActions": {
|
|
1522
|
+
"types": [
|
|
1523
|
+
"number"
|
|
1524
|
+
],
|
|
1525
|
+
"description": "Max inline action buttons before the rest collapse into a \"⋯\" overflow menu (mirrors DataGrid's maxInlineActions). Omit = all inline."
|
|
1526
|
+
},
|
|
1521
1527
|
"backAction": {
|
|
1522
1528
|
"types": [
|
|
1523
1529
|
"object"
|
|
@@ -4418,8 +4424,9 @@
|
|
|
4418
4424
|
"types": [
|
|
4419
4425
|
"array"
|
|
4420
4426
|
],
|
|
4421
|
-
"description": "Breadcrumb items",
|
|
4422
|
-
"
|
|
4427
|
+
"description": "Breadcrumb items. Omit together with `fromNavStack` to render the orbital-scoped navigation stack instead of an authored trail.",
|
|
4428
|
+
"kind": "event-list",
|
|
4429
|
+
"eventField": "event",
|
|
4423
4430
|
"items": {
|
|
4424
4431
|
"types": [
|
|
4425
4432
|
"object"
|
|
@@ -4467,6 +4474,20 @@
|
|
|
4467
4474
|
]
|
|
4468
4475
|
}
|
|
4469
4476
|
},
|
|
4477
|
+
"fromNavStack": {
|
|
4478
|
+
"types": [
|
|
4479
|
+
"boolean"
|
|
4480
|
+
],
|
|
4481
|
+
"description": "Render the current orbital's navigation stack (NavStackProvider) as the trail: one crumb per visited/declared level, last entry current. The stack is client-session state both execution paths maintain; outside a provider this renders nothing.",
|
|
4482
|
+
"default": false
|
|
4483
|
+
},
|
|
4484
|
+
"itemEvent": {
|
|
4485
|
+
"types": [
|
|
4486
|
+
"string"
|
|
4487
|
+
],
|
|
4488
|
+
"description": "Event emitted when a non-current crumb is clicked, with payload `{ label, href, index }` — the trait handles it with `(navigate ?href)`. Without it, stack crumbs navigate directly.",
|
|
4489
|
+
"kind": "event"
|
|
4490
|
+
},
|
|
4470
4491
|
"separator": {
|
|
4471
4492
|
"types": [
|
|
4472
4493
|
"icon",
|
|
@@ -7555,7 +7576,8 @@
|
|
|
7555
7576
|
],
|
|
7556
7577
|
"description": "When set, renders a small X button on the right of the badge that invokes this handler — turns the badge into a removable chip. Used by the TagInput molecule and other \"list of removable values\" surfaces.",
|
|
7557
7578
|
"kind": "callback",
|
|
7558
|
-
"callbackArgs": []
|
|
7579
|
+
"callbackArgs": [],
|
|
7580
|
+
"default": ""
|
|
7559
7581
|
},
|
|
7560
7582
|
"removeLabel": {
|
|
7561
7583
|
"types": [
|
|
@@ -25345,7 +25367,8 @@
|
|
|
25345
25367
|
],
|
|
25346
25368
|
"description": "Called when the user clicks the remove (×) button",
|
|
25347
25369
|
"kind": "callback",
|
|
25348
|
-
"callbackArgs": []
|
|
25370
|
+
"callbackArgs": [],
|
|
25371
|
+
"default": ""
|
|
25349
25372
|
},
|
|
25350
25373
|
"removable": {
|
|
25351
25374
|
"types": [
|
|
@@ -25388,7 +25411,8 @@
|
|
|
25388
25411
|
"type": "string",
|
|
25389
25412
|
"required": true
|
|
25390
25413
|
}
|
|
25391
|
-
]
|
|
25414
|
+
],
|
|
25415
|
+
"default": ""
|
|
25392
25416
|
}
|
|
25393
25417
|
}
|
|
25394
25418
|
},
|
|
@@ -31810,7 +31834,8 @@
|
|
|
31810
31834
|
],
|
|
31811
31835
|
"description": "Remove handler",
|
|
31812
31836
|
"kind": "callback",
|
|
31813
|
-
"callbackArgs": []
|
|
31837
|
+
"callbackArgs": [],
|
|
31838
|
+
"default": ""
|
|
31814
31839
|
},
|
|
31815
31840
|
"clickEvent": {
|
|
31816
31841
|
"types": [
|
|
@@ -31838,7 +31863,8 @@
|
|
|
31838
31863
|
"type": "number",
|
|
31839
31864
|
"required": true
|
|
31840
31865
|
}
|
|
31841
|
-
]
|
|
31866
|
+
],
|
|
31867
|
+
"default": ""
|
|
31842
31868
|
},
|
|
31843
31869
|
"dropEvent": {
|
|
31844
31870
|
"types": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-
|
|
1
|
+
import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-DjBq4fW8.js';
|
|
2
2
|
import { J as JsonValue, E as Expression, S as SExpr, R as RuntimeValue } from './expression-Fk8bQWef.js';
|
|
3
|
-
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, g as ServiceDefinition, I as IdentityLedger } from './effect-
|
|
3
|
+
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, g as ServiceDefinition, I as IdentityLedger } from './effect-COsZyQ3w.js';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -9436,6 +9436,19 @@ interface NavItem {
|
|
|
9436
9436
|
badge?: string;
|
|
9437
9437
|
children?: JsonValue[];
|
|
9438
9438
|
}
|
|
9439
|
+
/**
|
|
9440
|
+
* NavStackEntry - one level of the client-session navigation stack an
|
|
9441
|
+
* orbital's pages accumulate. The stack lives client-side (per browser
|
|
9442
|
+
* session, keyed per orbital) and is what breadcrumb bands and the
|
|
9443
|
+
* `navigate-back` effect read: `href` is the visited page path with route
|
|
9444
|
+
* params substituted; `label` is the pushed `crumb` from the navigate
|
|
9445
|
+
* effect's options when one was carried, else the page's declared/derived
|
|
9446
|
+
* label.
|
|
9447
|
+
*/
|
|
9448
|
+
interface NavStackEntry {
|
|
9449
|
+
href: string;
|
|
9450
|
+
label: string;
|
|
9451
|
+
}
|
|
9439
9452
|
/**
|
|
9440
9453
|
* Checks if a theme reference is a string.
|
|
9441
9454
|
*
|
|
@@ -71545,4 +71558,4 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
71545
71558
|
type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
|
|
71546
71559
|
type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
|
|
71547
71560
|
|
|
71548
|
-
export { EntityRefSchema as $, AGENT_DOMAIN_CATEGORIES as A, DensityTokensSchema as B, type ColorSlice as C, type DensitySlice as D, type EntityRef as E, type DesignPreferences as F, type DesignPreferencesInput as G, DesignPreferencesSchema as H, type DesignTokens as I, type DesignTokensInput as J, DesignTokensSchema as K, type DomainCategory as L, DomainCategorySchema as M, type DomainContext as N, type OrbitalSchema as O, type PageRef as P, type DomainContextInput as Q, DomainContextSchema as R, type DomainVocabulary as S, DomainVocabularySchema as T, type UseDeclaration as U, type ElevationSlice as V, ElevationSliceSchema as W, type ElevationTokens as X, ElevationTokensSchema as Y, type EntityCall as Z, EntityCallSchema as _, type OrbitalDefinition as a,
|
|
71561
|
+
export { EntityRefSchema as $, AGENT_DOMAIN_CATEGORIES as A, DensityTokensSchema as B, type ColorSlice as C, type DensitySlice as D, type EntityRef as E, type DesignPreferences as F, type DesignPreferencesInput as G, DesignPreferencesSchema as H, type DesignTokens as I, type DesignTokensInput as J, DesignTokensSchema as K, type DomainCategory as L, DomainCategorySchema as M, type DomainContext as N, type OrbitalSchema as O, type PageRef as P, type DomainContextInput as Q, DomainContextSchema as R, type DomainVocabulary as S, DomainVocabularySchema as T, type UseDeclaration as U, type ElevationSlice as V, ElevationSliceSchema as W, type ElevationTokens as X, ElevationTokensSchema as Y, type EntityCall as Z, EntityCallSchema as _, type OrbitalDefinition as a, OrbitalSchema$1 as a$, EntityRefStringSchema as a0, type EntitySemanticRole as a1, EntitySemanticRoleSchema as a2, type EventListener as a3, EventListenerSchema as a4, type EventSemanticRole as a5, EventSemanticRoleSchema as a6, type EventSource as a7, EventSourceSchema as a8, ExpectDeclarationSchema as a9, MotionEasingPaletteSchema as aA, type MotionIntent as aB, type MotionIntentMap as aC, MotionIntentMapSchema as aD, MotionIntentSchema as aE, type MotionSlice as aF, MotionSliceSchema as aG, type MotionTokens as aH, MotionTokensSchema as aI, type NavItem as aJ, type NavStackEntry as aK, type NodeClassification as aL, NodeClassificationSchema as aM, type OrbitalConfig as aN, type OrbitalConfigInput as aO, OrbitalConfigSchema as aP, OrbitalDefinitionSchema as aQ, type OrbitalInput as aR, type OrbitalPageInput as aS, OrbitalPageSchema as aT, type OrbitalPageStrictInput as aU, OrbitalPageStrictSchema as aV, type OrbitalSchemaInput as aW, OrbitalSchemaSchema as aX, type OrbitalSchemaWithTraits as aY, type OrbitalUnit as aZ, OrbitalUnitSchema as a_, type Orbital as aa, type GameSubCategory as ab, GameSubCategorySchema as ac, type GeometrySlice as ad, GeometrySliceSchema as ae, type GeometryTokens as af, GeometryTokensSchema as ag, type IconFamily as ah, IconFamilySchema as ai, type IconographySlice as aj, IconographySliceSchema as ak, type IconographyTokens as al, IconographyTokensSchema as am, type IllustrationSlice as an, IllustrationSliceSchema as ao, type IllustrationStyle as ap, IllustrationStyleSchema as aq, type IllustrationTokens as ar, IllustrationTokensSchema as as, type MotionDurationKey as at, MotionDurationKeySchema as au, type MotionDurationPalette as av, MotionDurationPaletteSchema as aw, type MotionEasingKey as ax, MotionEasingKeySchema as ay, type MotionEasingPalette as az, type ExpectDeclaration as b, parseImportedTraitRef as b$, PageRefObjectSchema as b0, PageRefSchema as b1, PageRefStringSchema as b2, PageSchema as b3, type PageTraitRef as b4, PageTraitRefSchema as b5, type RelatedLink as b6, RelatedLinkSchema as b7, type SchemaMetadata as b8, SchemaMetadataSchema as b9, TypeScaleTokensSchema as bA, type TypeSizeKey as bB, TypeSizeKeySchema as bC, type TypeSlice as bD, TypeSliceSchema as bE, type TypeSlot as bF, TypeSlotSchema as bG, type TypeWeight as bH, TypeWeightSchema as bI, type UXHints as bJ, UXHintsSchema as bK, UseDeclarationSchema as bL, type UserPersona as bM, type UserPersonaInput as bN, UserPersonaSchema as bO, type ViewType as bP, ViewTypeSchema as bQ, isEntityCall as bR, isEntityReference as bS, isEntityReferenceAny as bT, isImportedTraitRef as bU, isOrbitalDefinition as bV, isPageReference as bW, isPageReferenceObject as bX, isPageReferenceString as bY, isThemeReference as bZ, parseEntityRef as b_, type SkinSpec as ba, SkinSpecSchema as bb, type SpacingScale as bc, SpacingScaleSchema as bd, type StateSemanticRole as be, StateSemanticRoleSchema as bf, type SuggestedGuard as bg, SuggestedGuardSchema as bh, type ThemeDefinition as bi, ThemeDefinitionSchema as bj, type ThemeRef as bk, ThemeRefSchema as bl, ThemeRefStringSchema as bm, type ThemeTokens as bn, ThemeTokensSchema as bo, type ThemeVariant as bp, ThemeVariantSchema as bq, type TypeIntent as br, type TypeIntentMap as bs, TypeIntentMapSchema as bt, TypeIntentSchema as bu, type TypeScale as bv, type TypeScaleEntry as bw, TypeScaleEntrySchema as bx, TypeScaleSchema as by, type TypeScaleTokens as bz, type Page as c, parseOrbitalSchema as c0, parsePageRef as c1, safeParseOrbitalSchema as c2, type PageRefObject as d, type OrbitalPage as e, ALLOWED_CUSTOM_COMPONENTS as f, type AgentDomainCategory as g, AgentDomainCategorySchema as h, type AllowedCustomComponent as i, ColorSliceSchema as j, type ColorTokens as k, ColorTokensSchema as l, type ComputedEventContract as m, ComputedEventContractSchema as n, type ComputedEventListener as o, ComputedEventListenerSchema as p, type ConfigProvenanceRecord as q, ConfigProvenanceRecordSchema as r, type CustomPatternDefinition as s, type CustomPatternDefinitionInput as t, CustomPatternDefinitionSchema as u, type CustomPatternMap as v, type CustomPatternMapInput as w, CustomPatternMapSchema as x, DensitySliceSchema as y, type DensityTokens as z };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-
|
|
1
|
+
import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-COsZyQ3w.js';
|
|
2
2
|
import { E as Expression, S as SExpr, J as JsonValue } from './expression-Fk8bQWef.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { A as AGENT_DOMAIN_CATEGORIES, f as ALLOWED_CUSTOM_COMPONENTS, g as AgentDomainCategory, h as AgentDomainCategorySchema, i as AllowedCustomComponent, O as AppSchema, C as ColorSlice, j as ColorSliceSchema, k as ColorTokens, l as ColorTokensSchema, m as ComputedEventContract, n as ComputedEventContractSchema, o as ComputedEventListener, p as ComputedEventListenerSchema, q as ConfigProvenanceRecord, r as ConfigProvenanceRecordSchema, s as CustomPatternDefinition, t as CustomPatternDefinitionInput, u as CustomPatternDefinitionSchema, v as CustomPatternMap, w as CustomPatternMapInput, x as CustomPatternMapSchema, D as DensitySlice, y as DensitySliceSchema, z as DensityTokens, B as DensityTokensSchema, F as DesignPreferences, G as DesignPreferencesInput, H as DesignPreferencesSchema, I as DesignTokens, J as DesignTokensInput, K as DesignTokensSchema, L as DomainCategory, M as DomainCategorySchema, N as DomainContext, Q as DomainContextInput, R as DomainContextSchema, S as DomainVocabulary, T as DomainVocabularySchema, V as ElevationSlice, W as ElevationSliceSchema, X as ElevationTokens, Y as ElevationTokensSchema, Z as EntityCall, _ as EntityCallSchema, E as EntityRef, $ as EntityRefSchema, a0 as EntityRefStringSchema, a1 as EntitySemanticRole, a2 as EntitySemanticRoleSchema, a3 as EventListener, a4 as EventListenerSchema, a5 as EventSemanticRole, a6 as EventSemanticRoleSchema, a7 as EventSource, a8 as EventSourceSchema, b as ExpectDeclaration, a9 as ExpectDeclarationSchema, aa as FullOrbitalUnit, ab as GameSubCategory, ac as GameSubCategorySchema, ad as GeometrySlice, ae as GeometrySliceSchema, af as GeometryTokens, ag as GeometryTokensSchema, ah as IconFamily, ai as IconFamilySchema, aj as IconographySlice, ak as IconographySliceSchema, al as IconographyTokens, am as IconographyTokensSchema, an as IllustrationSlice, ao as IllustrationSliceSchema, ap as IllustrationStyle, aq as IllustrationStyleSchema, ar as IllustrationTokens, as as IllustrationTokensSchema, at as MotionDurationKey, au as MotionDurationKeySchema, av as MotionDurationPalette, aw as MotionDurationPaletteSchema, ax as MotionEasingKey, ay as MotionEasingKeySchema, az as MotionEasingPalette, aA as MotionEasingPaletteSchema, aB as MotionIntent, aC as MotionIntentMap, aD as MotionIntentMapSchema, aE as MotionIntentSchema, aF as MotionSlice, aG as MotionSliceSchema, aH as MotionTokens, aI as MotionTokensSchema, aJ as NavItem, aK as
|
|
2
|
-
export { j as ANIMATION_NAMES, k as ASSET_ASPECTS, l as ASSET_DIMENSIONS, m as AgentEffect, n as AnimationDef, o as AnimationDefInput, p as AnimationDefSchema, q as AnimationName, r as AnimationNameSchema, s as ApplicationEffect, t as ArrayEntityField, u as Asset, v as AssetAspect, w as AssetAspectSchema, x as AssetCatalog, y as AssetCatalogEntry, z as AssetCatalogEntryInput, B as AssetCatalogEntrySchema, C as AssetCatalogSchema, D as AssetDimension, G as AssetDimensionSchema, H as AssetSchema, J as AssetUrl, K as AtomicEffect, L as BehaviorEffect, M as CAMERA_MODES, N as CallServiceConfig, Q as CallServiceEffect, V as Camera, W as CameraMode, X as CameraModeSchema, Y as CameraSchema, Z as CheckpointLoadEffect, _ as CheckpointSaveEffect, $ as ComposeEffect, a0 as DerefEffect, a1 as DespawnEffect, a2 as DoEffect, a3 as ENTITY_ROLES, c as Effect, a4 as EffectInput, a5 as EffectSchema, a6 as EmitConfig, a7 as EmitEffect, e as Entity, a8 as EntityData, E as EntityField, a9 as EntityFieldInput, aa as EntityFieldSchema, d as EntityId, ab as EntityIdSchema, a as EntityPersistence, ac as EntityPersistenceSchema, ad as EntityRole, ae as EntityRoleSchema, f as EntityRow, af as EntitySchema, ag as EntityWith, ah as EnumEntityField, ai as EvaluateConfig, aj as EvaluateEffect, b as EventId, ak as EventIdSchema, al as FIELD_TYPES, am as FetchEffect, an as FetchOptions, ao as FetchResult, ap as Field, aq as FieldSchema, ar as FieldType, as as FieldTypeSchema, F as FieldValue, at as FileValue, au as FileValueSchema, av as ForwardConfig, aw as ForwardEffect, ax as IdForKind, ay as IdKind, I as IdentityLedger, az as IdentityLedgerSchema, aA as LedgerEntry, aB as LedgerEntrySchema, aC as LedgerKind, aD as LedgerKindSchema, aE as LlmEffect, aF as LogEffect, aG as McpServiceDef, aH as McpServiceDefSchema, aI as MemoryEffect, aJ as
|
|
1
|
+
export { A as AGENT_DOMAIN_CATEGORIES, f as ALLOWED_CUSTOM_COMPONENTS, g as AgentDomainCategory, h as AgentDomainCategorySchema, i as AllowedCustomComponent, O as AppSchema, C as ColorSlice, j as ColorSliceSchema, k as ColorTokens, l as ColorTokensSchema, m as ComputedEventContract, n as ComputedEventContractSchema, o as ComputedEventListener, p as ComputedEventListenerSchema, q as ConfigProvenanceRecord, r as ConfigProvenanceRecordSchema, s as CustomPatternDefinition, t as CustomPatternDefinitionInput, u as CustomPatternDefinitionSchema, v as CustomPatternMap, w as CustomPatternMapInput, x as CustomPatternMapSchema, D as DensitySlice, y as DensitySliceSchema, z as DensityTokens, B as DensityTokensSchema, F as DesignPreferences, G as DesignPreferencesInput, H as DesignPreferencesSchema, I as DesignTokens, J as DesignTokensInput, K as DesignTokensSchema, L as DomainCategory, M as DomainCategorySchema, N as DomainContext, Q as DomainContextInput, R as DomainContextSchema, S as DomainVocabulary, T as DomainVocabularySchema, V as ElevationSlice, W as ElevationSliceSchema, X as ElevationTokens, Y as ElevationTokensSchema, Z as EntityCall, _ as EntityCallSchema, E as EntityRef, $ as EntityRefSchema, a0 as EntityRefStringSchema, a1 as EntitySemanticRole, a2 as EntitySemanticRoleSchema, a3 as EventListener, a4 as EventListenerSchema, a5 as EventSemanticRole, a6 as EventSemanticRoleSchema, a7 as EventSource, a8 as EventSourceSchema, b as ExpectDeclaration, a9 as ExpectDeclarationSchema, aa as FullOrbitalUnit, ab as GameSubCategory, ac as GameSubCategorySchema, ad as GeometrySlice, ae as GeometrySliceSchema, af as GeometryTokens, ag as GeometryTokensSchema, ah as IconFamily, ai as IconFamilySchema, aj as IconographySlice, ak as IconographySliceSchema, al as IconographyTokens, am as IconographyTokensSchema, an as IllustrationSlice, ao as IllustrationSliceSchema, ap as IllustrationStyle, aq as IllustrationStyleSchema, ar as IllustrationTokens, as as IllustrationTokensSchema, at as MotionDurationKey, au as MotionDurationKeySchema, av as MotionDurationPalette, aw as MotionDurationPaletteSchema, ax as MotionEasingKey, ay as MotionEasingKeySchema, az as MotionEasingPalette, aA as MotionEasingPaletteSchema, aB as MotionIntent, aC as MotionIntentMap, aD as MotionIntentMapSchema, aE as MotionIntentSchema, aF as MotionSlice, aG as MotionSliceSchema, aH as MotionTokens, aI as MotionTokensSchema, aJ as NavItem, aK as NavStackEntry, aL as NodeClassification, aM as NodeClassificationSchema, aa as Orbital, aN as OrbitalConfig, aO as OrbitalConfigInput, aP as OrbitalConfigSchema, a as OrbitalDefinition, aQ as OrbitalDefinitionSchema, aR as OrbitalInput, e as OrbitalPage, aS as OrbitalPageInput, aT as OrbitalPageSchema, aU as OrbitalPageStrictInput, aV as OrbitalPageStrictSchema, O as OrbitalSchema, aW as OrbitalSchemaInput, aX as OrbitalSchemaSchema, aY as OrbitalSchemaWithTraits, aZ as OrbitalUnit, a_ as OrbitalUnitSchema, a$ as OrbitalZodSchema, c as Page, P as PageRef, d as PageRefObject, b0 as PageRefObjectSchema, b1 as PageRefSchema, b2 as PageRefStringSchema, b3 as PageSchema, b4 as PageTraitRef, b5 as PageTraitRefSchema, b6 as RelatedLink, b7 as RelatedLinkSchema, b8 as SchemaMetadata, b9 as SchemaMetadataSchema, ba as SkinSpec, bb as SkinSpecSchema, bc as SpacingScale, bd as SpacingScaleSchema, be as StateSemanticRole, bf as StateSemanticRoleSchema, bg as SuggestedGuard, bh as SuggestedGuardSchema, bi as ThemeDefinition, bj as ThemeDefinitionSchema, bk as ThemeRef, bl as ThemeRefSchema, bm as ThemeRefStringSchema, bn as ThemeTokens, bo as ThemeTokensSchema, bp as ThemeVariant, bq as ThemeVariantSchema, br as TypeIntent, bs as TypeIntentMap, bt as TypeIntentMapSchema, bu as TypeIntentSchema, bv as TypeScale, bw as TypeScaleEntry, bx as TypeScaleEntrySchema, by as TypeScaleSchema, bz as TypeScaleTokens, bA as TypeScaleTokensSchema, bB as TypeSizeKey, bC as TypeSizeKeySchema, bD as TypeSlice, bE as TypeSliceSchema, bF as TypeSlot, bG as TypeSlotSchema, bH as TypeWeight, bI as TypeWeightSchema, bJ as UXHints, bK as UXHintsSchema, U as UseDeclaration, bL as UseDeclarationSchema, bM as UserPersona, bN as UserPersonaInput, bO as UserPersonaSchema, a as ValidatedOrbital, bP as ViewType, bQ as ViewTypeSchema, bR as isEntityCall, bS as isEntityReference, bT as isEntityReferenceAny, bU as isImportedTraitRef, bV as isOrbitalDefinition, bW as isPageReference, bX as isPageReferenceObject, bY as isPageReferenceString, bZ as isThemeReference, b_ as parseEntityRef, b$ as parseImportedTraitRef, c0 as parseOrbitalSchema, c1 as parsePageRef, c2 as safeParseOrbitalSchema } from '../schema-BBcQsU1e.js';
|
|
2
|
+
export { j as ANIMATION_NAMES, k as ASSET_ASPECTS, l as ASSET_DIMENSIONS, m as AgentEffect, n as AnimationDef, o as AnimationDefInput, p as AnimationDefSchema, q as AnimationName, r as AnimationNameSchema, s as ApplicationEffect, t as ArrayEntityField, u as Asset, v as AssetAspect, w as AssetAspectSchema, x as AssetCatalog, y as AssetCatalogEntry, z as AssetCatalogEntryInput, B as AssetCatalogEntrySchema, C as AssetCatalogSchema, D as AssetDimension, G as AssetDimensionSchema, H as AssetSchema, J as AssetUrl, K as AtomicEffect, L as BehaviorEffect, M as CAMERA_MODES, N as CallServiceConfig, Q as CallServiceEffect, V as Camera, W as CameraMode, X as CameraModeSchema, Y as CameraSchema, Z as CheckpointLoadEffect, _ as CheckpointSaveEffect, $ as ComposeEffect, a0 as DerefEffect, a1 as DespawnEffect, a2 as DoEffect, a3 as ENTITY_ROLES, c as Effect, a4 as EffectInput, a5 as EffectSchema, a6 as EmitConfig, a7 as EmitEffect, e as Entity, a8 as EntityData, E as EntityField, a9 as EntityFieldInput, aa as EntityFieldSchema, d as EntityId, ab as EntityIdSchema, a as EntityPersistence, ac as EntityPersistenceSchema, ad as EntityRole, ae as EntityRoleSchema, f as EntityRow, af as EntitySchema, ag as EntityWith, ah as EnumEntityField, ai as EvaluateConfig, aj as EvaluateEffect, b as EventId, ak as EventIdSchema, al as FIELD_TYPES, am as FetchEffect, an as FetchOptions, ao as FetchResult, ap as Field, aq as FieldSchema, ar as FieldType, as as FieldTypeSchema, F as FieldValue, at as FileValue, au as FileValueSchema, av as ForwardConfig, aw as ForwardEffect, ax as IdForKind, ay as IdKind, I as IdentityLedger, az as IdentityLedgerSchema, aA as LedgerEntry, aB as LedgerEntrySchema, aC as LedgerKind, aD as LedgerKindSchema, aE as LlmEffect, aF as LogEffect, aG as McpServiceDef, aH as McpServiceDefSchema, aI as MemoryEffect, aJ as NavigateBackEffect, aK as NavigateEffect, aL as NavigateOptions, aM as NnConfig, aN as NnLayer, aO as NotifyEffect, aP as ObjectEntityField, aQ as OrbitalEntity, aR as OrbitalEntityInput, aS as OrbitalEntitySchema, O as OrbitalId, aT as OrbitalIdSchema, aU as OsEffect, aV as PATTERN_TYPES, P as PageId, aW as PageIdSchema, aX as PaletteEntryId, aY as PaletteEntryIdSchema, aZ as PatternConfig, b0 as PatternType, b1 as PersistData, b2 as PersistEffect, b3 as PersistEmitConfig, b4 as RefEffect, R as RelationConfig, b5 as RelationConfigSchema, b6 as RelationEntityField, h as RenderBinding, b7 as RenderChildrenMap, b8 as RenderItemLambda, i as RenderUIEffect, b9 as RenderUINode, ba as ResolvedPatternProps, bb as RestAuthConfig, bc as RestAuthConfigSchema, bd as RestServiceDef, be as RestServiceDefSchema, bf as SEMANTIC_STRING_TYPES, bg as SERVICE_TYPES, bh as SHEET_PROJECTIONS, bi as SPRITE_DIRECTIONS, bj as ScalarEntityField, bk as ScenePos, bl as ScenePosSchema, bm as SemanticAssetRef, bn as SemanticAssetRefInput, bo as SemanticAssetRefSchema, bp as SemanticStringType, g as ServiceDefinition, bq as ServiceDefinitionSchema, br as ServiceId, bs as ServiceIdSchema, bt as ServiceParams, bu as ServiceParamsValue, S as ServiceRef, bv as ServiceRefObject, bw as ServiceRefObjectSchema, bx as ServiceRefSchema, by as ServiceRefStringSchema, bz as ServiceType, bA as ServiceTypeSchema, bB as SessionEffect, bC as SetEffect, bD as SheetProjection, bE as SheetProjectionSchema, bF as SocketEvents, bG as SocketEventsSchema, bH as SocketServiceDef, bI as SocketServiceDefSchema, bJ as SpawnEffect, bK as SpriteDirection, bL as SpriteDirectionSchema, bM as SpriteSheetAtlas, bN as SpriteSheetAtlasInput, bO as SpriteSheetAtlasSchema, bP as SubTexture, bQ as SubTextureSchema, bR as SwapEffect, bS as TextureAtlas, bT as TextureAtlasSchema, bU as ThemeId, bV as ThemeIdSchema, bW as Tilesheet, bX as TilesheetSchema, bY as TraceEffect, bZ as TrainConfig, b_ as TrainEffect, T as TraitId, b$ as TraitIdSchema, c0 as TypedEffect, U as UISlot, c1 as UISlotSchema, c2 as UI_SLOTS, c3 as VISUAL_STYLES, c4 as ValidateEffect, c5 as VisualStyle, c6 as VisualStyleSchema, c7 as WatchEffect, c8 as WatchOptions, c9 as asEntityId, ca as asEventId, cb as asOrbitalId, cc as asPageId, cd as asPaletteEntryId, ce as asServiceId, cf as asThemeId, cg as asTraitId, ch as atomic, ci as callService, cj as createAssetKey, ck as deref, cl as deriveCollection, cm as despawn, cn as doEffects, co as emit, cp as findService, cq as getDefaultAnimationsForRole, cr as getServiceNames, cs as hasService, ct as idKindOf, cu as idPrefix, cv as isEffect, cw as isEmailValue, cx as isEntityId, cy as isEventId, cz as isFieldValue, cA as isFileValue, cB as isMcpService, cC as isOrbitalId, cD as isPageId, cE as isPaletteEntryId, cF as isPhoneValue, cG as isRestService, cH as isRuntimeEntity, cI as isSExprEffect, cJ as isSemanticStringType, cK as isSemanticStringValue, cL as isServiceId, cM as isServiceReference, cN as isServiceReferenceObject, cO as isSocketService, cP as isThemeId, cQ as isTraitId, cR as isUrlValue, cS as isUuidValue, cT as isValidPatternType, cU as ledgerCurName, cV as ledgerRename, cW as ledgerResolveName, cX as mintId, cY as navigate, cZ as navigateBack, c_ as notify, c$ as parseAssetKey, d0 as parseServiceRef, d1 as persist, d2 as persistenceModeAllowsOverrides, d3 as ref, d4 as renderUI, d5 as set, d6 as spawn, d7 as swap, d8 as validateAssetAnimations, d9 as watch } from '../effect-COsZyQ3w.js';
|
|
3
3
|
export { C as CORE_BINDINGS, b as CoreBinding, c as EvalContext, a as EventPayload, d as EventPayloadValue, E as Expression, e as ExpressionInput, f as ExpressionSchema, g as JsonObject, J as JsonValue, L as LogMeta, h as LogMetaValue, P as ParsedBinding, R as RuntimeValue, S as SExpr, i as SExprAtom, j as SExprAtomSchema, k as SExprDataSchema, l as SExprInput, m as SExprObject, n as SExprSchema, T as ToolArgs, o as collectBindings, p as getArgs, q as getOperator, r as isBinding, s as isEventPayloadValue, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive, w as isSExpr, x as isSExprAtom, y as isSExprCall, z as isValidBinding, A as parseBinding, B as sexpr, D as walkSExpr } from '../expression-Fk8bQWef.js';
|
|
4
|
-
export { A as ANONYMOUS_USER, f as AgentCodeSearchResult, g as AgentCompactResult, h as AgentCompactStrategy, i as AgentContext, j as AgentGenerateOptions, k as AgentMemoryCategory, l as AgentMemoryRecord, m as AnalysisOrbital, n as AnalysisOrbitalParams, o as AnalysisPageOverride, p as AnalysisRename, q as AnalysisResult, r as AnnotationTier, s as AppCreatedEvent, t as AppSummary, u as AssetLoadStatus, B as BINDING_CONTEXT_RULES, v as BINDING_DOCS, w as BINDING_ROOTS, x as BindingContext, y as BindingRoot, z as BindingSchema, D as BridgeHealth, E as BuilderResult, F as BusEvent, G as BusEventListener, H as BusEventSource, I as CancelledEvent, d as CategorizedRemovals, J as ChangeAuthor, K as ChangeSetDocument, L as ChangeSummary, M as ChangesetRecordedEvent, C as ChangesetValue, N as CheckStatus, O as Clarification, Q as ClarificationCandidate, T as ClarificationLevel, U as CompleteEvent, V as ComplexityAssessment, W as ComposeAllResult, X as ComposeChildrenResult, Y as ComposeOptions, Z as ContextExtensions, _ as CreateFlow, $ as DEFAULT_INTERACTION_MODELS, a0 as DEFAULT_VIEWER, a1 as DEV_TOKEN_PREFIX, a2 as DeleteFlow, a3 as DispatchUpdatesResult, a4 as DrawableDescriptor, a5 as EdgeType, a6 as EditFlow, a9 as EffectPayload, aa as EffectResult, ab as EffectTrace, ac as ErrorEvent, ad as EventEmit, ae as EventKey, af as EventListen, ag as EventLogEntry, ah as EvolutionDelta, ai as ExecutePlanResult, aj as ExtraTraitRef, ak as FileOperationEvent, al as FileWrittenEvent, am as GateState, an as GenerationLogEvent, ao as GitHubIssue, ap as GitHubLink, aq as GitHubRepo, ar as HistoryMeta, as as IntegrationContext, at as InteractionModel, au as InteractionModelInput, av as InteractionModelSchema, aw as InterruptEvent, ax as KNOWN_VALIDATION_ERROR_CODES, ay as KnobPayload, az as KnownValidationErrorCode, aA as LLMErrorContext, aB as LazyService, aC as LineageEntry, aD as ListInteraction, aE as LivingEdge, aF as LivingEffect, aG as LivingEntity, aH as LivingEvent, aI as LivingField, aJ as LivingOrbital, aK as LivingOrbitalSchema, aL as LivingPage, aM as LivingState, aN as LivingTrait, aO as LivingTransition, aP as LivingValue, aQ as LivingVertex, aR as LlmCallToolsResult, aS as LlmContext, aT as LlmMessage, aU as LlmTokenUsage, aV as LlmToolCall, aW as LlmToolDef, aX as LoloEmitResult, aY as MemoryContext, aZ as MessageEvent, a_ as OrbitalAddedEvent, a$ as OrbitalSchemaCompleteEvent, b0 as OrbitalVerificationAPI, P as PageContentReduction, b1 as ParamsRepairEmittedEvent, b2 as ParsedDesign, b3 as ParsedDomainContext, b4 as ParsedEmitDeclaration, b5 as ParsedEntity, b6 as ParsedEvent, b7 as ParsedListenDeclaration, b8 as ParsedOrbital, b9 as ParsedPage, ba as ParsedState, bb as ParsedStateMachine, bc as ParsedTrait, bd as ParsedTraitConfig, be as ParsedTransition, bf as PatternNode, bg as PatternTypeSchema, bh as PatternValue, bi as PersistActionName, bj as PlanSnapshot, bk as PlanSnapshotStatus, bl as PlannerResult, bm as Probability, bn as ProcessCompleteEvent, bo as ProcessErrorEvent, bp as ProcessRepairCompleteEvent, bq as ProcessRepairEvent, br as ProcessStartEvent, bs as RENDER_BINDING_MARKER, bt as RawUserClaims, bu as RenderBindingMarker, bz as RepairResult, a as ResolvedEntity, bA as ResolvedEntityBinding, bB as ResolvedField, R as ResolvedIR, bC as ResolvedNavigation, b as ResolvedPage, bD as ResolvedPattern, bE as ResolvedSection, bF as ResolvedSectionEvent, c as ResolvedTrait, bG as ResolvedTraitBinding, bH as ResolvedTraitDataEntity, bI as ResolvedTraitEvent, bJ as ResolvedTraitGuard, bK as ResolvedTraitListener, bL as ResolvedTraitState, bM as ResolvedTraitTick, bN as ResolvedTraitTransition, bO as ResolvedTraitUIBinding, bP as SSEEvent, bQ as SSEEventBase, bR as SSEEventType, bS as SaveOptions, bT as SaveResult, S as SchemaChange, bU as SchemaPhaseUpdateEvent, bV as SchemaPhaseValidatedEvent, bW as SchemaUpdateEvent, bX as SemanticAnnotation, bY as SemanticChangeKind, e as SemanticSchemaChange, bZ as SemanticVector, b_ as ServerResponseTrace, b$ as ServiceAction, c0 as ServiceActionName, c1 as ServiceCallResult, c2 as ServiceContract, c3 as ServiceEvents, c4 as SessionContext, c5 as SessionHistoryEntry, c6 as SnapshotCreatedEvent, c7 as SnapshotDocument, c8 as SpawnResult, c9 as StartEvent, ca as StatsView, cb as StoreContract, cc as StoreFilter, cd as StoreFilterOp, ce as SubagentCompleteEvent, cf as SubagentEvent, cg as SubagentProgressEvent, ch as SubagentStartEvent, ci as TodoActivityType, cj as TodoDetailEvent, ck as TodoUpdateEvent, cl as ToolCallEvent, cm as ToolResultEvent, cn as TraceContext, co as TraitFieldRef, cp as TraitFieldRefSchema, cq as TraitStateSnapshot, cr as TransitionFrom, cs as TransitionTrace, ct as Unsubscribe, cu as UserContext, cv as ValidateResult, cw as ValidationDocument, cx as ValidationError, cy as ValidationErrorCode, cz as ValidationIssue, cA as ValidationMeta, cB as ValidationResult, cC as ValidationResults, cD as VerificationCheck, cE as VerificationSnapshot, cF as VerificationSummary, cG as VertexId, cH as VertexPayload, cI as VertexType, cJ as ViewFlow, cK as WorkspaceContext, cM as containsEntityBinding, cN as containsPayloadBinding, cO as createEmptyResolvedPage, cP as createEmptyResolvedTrait, cQ as createLazyService, cR as createResolvedField, cS as createTypedEventBus, cT as decodeDevIdentityToken, cU as encodeDevIdentityToken, cV as findPersonaInRoster, cX as getBindingExamples, cY as getInteractionModelForDomain, cZ as inferTsType, c$ as isKnownValidationErrorCode, d0 as isPlanSnapshot, d1 as isRenderBindingMarker, d2 as isResolvedIR, d3 as isSessionHistoryEntry, d4 as isTraitFieldRef, d6 as normalizeUserContext, d7 as personaFromIdentityRow, da as resolveDefaultViewer, db as resolvePersonaSpec, dd as toBindingRoot, de as validateBindingInContext, df as widenTier } from '../index-
|
|
5
|
-
export { k as CONFIG_REF_EVENT_PATTERN, h as CallSiteConfig, i as CallSiteConfigEntry, C as ConfigFieldDeclaration, l as ConfigFieldDeclarationSchema, m as ConfigFieldItemsDeclaration, n as ConfigRefEventError, D as DeclaredTraitConfig, o as DeclaredTraitConfigSchema, p as EntityFieldContract, q as EntityFieldContractSchema, r as Event, s as EventInput, E as EventPayloadField, t as EventPayloadFieldSchema, u as EventSchema, v as EventScope, w as EventScopeSchema, G as Guard, x as GuardInput, y as GuardSchema, L as ListenSource, z as ListenSourceSchema, O as OrbitalTraitRef, A as OrbitalTraitRefSchema, P as PayloadField, B as PayloadFieldSchema, F as PresentationType, R as REFERENCE_CONFIG_TYPES, H as ReferenceConfigType, I as RequiredField, J as RequiredFieldSchema, K as SECRET_CONFIG_TYPES, M as SecretConfigType, S as State, N as StateInput, Q as StateMachine, U as StateMachineInput, V as StateMachineSchema, W as StateSchema, X as TickIntervalSchema, g as Trait, Y as TraitCategory, Z as TraitCategorySchema, b as TraitConfig, c as TraitConfigObject, _ as TraitConfigSchema, e as TraitConfigValue, $ as TraitConfigValueSchema, a0 as TraitDataEntity, a1 as TraitDataEntitySchema, f as TraitEntityField, a2 as TraitEntityFieldSchema, j as TraitEventContract, a3 as TraitEventContractSchema, T as TraitEventListener, a4 as TraitEventListenerSchema, a5 as TraitInput, d as TraitRef, a6 as TraitRefSchema, a as TraitReference, a7 as TraitReferenceInput, a8 as TraitReferenceSchema, a9 as TraitSchema, aa as TraitTick, ab as TraitTickSchema, ac as TraitUIBinding, ad as TraitUIBindingSchema, ae as Transition, af as TransitionInput, ag as TransitionSchema, ah as configRefEventKnob, ai as getTraitConfig, aj as getTraitName, ak as isCallSiteConfigDeclaration, al as isCircuitEvent, am as isInlineTrait, an as isReferenceConfigType, ao as isSecretConfigType, ap as normalizeCallSiteConfigToValues, aq as normalizeTraitRef, ar as resolveConfigRefEventName } from '../trait-
|
|
4
|
+
export { A as ANONYMOUS_USER, f as AgentCodeSearchResult, g as AgentCompactResult, h as AgentCompactStrategy, i as AgentContext, j as AgentGenerateOptions, k as AgentMemoryCategory, l as AgentMemoryRecord, m as AnalysisOrbital, n as AnalysisOrbitalParams, o as AnalysisPageOverride, p as AnalysisRename, q as AnalysisResult, r as AnnotationTier, s as AppCreatedEvent, t as AppSummary, u as AssetLoadStatus, B as BINDING_CONTEXT_RULES, v as BINDING_DOCS, w as BINDING_ROOTS, x as BindingContext, y as BindingRoot, z as BindingSchema, D as BridgeHealth, E as BuilderResult, F as BusEvent, G as BusEventListener, H as BusEventSource, I as CancelledEvent, d as CategorizedRemovals, J as ChangeAuthor, K as ChangeSetDocument, L as ChangeSummary, M as ChangesetRecordedEvent, C as ChangesetValue, N as CheckStatus, O as Clarification, Q as ClarificationCandidate, T as ClarificationLevel, U as CompleteEvent, V as ComplexityAssessment, W as ComposeAllResult, X as ComposeChildrenResult, Y as ComposeOptions, Z as ContextExtensions, _ as CreateFlow, $ as DEFAULT_INTERACTION_MODELS, a0 as DEFAULT_VIEWER, a1 as DEV_TOKEN_PREFIX, a2 as DeleteFlow, a3 as DispatchUpdatesResult, a4 as DrawableDescriptor, a5 as EdgeType, a6 as EditFlow, a9 as EffectPayload, aa as EffectResult, ab as EffectTrace, ac as ErrorEvent, ad as EventEmit, ae as EventKey, af as EventListen, ag as EventLogEntry, ah as EvolutionDelta, ai as ExecutePlanResult, aj as ExtraTraitRef, ak as FileOperationEvent, al as FileWrittenEvent, am as GateState, an as GenerationLogEvent, ao as GitHubIssue, ap as GitHubLink, aq as GitHubRepo, ar as HistoryMeta, as as IntegrationContext, at as InteractionModel, au as InteractionModelInput, av as InteractionModelSchema, aw as InterruptEvent, ax as KNOWN_VALIDATION_ERROR_CODES, ay as KnobPayload, az as KnownValidationErrorCode, aA as LLMErrorContext, aB as LazyService, aC as LineageEntry, aD as ListInteraction, aE as LivingEdge, aF as LivingEffect, aG as LivingEntity, aH as LivingEvent, aI as LivingField, aJ as LivingOrbital, aK as LivingOrbitalSchema, aL as LivingPage, aM as LivingState, aN as LivingTrait, aO as LivingTransition, aP as LivingValue, aQ as LivingVertex, aR as LlmCallToolsResult, aS as LlmContext, aT as LlmMessage, aU as LlmTokenUsage, aV as LlmToolCall, aW as LlmToolDef, aX as LoloEmitResult, aY as MemoryContext, aZ as MessageEvent, a_ as OrbitalAddedEvent, a$ as OrbitalSchemaCompleteEvent, b0 as OrbitalVerificationAPI, P as PageContentReduction, b1 as ParamsRepairEmittedEvent, b2 as ParsedDesign, b3 as ParsedDomainContext, b4 as ParsedEmitDeclaration, b5 as ParsedEntity, b6 as ParsedEvent, b7 as ParsedListenDeclaration, b8 as ParsedOrbital, b9 as ParsedPage, ba as ParsedState, bb as ParsedStateMachine, bc as ParsedTrait, bd as ParsedTraitConfig, be as ParsedTransition, bf as PatternNode, bg as PatternTypeSchema, bh as PatternValue, bi as PersistActionName, bj as PlanSnapshot, bk as PlanSnapshotStatus, bl as PlannerResult, bm as Probability, bn as ProcessCompleteEvent, bo as ProcessErrorEvent, bp as ProcessRepairCompleteEvent, bq as ProcessRepairEvent, br as ProcessStartEvent, bs as RENDER_BINDING_MARKER, bt as RawUserClaims, bu as RenderBindingMarker, bz as RepairResult, a as ResolvedEntity, bA as ResolvedEntityBinding, bB as ResolvedField, R as ResolvedIR, bC as ResolvedNavigation, b as ResolvedPage, bD as ResolvedPattern, bE as ResolvedSection, bF as ResolvedSectionEvent, c as ResolvedTrait, bG as ResolvedTraitBinding, bH as ResolvedTraitDataEntity, bI as ResolvedTraitEvent, bJ as ResolvedTraitGuard, bK as ResolvedTraitListener, bL as ResolvedTraitState, bM as ResolvedTraitTick, bN as ResolvedTraitTransition, bO as ResolvedTraitUIBinding, bP as SSEEvent, bQ as SSEEventBase, bR as SSEEventType, bS as SaveOptions, bT as SaveResult, S as SchemaChange, bU as SchemaPhaseUpdateEvent, bV as SchemaPhaseValidatedEvent, bW as SchemaUpdateEvent, bX as SemanticAnnotation, bY as SemanticChangeKind, e as SemanticSchemaChange, bZ as SemanticVector, b_ as ServerResponseTrace, b$ as ServiceAction, c0 as ServiceActionName, c1 as ServiceCallResult, c2 as ServiceContract, c3 as ServiceEvents, c4 as SessionContext, c5 as SessionHistoryEntry, c6 as SnapshotCreatedEvent, c7 as SnapshotDocument, c8 as SpawnResult, c9 as StartEvent, ca as StatsView, cb as StoreContract, cc as StoreFilter, cd as StoreFilterOp, ce as SubagentCompleteEvent, cf as SubagentEvent, cg as SubagentProgressEvent, ch as SubagentStartEvent, ci as TodoActivityType, cj as TodoDetailEvent, ck as TodoUpdateEvent, cl as ToolCallEvent, cm as ToolResultEvent, cn as TraceContext, co as TraitFieldRef, cp as TraitFieldRefSchema, cq as TraitStateSnapshot, cr as TransitionFrom, cs as TransitionTrace, ct as Unsubscribe, cu as UserContext, cv as ValidateResult, cw as ValidationDocument, cx as ValidationError, cy as ValidationErrorCode, cz as ValidationIssue, cA as ValidationMeta, cB as ValidationResult, cC as ValidationResults, cD as VerificationCheck, cE as VerificationSnapshot, cF as VerificationSummary, cG as VertexId, cH as VertexPayload, cI as VertexType, cJ as ViewFlow, cK as WorkspaceContext, cM as containsEntityBinding, cN as containsPayloadBinding, cO as createEmptyResolvedPage, cP as createEmptyResolvedTrait, cQ as createLazyService, cR as createResolvedField, cS as createTypedEventBus, cT as decodeDevIdentityToken, cU as encodeDevIdentityToken, cV as findPersonaInRoster, cX as getBindingExamples, cY as getInteractionModelForDomain, cZ as inferTsType, c$ as isKnownValidationErrorCode, d0 as isPlanSnapshot, d1 as isRenderBindingMarker, d2 as isResolvedIR, d3 as isSessionHistoryEntry, d4 as isTraitFieldRef, d6 as normalizeUserContext, d7 as personaFromIdentityRow, da as resolveDefaultViewer, db as resolvePersonaSpec, dd as toBindingRoot, de as validateBindingInContext, df as widenTier } from '../index-BRf3dUz-.js';
|
|
5
|
+
export { k as CONFIG_REF_EVENT_PATTERN, h as CallSiteConfig, i as CallSiteConfigEntry, C as ConfigFieldDeclaration, l as ConfigFieldDeclarationSchema, m as ConfigFieldItemsDeclaration, n as ConfigRefEventError, D as DeclaredTraitConfig, o as DeclaredTraitConfigSchema, p as EntityFieldContract, q as EntityFieldContractSchema, r as Event, s as EventInput, E as EventPayloadField, t as EventPayloadFieldSchema, u as EventSchema, v as EventScope, w as EventScopeSchema, G as Guard, x as GuardInput, y as GuardSchema, L as ListenSource, z as ListenSourceSchema, O as OrbitalTraitRef, A as OrbitalTraitRefSchema, P as PayloadField, B as PayloadFieldSchema, F as PresentationType, R as REFERENCE_CONFIG_TYPES, H as ReferenceConfigType, I as RequiredField, J as RequiredFieldSchema, K as SECRET_CONFIG_TYPES, M as SecretConfigType, S as State, N as StateInput, Q as StateMachine, U as StateMachineInput, V as StateMachineSchema, W as StateSchema, X as TickIntervalSchema, g as Trait, Y as TraitCategory, Z as TraitCategorySchema, b as TraitConfig, c as TraitConfigObject, _ as TraitConfigSchema, e as TraitConfigValue, $ as TraitConfigValueSchema, a0 as TraitDataEntity, a1 as TraitDataEntitySchema, f as TraitEntityField, a2 as TraitEntityFieldSchema, j as TraitEventContract, a3 as TraitEventContractSchema, T as TraitEventListener, a4 as TraitEventListenerSchema, a5 as TraitInput, d as TraitRef, a6 as TraitRefSchema, a as TraitReference, a7 as TraitReferenceInput, a8 as TraitReferenceSchema, a9 as TraitSchema, aa as TraitTick, ab as TraitTickSchema, ac as TraitUIBinding, ad as TraitUIBindingSchema, ae as Transition, af as TransitionInput, ag as TransitionSchema, ah as configRefEventKnob, ai as getTraitConfig, aj as getTraitName, ak as isCallSiteConfigDeclaration, al as isCircuitEvent, am as isInlineTrait, an as isReferenceConfigType, ao as isSecretConfigType, ap as normalizeCallSiteConfigToValues, aq as normalizeTraitRef, ar as resolveConfigRefEventName } from '../trait-DjBq4fW8.js';
|
|
6
6
|
import 'zod';
|
|
7
|
-
import '../types-
|
|
7
|
+
import '../types-B3z8_OnS.js';
|
|
8
8
|
import '../builders.js';
|
package/dist/types/index.js
CHANGED
|
@@ -710,9 +710,13 @@ function set(binding, value) {
|
|
|
710
710
|
function emit(event, payload) {
|
|
711
711
|
return payload ? ["emit", event, payload] : ["emit", event];
|
|
712
712
|
}
|
|
713
|
-
function navigate(path, params) {
|
|
713
|
+
function navigate(path, params, options) {
|
|
714
|
+
if (params && options) return ["navigate", path, params, options];
|
|
714
715
|
return params ? ["navigate", path, params] : ["navigate", path];
|
|
715
716
|
}
|
|
717
|
+
function navigateBack() {
|
|
718
|
+
return ["navigate-back"];
|
|
719
|
+
}
|
|
716
720
|
function renderUI(target, pattern, props) {
|
|
717
721
|
return props ? ["render-ui", target, pattern, props] : ["render-ui", target, pattern];
|
|
718
722
|
}
|
|
@@ -2795,6 +2799,6 @@ function widenTier(tier) {
|
|
|
2795
2799
|
return tier;
|
|
2796
2800
|
}
|
|
2797
2801
|
|
|
2798
|
-
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpectDeclarationSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SHEET_PROJECTIONS, SPRITE_DIRECTIONS, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, atomic, callService, collectBindings, configRefEventKnob, containsEntityBinding, containsPayloadBinding, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, deref, deriveCollection, despawn, doEffects, emit, encodeDevIdentityToken, findPersonaInRoster, findService, getArgs, getBindingExamples, getDefaultAnimationsForRole, getInteractionModelForDomain, getOperator, getServiceNames, getTraitConfig, getTraitName, hasService, idKindOf, idPrefix, inferTsType, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isEffect, isEmailValue, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPhoneValue, isPlanSnapshot, isReferenceConfigType, isRenderBindingMarker, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isSecretConfigType, isSemanticStringType, isSemanticStringValue, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, ledgerCurName, ledgerRename, ledgerResolveName, mintId, navigate, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, ref, renderUI, resolveConfigRefEventName, resolveDefaultViewer, resolvePersonaSpec, safeParseOrbitalSchema, set, sexpr, spawn, swap, toBindingRoot, validateAssetAnimations, validateBindingInContext, walkSExpr, watch, widenTier };
|
|
2802
|
+
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpectDeclarationSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SHEET_PROJECTIONS, SPRITE_DIRECTIONS, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, atomic, callService, collectBindings, configRefEventKnob, containsEntityBinding, containsPayloadBinding, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, deref, deriveCollection, despawn, doEffects, emit, encodeDevIdentityToken, findPersonaInRoster, findService, getArgs, getBindingExamples, getDefaultAnimationsForRole, getInteractionModelForDomain, getOperator, getServiceNames, getTraitConfig, getTraitName, hasService, idKindOf, idPrefix, inferTsType, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isEffect, isEmailValue, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPhoneValue, isPlanSnapshot, isReferenceConfigType, isRenderBindingMarker, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isSecretConfigType, isSemanticStringType, isSemanticStringValue, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, ledgerCurName, ledgerRename, ledgerResolveName, mintId, navigate, navigateBack, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, ref, renderUI, resolveConfigRefEventName, resolveDefaultViewer, resolvePersonaSpec, safeParseOrbitalSchema, set, sexpr, spawn, swap, toBindingRoot, validateAssetAnimations, validateBindingInContext, walkSExpr, watch, widenTier };
|
|
2799
2803
|
//# sourceMappingURL=index.js.map
|
|
2800
2804
|
//# sourceMappingURL=index.js.map
|