@almadar/core 10.83.0 → 10.85.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 +9 -0
- package/dist/builders.js.map +1 -1
- package/dist/{effect-DruTSW2O.d.ts → effect-BgDiw_bG.d.ts} +19 -3
- package/dist/{entityAccess-BoYVXf3b.d.ts → entityAccess-DK5S_2cT.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +180 -8
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +9 -0
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/{index-76Ff6JCE.d.ts → index-ChYsqVJj.d.ts} +4 -4
- package/dist/index.d.ts +10 -10
- package/dist/index.js +385 -12
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/patterns/component-mapping.json +6 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +367 -13
- package/dist/patterns/index.js +189 -11
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +181 -9
- package/dist/patterns/registry.json +181 -9
- package/dist/{schema-BdeZ8R35.d.ts → schema-BhfQb1oe.d.ts} +498 -2
- package/dist/state-machine/index.js +187 -1
- package/dist/state-machine/index.js.map +1 -1
- package/dist/{trait-DKJWX0Ru.d.ts → trait-pavNlGqm.d.ts} +122 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +10 -0
- package/dist/types/index.js.map +1 -1
- package/dist/{types-CRr2IuTj.d.ts → types-CCAmdxcH.d.ts} +12 -2
- package/package.json +1 -1
|
@@ -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-BgDiw_bG.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
|
|
|
@@ -1635,6 +1635,38 @@ declare const EntityFieldContractSchema: z.ZodObject<{
|
|
|
1635
1635
|
requires: string[];
|
|
1636
1636
|
provides: string[];
|
|
1637
1637
|
}>;
|
|
1638
|
+
/**
|
|
1639
|
+
* Where in a trait an effect is declared. The distinction is load-bearing: a
|
|
1640
|
+
* `render-ui` in a transition fires when that transition fires, but one inside a
|
|
1641
|
+
* `ticks` block repaints every frame, so two tick writers on one slot paint
|
|
1642
|
+
* together where two transition writers routinely alternate.
|
|
1643
|
+
*/
|
|
1644
|
+
type EffectSite = 'transition' | 'tick';
|
|
1645
|
+
/**
|
|
1646
|
+
* One effect a trait produces, with the resource it acts on — the slot for
|
|
1647
|
+
* `render-ui`, the entity for `persist`/`fetch`, the event for `emit`, the
|
|
1648
|
+
* binding path for `set`. `resource` is recorded verbatim as authored; when the
|
|
1649
|
+
* author deferred it to a call site (`@config.surface`) the reference is kept as
|
|
1650
|
+
* written and `resolved` is false. Mirrors the Rust `EffectUse` serde shape.
|
|
1651
|
+
*/
|
|
1652
|
+
type EffectUse = {
|
|
1653
|
+
kind: string;
|
|
1654
|
+
resource?: string;
|
|
1655
|
+
/** Absent means true — only an unresolved `@config.*` resource sets it. */
|
|
1656
|
+
resolved?: boolean;
|
|
1657
|
+
/** Absent means `'transition'`. */
|
|
1658
|
+
site?: EffectSite;
|
|
1659
|
+
};
|
|
1660
|
+
/**
|
|
1661
|
+
* Every effect a trait produces — what composing it actually brings along.
|
|
1662
|
+
*
|
|
1663
|
+
* Inferred by the lolo lowerer from the trait's own effects (never authored, the
|
|
1664
|
+
* way {@link EntityFieldContract} is never authored), then re-derived
|
|
1665
|
+
* post-inline once call-site config makes `@config.*` resources concrete. A
|
|
1666
|
+
* trait's type used to say nothing about its effects, which is why "is this safe
|
|
1667
|
+
* to compose?" could only be answered by reading the atom.
|
|
1668
|
+
*/
|
|
1669
|
+
type EffectRow = EffectUse[];
|
|
1638
1670
|
type Trait = {
|
|
1639
1671
|
/** V4 dual-carry id sibling of `name` — optional until the Phase-7 flip. */
|
|
1640
1672
|
id?: TraitId;
|
|
@@ -1655,6 +1687,11 @@ type Trait = {
|
|
|
1655
1687
|
* alongside `entityRebindable: true`. See {@link EntityFieldContract}.
|
|
1656
1688
|
*/
|
|
1657
1689
|
entityContract?: EntityFieldContract;
|
|
1690
|
+
/**
|
|
1691
|
+
* Inferred effect surface. Absent on traits that produce no effects at all.
|
|
1692
|
+
* See {@link EffectRow}.
|
|
1693
|
+
*/
|
|
1694
|
+
effectRow?: EffectRow;
|
|
1658
1695
|
/**
|
|
1659
1696
|
* `@description "..."` authored on the `@rebindable` binding in `.lolo`.
|
|
1660
1697
|
* Surfaced to catalog prose + knob-embeddings so the LLM can reach for the
|
|
@@ -1812,6 +1849,22 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
1812
1849
|
requires: string[];
|
|
1813
1850
|
provides: string[];
|
|
1814
1851
|
}>>;
|
|
1852
|
+
effectRow: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1853
|
+
kind: z.ZodString;
|
|
1854
|
+
resource: z.ZodOptional<z.ZodString>;
|
|
1855
|
+
resolved: z.ZodOptional<z.ZodBoolean>;
|
|
1856
|
+
site: z.ZodOptional<z.ZodEnum<["transition", "tick"]>>;
|
|
1857
|
+
}, "strip", z.ZodTypeAny, {
|
|
1858
|
+
kind: string;
|
|
1859
|
+
resource?: string | undefined;
|
|
1860
|
+
resolved?: boolean | undefined;
|
|
1861
|
+
site?: "transition" | "tick" | undefined;
|
|
1862
|
+
}, {
|
|
1863
|
+
kind: string;
|
|
1864
|
+
resource?: string | undefined;
|
|
1865
|
+
resolved?: boolean | undefined;
|
|
1866
|
+
site?: "transition" | "tick" | undefined;
|
|
1867
|
+
}>, "many">>;
|
|
1815
1868
|
entityBindingDescription: z.ZodOptional<z.ZodString>;
|
|
1816
1869
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
1817
1870
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2507,6 +2560,12 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2507
2560
|
requires: string[];
|
|
2508
2561
|
provides: string[];
|
|
2509
2562
|
} | undefined;
|
|
2563
|
+
effectRow?: {
|
|
2564
|
+
kind: string;
|
|
2565
|
+
resource?: string | undefined;
|
|
2566
|
+
resolved?: boolean | undefined;
|
|
2567
|
+
site?: "transition" | "tick" | undefined;
|
|
2568
|
+
}[] | undefined;
|
|
2510
2569
|
entityBindingDescription?: string | undefined;
|
|
2511
2570
|
entityBindingSynonyms?: string | undefined;
|
|
2512
2571
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
@@ -2680,6 +2739,12 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2680
2739
|
requires: string[];
|
|
2681
2740
|
provides: string[];
|
|
2682
2741
|
} | undefined;
|
|
2742
|
+
effectRow?: {
|
|
2743
|
+
kind: string;
|
|
2744
|
+
resource?: string | undefined;
|
|
2745
|
+
resolved?: boolean | undefined;
|
|
2746
|
+
site?: "transition" | "tick" | undefined;
|
|
2747
|
+
}[] | undefined;
|
|
2683
2748
|
entityBindingDescription?: string | undefined;
|
|
2684
2749
|
entityBindingSynonyms?: string | undefined;
|
|
2685
2750
|
entityRefIds?: Record<string, string> | undefined;
|
|
@@ -3036,6 +3101,22 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
3036
3101
|
requires: string[];
|
|
3037
3102
|
provides: string[];
|
|
3038
3103
|
}>>;
|
|
3104
|
+
effectRow: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3105
|
+
kind: z.ZodString;
|
|
3106
|
+
resource: z.ZodOptional<z.ZodString>;
|
|
3107
|
+
resolved: z.ZodOptional<z.ZodBoolean>;
|
|
3108
|
+
site: z.ZodOptional<z.ZodEnum<["transition", "tick"]>>;
|
|
3109
|
+
}, "strip", z.ZodTypeAny, {
|
|
3110
|
+
kind: string;
|
|
3111
|
+
resource?: string | undefined;
|
|
3112
|
+
resolved?: boolean | undefined;
|
|
3113
|
+
site?: "transition" | "tick" | undefined;
|
|
3114
|
+
}, {
|
|
3115
|
+
kind: string;
|
|
3116
|
+
resource?: string | undefined;
|
|
3117
|
+
resolved?: boolean | undefined;
|
|
3118
|
+
site?: "transition" | "tick" | undefined;
|
|
3119
|
+
}>, "many">>;
|
|
3039
3120
|
entityBindingDescription: z.ZodOptional<z.ZodString>;
|
|
3040
3121
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
3041
3122
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -3731,6 +3812,12 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
3731
3812
|
requires: string[];
|
|
3732
3813
|
provides: string[];
|
|
3733
3814
|
} | undefined;
|
|
3815
|
+
effectRow?: {
|
|
3816
|
+
kind: string;
|
|
3817
|
+
resource?: string | undefined;
|
|
3818
|
+
resolved?: boolean | undefined;
|
|
3819
|
+
site?: "transition" | "tick" | undefined;
|
|
3820
|
+
}[] | undefined;
|
|
3734
3821
|
entityBindingDescription?: string | undefined;
|
|
3735
3822
|
entityBindingSynonyms?: string | undefined;
|
|
3736
3823
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
@@ -3904,6 +3991,12 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
3904
3991
|
requires: string[];
|
|
3905
3992
|
provides: string[];
|
|
3906
3993
|
} | undefined;
|
|
3994
|
+
effectRow?: {
|
|
3995
|
+
kind: string;
|
|
3996
|
+
resource?: string | undefined;
|
|
3997
|
+
resolved?: boolean | undefined;
|
|
3998
|
+
site?: "transition" | "tick" | undefined;
|
|
3999
|
+
}[] | undefined;
|
|
3907
4000
|
entityBindingDescription?: string | undefined;
|
|
3908
4001
|
entityBindingSynonyms?: string | undefined;
|
|
3909
4002
|
entityRefIds?: Record<string, string> | undefined;
|
|
@@ -4330,6 +4423,22 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
4330
4423
|
requires: string[];
|
|
4331
4424
|
provides: string[];
|
|
4332
4425
|
}>>;
|
|
4426
|
+
effectRow: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4427
|
+
kind: z.ZodString;
|
|
4428
|
+
resource: z.ZodOptional<z.ZodString>;
|
|
4429
|
+
resolved: z.ZodOptional<z.ZodBoolean>;
|
|
4430
|
+
site: z.ZodOptional<z.ZodEnum<["transition", "tick"]>>;
|
|
4431
|
+
}, "strip", z.ZodTypeAny, {
|
|
4432
|
+
kind: string;
|
|
4433
|
+
resource?: string | undefined;
|
|
4434
|
+
resolved?: boolean | undefined;
|
|
4435
|
+
site?: "transition" | "tick" | undefined;
|
|
4436
|
+
}, {
|
|
4437
|
+
kind: string;
|
|
4438
|
+
resource?: string | undefined;
|
|
4439
|
+
resolved?: boolean | undefined;
|
|
4440
|
+
site?: "transition" | "tick" | undefined;
|
|
4441
|
+
}>, "many">>;
|
|
4333
4442
|
entityBindingDescription: z.ZodOptional<z.ZodString>;
|
|
4334
4443
|
entityBindingSynonyms: z.ZodOptional<z.ZodString>;
|
|
4335
4444
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -5025,6 +5134,12 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
5025
5134
|
requires: string[];
|
|
5026
5135
|
provides: string[];
|
|
5027
5136
|
} | undefined;
|
|
5137
|
+
effectRow?: {
|
|
5138
|
+
kind: string;
|
|
5139
|
+
resource?: string | undefined;
|
|
5140
|
+
resolved?: boolean | undefined;
|
|
5141
|
+
site?: "transition" | "tick" | undefined;
|
|
5142
|
+
}[] | undefined;
|
|
5028
5143
|
entityBindingDescription?: string | undefined;
|
|
5029
5144
|
entityBindingSynonyms?: string | undefined;
|
|
5030
5145
|
entityRefIds?: Record<string, EntityId> | undefined;
|
|
@@ -5198,6 +5313,12 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
5198
5313
|
requires: string[];
|
|
5199
5314
|
provides: string[];
|
|
5200
5315
|
} | undefined;
|
|
5316
|
+
effectRow?: {
|
|
5317
|
+
kind: string;
|
|
5318
|
+
resource?: string | undefined;
|
|
5319
|
+
resolved?: boolean | undefined;
|
|
5320
|
+
site?: "transition" | "tick" | undefined;
|
|
5321
|
+
}[] | undefined;
|
|
5201
5322
|
entityBindingDescription?: string | undefined;
|
|
5202
5323
|
entityBindingSynonyms?: string | undefined;
|
|
5203
5324
|
entityRefIds?: Record<string, string> | undefined;
|
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 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 expectedEntityName, bS as isEntityCall, bT as isEntityReference, bU as isEntityReferenceAny, bV as isImportedTraitRef, bW as isOrbitalDefinition, bX as isPageReference, bY as isPageReferenceObject, bZ as isPageReferenceString, b_ as isThemeReference, b$ as parseEntityRef, c0 as parseImportedTraitRef, c1 as parseOrbitalSchema, c2 as parsePageRef, c3 as safeParseOrbitalSchema } from '../schema-
|
|
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 AudioManifest, M as AudioManifestSchema, N as BehaviorEffect, Q as CAMERA_MODES, V as CallServiceConfig, W as CallServiceEffect, X as Camera, Y as CameraMode, Z as CameraModeSchema, _ as CameraSchema, $ as CheckpointLoadEffect, a0 as CheckpointSaveEffect, a1 as ComposeEffect, a2 as ControlValue, a3 as DEFAULT_UNIT_ANIMATION_ROWS, a4 as DerefEffect, a5 as DespawnEffect, a6 as DoEffect, a7 as ENTITY_ROLES, c as Effect, a8 as EffectInput, a9 as EffectSchema, aa as EmitConfig, ab as EmitEffect, e as Entity, ac as EntityData, E as EntityField, ad as EntityFieldInput, ae as EntityFieldSchema, d as EntityId, af as EntityIdSchema, a as EntityPersistence, ag as EntityPersistenceSchema, ah as EntityRole, ai as EntityRoleSchema, f as EntityRow, aj as EntitySchema, ak as EntityWith, al as EnumEntityField, am as EvaluateConfig, an as EvaluateEffect, b as EventId, ao as EventIdSchema, ap as FIELD_TYPES, aq as FetchEffect, ar as FetchOptions, as as FetchResult, at as Field, au as FieldSchema, av as FieldType, aw as FieldTypeSchema, F as FieldValue, ax as FileValue, ay as FileValueSchema, az as ForwardConfig, aA as ForwardEffect, aB as IdForKind, aC as IdKind, I as IdentityLedger, aD as IdentityLedgerSchema, aE as LedgerEntry, aF as LedgerEntrySchema, aG as LedgerKind, aH as LedgerKindSchema, aI as LlmEffect, aJ as LogEffect, aK as MANIFEST_ASSET_LICENSES, aL as MANIFEST_CANVAS_AFFINITIES, aM as MANIFEST_ENTRY_KINDS, aN as MANIFEST_SOURCE_CATALOGS, aO as ManifestAssetLicense, aP as ManifestAssetLicenseSchema, aQ as ManifestCanvasAffinity, aR as ManifestCanvasAffinitySchema, aS as ManifestEntry, aT as ManifestEntryInput, aU as ManifestEntryKind, aV as ManifestEntryKindSchema, aW as ManifestEntrySchema, aX as ManifestFrameSpec, aY as ManifestFrameSpecSchema, aZ as ManifestSourceCatalog, a_ as ManifestSourceCatalogSchema, a$ as McpServiceDef, b0 as McpServiceDefSchema, b1 as MemoryEffect, b2 as NavigateBackEffect, b3 as NavigateEffect, b4 as NavigateOptions, b5 as NnConfig, b6 as NnLayer, b7 as NotifyEffect, b8 as ObjectEntityField, b9 as OrbitalEntity, ba as OrbitalEntityInput, bb as OrbitalEntitySchema, O as OrbitalId, bc as OrbitalIdSchema, bd as OsEffect, be as PATTERN_TYPES, P as PageId, bf as PageIdSchema, bg as PaletteEntryId, bh as PaletteEntryIdSchema, bi as PatternConfig, bl as PatternType, bm as PersistData, bn as PersistEffect, bo as PersistEmitConfig, bp as RefEffect, R as RelationConfig, bq as RelationConfigSchema, br as RelationEntityField, h as RenderBinding, bs as RenderChildrenMap, bt as RenderItemLambda, i as RenderUIEffect, bu as RenderUINode, bv as ResolvedPatternProps, bw as RestAuthConfig, bx as RestAuthConfigSchema, by as RestServiceDef, bz as RestServiceDefSchema, bA as SEMANTIC_STRING_TYPES, bB as SERVICE_TYPES, bC as SHEET_PROJECTIONS, bD as SPRITE_DIRECTIONS, bE as SPRITE_SHEET_LAYOUT, bF as ScalarEntityField, bG as ScenePos, bH as ScenePosSchema, bI as SemanticAssetRef, bJ as SemanticAssetRefInput, bK as SemanticAssetRefSchema, bL as SemanticStringType, g as ServiceDefinition, bM as ServiceDefinitionSchema, bN as ServiceId, bO as ServiceIdSchema, bP as ServiceParams, bQ as ServiceParamsValue, S as ServiceRef, bR as ServiceRefObject, bS as ServiceRefObjectSchema, bT as ServiceRefSchema, bU as ServiceRefStringSchema, bV as ServiceType, bW as ServiceTypeSchema, bX as SessionEffect, bY as SetEffect, bZ as SheetProjection, b_ as SheetProjectionSchema, b$ as SocketEvents, c0 as SocketEventsSchema, c1 as SocketServiceDef, c2 as SocketServiceDefSchema, c3 as SoundEntry, c4 as SoundEntrySchema, c5 as SpawnEffect, c6 as SpriteDirection, c7 as SpriteDirectionSchema, c8 as SpriteSheetAtlas, c9 as SpriteSheetAtlasInput, ca as SpriteSheetAtlasSchema, cb as SpriteSheetLayout, cc as SubTexture, cd as SubTextureSchema, ce as SwapEffect, cf as TemplatePatternConfig, cg as TextureAtlas, ch as TextureAtlasSchema, ci as ThemeId, cj as ThemeIdSchema, ck as Tilesheet, cl as TilesheetSchema, cm as TraceEffect, cn as TrainConfig, co as TrainEffect, T as TraitId, cp as TraitIdSchema, cq as TypedEffect, U as UISlot, cr as UISlotSchema, cs as UI_SLOTS, ct as VISUAL_STYLES, cu as ValidateEffect, cv as VisualStyle, cw as VisualStyleSchema, cx as WatchEffect, cy as WatchOptions, cz 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 defaultUnitAtlas, cL as deref, cM as deriveCollection, cN as despawn, cO as doEffects, cP as emit, cQ as findService, cR as getDefaultAnimationsForRole, cS as getServiceNames, cT as hasService, cU as idKindOf, cV as idPrefix, cW as isEffect, cX as isEmailValue, cY as isEntityId, cZ as isEventId, c_ as isFieldValue, c$ as isFileValue, d0 as isMcpService, d1 as isOrbitalId, d2 as isPageId, d3 as isPaletteEntryId, d4 as isPhoneValue, d5 as isRestService, d6 as isRuntimeEntity, d7 as isSExprEffect, d8 as isSemanticStringType, d9 as isSemanticStringValue, da as isServiceId, db as isServiceReference, dc as isServiceReferenceObject, dd as isSocketService, de as isThemeId, df as isTraitId, dg as isUrlValue, dh as isUuidValue, di as isValidPatternType, dj as ledgerCurName, dk as ledgerRename, dl as ledgerResolveName, dm as manifestToAssetCatalog, dn as matchAssetQuery, dp as mintId, dq as navigate, dr as navigateBack, ds as notify, dt as parseAssetKey, du as parseAssetQuery, dv as parseServiceRef, dw as persist, dx as persistenceModeAllowsOverrides, dy as ref, dz as renderUI, dA as set, dB as spawn, dC as swap, dD as validateAssetAnimations, dE as watch } from '../effect-
|
|
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 expectedEntityName, bS as isEntityCall, bT as isEntityReference, bU as isEntityReferenceAny, bV as isImportedTraitRef, bW as isOrbitalDefinition, bX as isPageReference, bY as isPageReferenceObject, bZ as isPageReferenceString, b_ as isThemeReference, b$ as parseEntityRef, c0 as parseImportedTraitRef, c1 as parseOrbitalSchema, c2 as parsePageRef, c3 as safeParseOrbitalSchema } from '../schema-BhfQb1oe.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 AudioManifest, M as AudioManifestSchema, N as BehaviorEffect, Q as CAMERA_MODES, V as CallServiceConfig, W as CallServiceEffect, X as Camera, Y as CameraMode, Z as CameraModeSchema, _ as CameraSchema, $ as CheckpointLoadEffect, a0 as CheckpointSaveEffect, a1 as ComposeEffect, a2 as ControlValue, a3 as DEFAULT_UNIT_ANIMATION_ROWS, a4 as DerefEffect, a5 as DespawnEffect, a6 as DoEffect, a7 as ENTITY_ROLES, c as Effect, a8 as EffectInput, a9 as EffectSchema, aa as EmitConfig, ab as EmitEffect, e as Entity, ac as EntityData, E as EntityField, ad as EntityFieldInput, ae as EntityFieldSchema, d as EntityId, af as EntityIdSchema, a as EntityPersistence, ag as EntityPersistenceSchema, ah as EntityRole, ai as EntityRoleSchema, f as EntityRow, aj as EntitySchema, ak as EntityWith, al as EnumEntityField, am as EvaluateConfig, an as EvaluateEffect, b as EventId, ao as EventIdSchema, ap as FIELD_TYPES, aq as FetchEffect, ar as FetchOptions, as as FetchResult, at as Field, au as FieldSchema, av as FieldType, aw as FieldTypeSchema, F as FieldValue, ax as FileValue, ay as FileValueSchema, az as ForwardConfig, aA as ForwardEffect, aB as IdForKind, aC as IdKind, I as IdentityLedger, aD as IdentityLedgerSchema, aE as LedgerEntry, aF as LedgerEntrySchema, aG as LedgerKind, aH as LedgerKindSchema, aI as LlmEffect, aJ as LogEffect, aK as MANIFEST_ASSET_LICENSES, aL as MANIFEST_CANVAS_AFFINITIES, aM as MANIFEST_ENTRY_KINDS, aN as MANIFEST_SOURCE_CATALOGS, aO as ManifestAssetLicense, aP as ManifestAssetLicenseSchema, aQ as ManifestCanvasAffinity, aR as ManifestCanvasAffinitySchema, aS as ManifestEntry, aT as ManifestEntryInput, aU as ManifestEntryKind, aV as ManifestEntryKindSchema, aW as ManifestEntrySchema, aX as ManifestFrameSpec, aY as ManifestFrameSpecSchema, aZ as ManifestSourceCatalog, a_ as ManifestSourceCatalogSchema, a$ as McpServiceDef, b0 as McpServiceDefSchema, b1 as MemoryEffect, b2 as NavigateBackEffect, b3 as NavigateEffect, b4 as NavigateOptions, b5 as NnConfig, b6 as NnLayer, b7 as NotifyEffect, b8 as ObjectEntityField, b9 as OrbitalEntity, ba as OrbitalEntityInput, bb as OrbitalEntitySchema, O as OrbitalId, bc as OrbitalIdSchema, bd as OsEffect, be as PATTERN_TYPES, P as PageId, bf as PageIdSchema, bg as PaletteEntryId, bh as PaletteEntryIdSchema, bi as PatternConfig, bl as PatternType, bm as PersistData, bn as PersistEffect, bo as PersistEmitConfig, bp as RefEffect, R as RelationConfig, bq as RelationConfigSchema, br as RelationEntityField, h as RenderBinding, bs as RenderChildrenMap, bt as RenderItemLambda, i as RenderUIEffect, bu as RenderUINode, bv as ResolvedPatternProps, bw as RestAuthConfig, bx as RestAuthConfigSchema, by as RestServiceDef, bz as RestServiceDefSchema, bA as SEMANTIC_STRING_TYPES, bB as SERVICE_TYPES, bC as SHEET_PROJECTIONS, bD as SPRITE_DIRECTIONS, bE as SPRITE_SHEET_LAYOUT, bF as ScalarEntityField, bG as ScenePos, bH as ScenePosSchema, bI as SemanticAssetRef, bJ as SemanticAssetRefInput, bK as SemanticAssetRefSchema, bL as SemanticStringType, g as ServiceDefinition, bM as ServiceDefinitionSchema, bN as ServiceId, bO as ServiceIdSchema, bP as ServiceParams, bQ as ServiceParamsValue, S as ServiceRef, bR as ServiceRefObject, bS as ServiceRefObjectSchema, bT as ServiceRefSchema, bU as ServiceRefStringSchema, bV as ServiceType, bW as ServiceTypeSchema, bX as SessionEffect, bY as SetEffect, bZ as SheetProjection, b_ as SheetProjectionSchema, b$ as SocketEvents, c0 as SocketEventsSchema, c1 as SocketServiceDef, c2 as SocketServiceDefSchema, c3 as SoundEntry, c4 as SoundEntrySchema, c5 as SpawnEffect, c6 as SpriteDirection, c7 as SpriteDirectionSchema, c8 as SpriteSheetAtlas, c9 as SpriteSheetAtlasInput, ca as SpriteSheetAtlasSchema, cb as SpriteSheetLayout, cc as SubTexture, cd as SubTextureSchema, ce as SwapEffect, cf as TemplatePatternConfig, cg as TextureAtlas, ch as TextureAtlasSchema, ci as ThemeId, cj as ThemeIdSchema, ck as Tilesheet, cl as TilesheetSchema, cm as TraceEffect, cn as TrainConfig, co as TrainEffect, T as TraitId, cp as TraitIdSchema, cq as TypedEffect, U as UISlot, cr as UISlotSchema, cs as UI_SLOTS, ct as VISUAL_STYLES, cu as ValidateEffect, cv as VisualStyle, cw as VisualStyleSchema, cx as WatchEffect, cy as WatchOptions, cz 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 defaultUnitAtlas, cL as deref, cM as deriveCollection, cN as despawn, cO as doEffects, cP as emit, cQ as findService, cR as getDefaultAnimationsForRole, cS as getServiceNames, cT as hasService, cU as idKindOf, cV as idPrefix, cW as isEffect, cX as isEmailValue, cY as isEntityId, cZ as isEventId, c_ as isFieldValue, c$ as isFileValue, d0 as isMcpService, d1 as isOrbitalId, d2 as isPageId, d3 as isPaletteEntryId, d4 as isPhoneValue, d5 as isRestService, d6 as isRuntimeEntity, d7 as isSExprEffect, d8 as isSemanticStringType, d9 as isSemanticStringValue, da as isServiceId, db as isServiceReference, dc as isServiceReferenceObject, dd as isSocketService, de as isThemeId, df as isTraitId, dg as isUrlValue, dh as isUuidValue, di as isValidPatternType, dj as ledgerCurName, dk as ledgerRename, dl as ledgerResolveName, dm as manifestToAssetCatalog, dn as matchAssetQuery, dp as mintId, dq as navigate, dr as navigateBack, ds as notify, dt as parseAssetKey, du as parseAssetQuery, dv as parseServiceRef, dw as persist, dx as persistenceModeAllowsOverrides, dy as ref, dz as renderUI, dA as set, dB as spawn, dC as swap, dD as validateAssetAnimations, dE as watch } from '../effect-BgDiw_bG.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 { l as CONFIG_REF_EVENT_PATTERN, i as CallSiteConfig, j as CallSiteConfigEntry, C as ConfigFieldDeclaration, m as ConfigFieldDeclarationSchema, n as ConfigFieldItemsDeclaration, o as ConfigRefEventError, D as DeclaredTraitConfig, p as DeclaredTraitConfigSchema, q as EntityFieldContract, r as EntityFieldContractSchema, s as Event, t as EventInput, E as EventPayloadField, u as EventPayloadFieldSchema, v as EventSchema, w as EventScope, x as EventScopeSchema, G as Guard, y as GuardInput, z as GuardSchema, L as ListenSource, A as ListenSourceSchema, O as OrbitalTraitRef, B as OrbitalTraitRefSchema, P as PayloadField, F as PayloadFieldSchema, H as PayloadTypeWhen, I as PayloadTypeWhenSchema, J as PresentationType, R as REFERENCE_CONFIG_TYPES, K as ReferenceConfigType, M as RequiredField, N as RequiredFieldSchema, Q as SECRET_CONFIG_TYPES, U as SecretConfigType, S as State, V as StateInput, W as StateMachine, X as StateMachineInput, Y as StateMachineSchema, Z as StateSchema, _ as TickIntervalSchema, h as Trait, $ as TraitCategory, a0 as TraitCategorySchema, b as TraitConfig, c as TraitConfigObject, a1 as TraitConfigSchema, e as TraitConfigValue, a2 as TraitConfigValueSchema, a3 as TraitDataEntity, a4 as TraitDataEntitySchema, f as TraitEntityField, a5 as TraitEntityFieldSchema, k as TraitEventContract, a6 as TraitEventContractSchema, T as TraitEventListener, a7 as TraitEventListenerSchema, a8 as TraitInput, d as TraitRef, a9 as TraitRefSchema, a as TraitReference, aa as TraitReferenceInput, ab as TraitReferenceSchema, ac as TraitSchema, ad as TraitTick, ae as TraitTickSchema, af as TraitUIBinding, ag as TraitUIBindingSchema, ah as Transition, ai as TransitionInput, aj as TransitionSchema, ak as configRefEventKnob, al as getTraitConfig, am as getTraitName, an as isCallSiteConfigDeclaration, ao as isCircuitEvent, ap as isInlineTrait, aq as isReferenceConfigType, ar as isSecretConfigType, as as maskSecretConfigValues, at as normalizeCallSiteConfigToValues, au as normalizeTraitRef, av 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-ChYsqVJj.js';
|
|
5
|
+
export { l as CONFIG_REF_EVENT_PATTERN, i as CallSiteConfig, j as CallSiteConfigEntry, C as ConfigFieldDeclaration, m as ConfigFieldDeclarationSchema, n as ConfigFieldItemsDeclaration, o as ConfigRefEventError, D as DeclaredTraitConfig, p as DeclaredTraitConfigSchema, q as EntityFieldContract, r as EntityFieldContractSchema, s as Event, t as EventInput, E as EventPayloadField, u as EventPayloadFieldSchema, v as EventSchema, w as EventScope, x as EventScopeSchema, G as Guard, y as GuardInput, z as GuardSchema, L as ListenSource, A as ListenSourceSchema, O as OrbitalTraitRef, B as OrbitalTraitRefSchema, P as PayloadField, F as PayloadFieldSchema, H as PayloadTypeWhen, I as PayloadTypeWhenSchema, J as PresentationType, R as REFERENCE_CONFIG_TYPES, K as ReferenceConfigType, M as RequiredField, N as RequiredFieldSchema, Q as SECRET_CONFIG_TYPES, U as SecretConfigType, S as State, V as StateInput, W as StateMachine, X as StateMachineInput, Y as StateMachineSchema, Z as StateSchema, _ as TickIntervalSchema, h as Trait, $ as TraitCategory, a0 as TraitCategorySchema, b as TraitConfig, c as TraitConfigObject, a1 as TraitConfigSchema, e as TraitConfigValue, a2 as TraitConfigValueSchema, a3 as TraitDataEntity, a4 as TraitDataEntitySchema, f as TraitEntityField, a5 as TraitEntityFieldSchema, k as TraitEventContract, a6 as TraitEventContractSchema, T as TraitEventListener, a7 as TraitEventListenerSchema, a8 as TraitInput, d as TraitRef, a9 as TraitRefSchema, a as TraitReference, aa as TraitReferenceInput, ab as TraitReferenceSchema, ac as TraitSchema, ad as TraitTick, ae as TraitTickSchema, af as TraitUIBinding, ag as TraitUIBindingSchema, ah as Transition, ai as TransitionInput, aj as TransitionSchema, ak as configRefEventKnob, al as getTraitConfig, am as getTraitName, an as isCallSiteConfigDeclaration, ao as isCircuitEvent, ap as isInlineTrait, aq as isReferenceConfigType, ar as isSecretConfigType, as as maskSecretConfigValues, at as normalizeCallSiteConfigToValues, au as normalizeTraitRef, av as resolveConfigRefEventName } from '../trait-pavNlGqm.js';
|
|
6
6
|
import 'zod';
|
|
7
|
-
import '../types-
|
|
7
|
+
import '../types-CCAmdxcH.js';
|
|
8
8
|
import '../builders.js';
|
package/dist/types/index.js
CHANGED
|
@@ -1325,6 +1325,14 @@ var EntityFieldContractSchema = z.object({
|
|
|
1325
1325
|
requires: z.array(z.string()),
|
|
1326
1326
|
provides: z.array(z.string())
|
|
1327
1327
|
});
|
|
1328
|
+
var EffectSiteSchema = z.enum(["transition", "tick"]);
|
|
1329
|
+
var EffectUseSchema = z.object({
|
|
1330
|
+
kind: z.string(),
|
|
1331
|
+
resource: z.string().optional(),
|
|
1332
|
+
resolved: z.boolean().optional(),
|
|
1333
|
+
site: EffectSiteSchema.optional()
|
|
1334
|
+
});
|
|
1335
|
+
var EffectRowSchema = z.array(EffectUseSchema);
|
|
1328
1336
|
var SourceBehaviorMetadataSchema = z.object({
|
|
1329
1337
|
behavior: z.string().min(1),
|
|
1330
1338
|
alias: z.string().min(1),
|
|
@@ -1343,6 +1351,7 @@ var TraitSchema = z.object({
|
|
|
1343
1351
|
category: TraitCategorySchema.optional(),
|
|
1344
1352
|
entityRebindable: z.boolean().optional(),
|
|
1345
1353
|
entityContract: EntityFieldContractSchema.optional(),
|
|
1354
|
+
effectRow: EffectRowSchema.optional(),
|
|
1346
1355
|
entityBindingDescription: z.string().optional(),
|
|
1347
1356
|
entityBindingSynonyms: z.string().optional(),
|
|
1348
1357
|
capabilities: z.array(z.string()).optional(),
|
|
@@ -2743,6 +2752,7 @@ var PATTERN_TYPES = [
|
|
|
2743
2752
|
"trend-indicator",
|
|
2744
2753
|
"typewriter-text",
|
|
2745
2754
|
"typography",
|
|
2755
|
+
"ui-slot-component",
|
|
2746
2756
|
"ui-slot-renderer",
|
|
2747
2757
|
"upload-drop-zone",
|
|
2748
2758
|
"version-diff",
|