@almadar/core 10.78.0 → 10.80.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 +8 -3
- package/dist/builders.js +27 -5
- package/dist/builders.js.map +1 -1
- package/dist/{effect-CW3s399G.d.ts → effect-C4uehm-r.d.ts} +1 -1
- package/dist/{entityAccess-B-CK9j-I.d.ts → entityAccess-BMKFgmsc.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +261 -240
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +27 -5
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/{index-C5Firrg9.d.ts → index-DqUnw2Oo.d.ts} +4 -4
- package/dist/index.d.ts +10 -10
- package/dist/index.js +306 -254
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/mock/index.js +13 -0
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +536 -357
- package/dist/patterns/index.js +269 -244
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +262 -241
- package/dist/patterns/registry.json +262 -241
- package/dist/{schema-BG7mDO7m.d.ts → schema-Cma07_18.d.ts} +301 -38
- package/dist/{trait-jWk0BInU.d.ts → trait-BXkQKZbO.d.ts} +120 -2
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +27 -6
- package/dist/types/index.js.map +1 -1
- package/dist/{types-DwAE_Qu-.d.ts → types-DoAKLgCZ.d.ts} +2 -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-C4uehm-r.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
|
|
|
@@ -49,6 +49,21 @@ declare const StateSchema: z.ZodObject<{
|
|
|
49
49
|
/**
|
|
50
50
|
* Payload field definition for events
|
|
51
51
|
*/
|
|
52
|
+
/**
|
|
53
|
+
* One condition of a payload field's `typeWhen` conditional list: "when
|
|
54
|
+
* config knob `knob` resolves to the literal whose string spelling is
|
|
55
|
+
* `equals`, this field's type is `type`". Declared DATA — authored in
|
|
56
|
+
* `.lolo` as a type-level `match` block (§25 — REPLACED the `@typeWhen`
|
|
57
|
+
* annotation spelling outright) — never a compiler-side predicate over a
|
|
58
|
+
* specific knob name. This wire shape is `match`'s lowered form, unchanged.
|
|
59
|
+
* Mirrors Rust `PayloadTypeWhen`.
|
|
60
|
+
*/
|
|
61
|
+
type PayloadTypeWhen = {
|
|
62
|
+
knob: string;
|
|
63
|
+
equals: string;
|
|
64
|
+
type: string;
|
|
65
|
+
};
|
|
66
|
+
declare const PayloadTypeWhenSchema: z.ZodType<PayloadTypeWhen>;
|
|
52
67
|
type PayloadField = {
|
|
53
68
|
name: string;
|
|
54
69
|
/**
|
|
@@ -62,6 +77,12 @@ type PayloadField = {
|
|
|
62
77
|
required?: boolean;
|
|
63
78
|
/** Structured property schema for object-typed payload fields (recursive). */
|
|
64
79
|
properties?: ReadonlyArray<PayloadField>;
|
|
80
|
+
/**
|
|
81
|
+
* Declared knob-conditional type list (`match` in `.lolo`, §25). Resolved
|
|
82
|
+
* and cleared once composed — the emitted `.orb` carries only the
|
|
83
|
+
* resolved truth, never the conditional.
|
|
84
|
+
*/
|
|
85
|
+
typeWhen?: ReadonlyArray<PayloadTypeWhen>;
|
|
65
86
|
};
|
|
66
87
|
declare const PayloadFieldSchema: z.ZodType<PayloadField>;
|
|
67
88
|
/**
|
|
@@ -551,6 +572,8 @@ type ConfigFieldItemsDeclaration = {
|
|
|
551
572
|
readonly properties?: Readonly<Record<string, TraitEntityField>>;
|
|
552
573
|
/** Nested per-item schema for arrays of arrays (recursive). */
|
|
553
574
|
readonly items?: ConfigFieldItemsDeclaration;
|
|
575
|
+
/** Union member names when the item type is a union — including a by-name recursive back-reference. */
|
|
576
|
+
readonly values?: ReadonlyArray<string>;
|
|
554
577
|
};
|
|
555
578
|
declare const ConfigFieldDeclarationSchema: z.ZodType<ConfigFieldDeclaration>;
|
|
556
579
|
/**
|
|
@@ -737,6 +760,13 @@ type EventPayloadField = {
|
|
|
737
760
|
entityType?: string;
|
|
738
761
|
/** Structured property schema for object-typed payload fields (recursive). */
|
|
739
762
|
properties?: ReadonlyArray<EventPayloadField>;
|
|
763
|
+
/**
|
|
764
|
+
* Declared knob-conditional type list (`match` in `.lolo`, §25 —
|
|
765
|
+
* REPLACED the `@typeWhen` annotation spelling outright) — see
|
|
766
|
+
* `PayloadTypeWhen` in `state-machine.ts`. Resolved and cleared once
|
|
767
|
+
* composed; the emitted `.orb` carries only the resolved truth.
|
|
768
|
+
*/
|
|
769
|
+
typeWhen?: ReadonlyArray<PayloadTypeWhen>;
|
|
740
770
|
};
|
|
741
771
|
declare const EventPayloadFieldSchema: z.ZodType<EventPayloadField>;
|
|
742
772
|
/**
|
|
@@ -767,6 +797,15 @@ type TraitEventContract = {
|
|
|
767
797
|
* vocabulary: doing so forbids the very name it exists to introduce.
|
|
768
798
|
*/
|
|
769
799
|
definerKnob?: string;
|
|
800
|
+
/**
|
|
801
|
+
* `true` when `scope` was set by a CALL-SITE `emitsScope` override (the
|
|
802
|
+
* inline phase applies it), not by the source atom's own `-> external`
|
|
803
|
+
* declaration. An atom declaring its emits external is an unexamined
|
|
804
|
+
* default (nearly every atom does), while a composition restating it is
|
|
805
|
+
* the consumer's own deferral — the dead-control check honours it as an
|
|
806
|
+
* exemption. See ORB-X-EXTERNAL-EMIT-EXEMPTION.
|
|
807
|
+
*/
|
|
808
|
+
scopeOverridden?: boolean;
|
|
770
809
|
/** Payload schema — declarative type info for the event's payload.
|
|
771
810
|
* Distinct from the runtime payload value (`@payload.X` bindings,
|
|
772
811
|
* `EventPayload`) which is a separate concept. */
|
|
@@ -822,6 +861,7 @@ declare const TraitEventContractSchema: z.ZodObject<{
|
|
|
822
861
|
synonyms: z.ZodOptional<z.ZodString>;
|
|
823
862
|
tier: z.ZodOptional<z.ZodString>;
|
|
824
863
|
definerKnob: z.ZodOptional<z.ZodString>;
|
|
864
|
+
scopeOverridden: z.ZodOptional<z.ZodBoolean>;
|
|
825
865
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<EventPayloadField, z.ZodTypeDef, EventPayloadField>, "many">>;
|
|
826
866
|
scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
|
|
827
867
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -833,6 +873,7 @@ declare const TraitEventContractSchema: z.ZodObject<{
|
|
|
833
873
|
tier?: string | undefined;
|
|
834
874
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
835
875
|
definerKnob?: string | undefined;
|
|
876
|
+
scopeOverridden?: boolean | undefined;
|
|
836
877
|
}, {
|
|
837
878
|
event: string;
|
|
838
879
|
description?: string | undefined;
|
|
@@ -842,6 +883,7 @@ declare const TraitEventContractSchema: z.ZodObject<{
|
|
|
842
883
|
tier?: string | undefined;
|
|
843
884
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
844
885
|
definerKnob?: string | undefined;
|
|
886
|
+
scopeOverridden?: boolean | undefined;
|
|
845
887
|
}>;
|
|
846
888
|
/**
|
|
847
889
|
* Event listener for trait communication.
|
|
@@ -1103,6 +1145,15 @@ type TraitReference = {
|
|
|
1103
1145
|
name?: string;
|
|
1104
1146
|
/** Phase F: rename atom event keys at the call site, e.g. {OPEN: "ADD_ITEM"} */
|
|
1105
1147
|
events?: Record<string, string>;
|
|
1148
|
+
/**
|
|
1149
|
+
* 3-II trait type-parameter arguments (`:: p SomeType` in `.lolo`):
|
|
1150
|
+
* declared-param name → type-vocabulary name (an entity, a primitive incl.
|
|
1151
|
+
* `scalar`, or a struct alias from the AUTHORING file's `types` map).
|
|
1152
|
+
* Present on pre-inline registry references only — the inline phase
|
|
1153
|
+
* consumes it while resolving `$<name>` payload sentinels and it never
|
|
1154
|
+
* appears in a final composed `.orb`.
|
|
1155
|
+
*/
|
|
1156
|
+
typeArgs?: Record<string, string>;
|
|
1106
1157
|
/** V4 dual-carry id sibling of `events` (keys = baked event names resolved to ids) — optional until the Phase-7 flip. */
|
|
1107
1158
|
eventIds?: Record<string, EventId>;
|
|
1108
1159
|
/**
|
|
@@ -1176,6 +1227,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1176
1227
|
name: z.ZodOptional<z.ZodString>;
|
|
1177
1228
|
events: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1178
1229
|
eventIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EventId, string>>>;
|
|
1230
|
+
typeArgs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1179
1231
|
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1180
1232
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodType<ConfigFieldDeclaration, z.ZodTypeDef, ConfigFieldDeclaration>, z.ZodType<TraitConfigValue, z.ZodTypeDef, TraitConfigValue>]>>>;
|
|
1181
1233
|
appliesTo: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1317,6 +1369,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1317
1369
|
appliesTo?: string[] | undefined;
|
|
1318
1370
|
linkedEntityId?: EntityId | undefined;
|
|
1319
1371
|
eventIds?: Record<string, EventId> | undefined;
|
|
1372
|
+
typeArgs?: Record<string, string> | undefined;
|
|
1320
1373
|
emitsScope?: "internal" | "external" | undefined;
|
|
1321
1374
|
}, {
|
|
1322
1375
|
ref: string;
|
|
@@ -1357,6 +1410,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1357
1410
|
appliesTo?: string[] | undefined;
|
|
1358
1411
|
linkedEntityId?: string | undefined;
|
|
1359
1412
|
eventIds?: Record<string, string> | undefined;
|
|
1413
|
+
typeArgs?: Record<string, string> | undefined;
|
|
1360
1414
|
emitsScope?: "internal" | "external" | undefined;
|
|
1361
1415
|
}>, {
|
|
1362
1416
|
ref: string;
|
|
@@ -1397,6 +1451,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1397
1451
|
appliesTo?: string[] | undefined;
|
|
1398
1452
|
linkedEntityId?: EntityId | undefined;
|
|
1399
1453
|
eventIds?: Record<string, EventId> | undefined;
|
|
1454
|
+
typeArgs?: Record<string, string> | undefined;
|
|
1400
1455
|
emitsScope?: "internal" | "external" | undefined;
|
|
1401
1456
|
}, {
|
|
1402
1457
|
ref: string;
|
|
@@ -1437,6 +1492,7 @@ declare const TraitReferenceSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1437
1492
|
appliesTo?: string[] | undefined;
|
|
1438
1493
|
linkedEntityId?: string | undefined;
|
|
1439
1494
|
eventIds?: Record<string, string> | undefined;
|
|
1495
|
+
typeArgs?: Record<string, string> | undefined;
|
|
1440
1496
|
emitsScope?: "internal" | "external" | undefined;
|
|
1441
1497
|
}>;
|
|
1442
1498
|
/**
|
|
@@ -1694,6 +1750,12 @@ type Trait = {
|
|
|
1694
1750
|
* `linkedEntity` without re-walking the import graph at runtime.
|
|
1695
1751
|
*/
|
|
1696
1752
|
sourceEntityDefinition?: Entity;
|
|
1753
|
+
/**
|
|
1754
|
+
* Increment 3-II: this trait's own declared type parameters. Present
|
|
1755
|
+
* only on an atom's DECLARING inline trait (never authored on a
|
|
1756
|
+
* reference); survives cloning into a consumer's composed schema.
|
|
1757
|
+
*/
|
|
1758
|
+
typeParams?: TraitTypeParamDef[];
|
|
1697
1759
|
};
|
|
1698
1760
|
/**
|
|
1699
1761
|
* Provenance attached to a trait that was cloned from a `uses[]` import
|
|
@@ -1711,6 +1773,28 @@ type SourceBehaviorMetadata = {
|
|
|
1711
1773
|
* call-site `name:` rename. */
|
|
1712
1774
|
originalName: string;
|
|
1713
1775
|
};
|
|
1776
|
+
/**
|
|
1777
|
+
* One trait-level type parameter — `(V : Type, R : Type)` in
|
|
1778
|
+
* `trait Name (V : Type, R : Type) -> Entity { ... }`. Present only on an
|
|
1779
|
+
* atom's DECLARING inline trait; survives cloning into a consumer's composed
|
|
1780
|
+
* schema so the inline phase can read each param's `kind` when resolving a
|
|
1781
|
+
* surviving `"$<name>"` payload sentinel. `kind` is one of the six alias
|
|
1782
|
+
* type-parameter kind names (`Type`, `Entity`, `Trait`, `Page`, `Orbital`,
|
|
1783
|
+
* `Event`) — in practice `Type` and `Entity` are the two meaningful kinds
|
|
1784
|
+
* for a trait param today.
|
|
1785
|
+
*/
|
|
1786
|
+
type TraitTypeParamDef = {
|
|
1787
|
+
name: string;
|
|
1788
|
+
kind: string;
|
|
1789
|
+
/**
|
|
1790
|
+
* Declaration default (`(r : Type = <name>)`) — a primitive name (incl.
|
|
1791
|
+
* `scalar`), an entity name, or a struct-alias name, all resolved in
|
|
1792
|
+
* the atom's own file. Consulted only when no call-site `::` arg was
|
|
1793
|
+
* supplied (and, for Entity-kind, only when `linkedEntity` also gave no
|
|
1794
|
+
* default).
|
|
1795
|
+
*/
|
|
1796
|
+
default?: string;
|
|
1797
|
+
};
|
|
1714
1798
|
declare const TraitSchema: z.ZodObject<{
|
|
1715
1799
|
id: z.ZodOptional<z.ZodEffects<z.ZodString, TraitId, string>>;
|
|
1716
1800
|
name: z.ZodString;
|
|
@@ -1997,6 +2081,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
1997
2081
|
synonyms: z.ZodOptional<z.ZodString>;
|
|
1998
2082
|
tier: z.ZodOptional<z.ZodString>;
|
|
1999
2083
|
definerKnob: z.ZodOptional<z.ZodString>;
|
|
2084
|
+
scopeOverridden: z.ZodOptional<z.ZodBoolean>;
|
|
2000
2085
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<EventPayloadField, z.ZodTypeDef, EventPayloadField>, "many">>;
|
|
2001
2086
|
scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
|
|
2002
2087
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2008,6 +2093,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2008
2093
|
tier?: string | undefined;
|
|
2009
2094
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
2010
2095
|
definerKnob?: string | undefined;
|
|
2096
|
+
scopeOverridden?: boolean | undefined;
|
|
2011
2097
|
}, {
|
|
2012
2098
|
event: string;
|
|
2013
2099
|
description?: string | undefined;
|
|
@@ -2017,6 +2103,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2017
2103
|
tier?: string | undefined;
|
|
2018
2104
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
2019
2105
|
definerKnob?: string | undefined;
|
|
2106
|
+
scopeOverridden?: boolean | undefined;
|
|
2020
2107
|
}>, "many">>;
|
|
2021
2108
|
listens: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2022
2109
|
event: z.ZodString;
|
|
@@ -2307,6 +2394,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2307
2394
|
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
2308
2395
|
} | undefined;
|
|
2309
2396
|
}>>;
|
|
2397
|
+
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
2310
2398
|
}, "strip", z.ZodTypeAny, {
|
|
2311
2399
|
name: string;
|
|
2312
2400
|
scope: "collection" | "instance";
|
|
@@ -2337,6 +2425,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2337
2425
|
tier?: string | undefined;
|
|
2338
2426
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
2339
2427
|
definerKnob?: string | undefined;
|
|
2428
|
+
scopeOverridden?: boolean | undefined;
|
|
2340
2429
|
}[] | undefined;
|
|
2341
2430
|
listens?: {
|
|
2342
2431
|
event: string;
|
|
@@ -2478,6 +2567,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2478
2567
|
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
2479
2568
|
} | undefined;
|
|
2480
2569
|
} | undefined;
|
|
2570
|
+
typeParams?: TraitTypeParamDef[] | undefined;
|
|
2481
2571
|
}, {
|
|
2482
2572
|
name: string;
|
|
2483
2573
|
scope: "collection" | "instance";
|
|
@@ -2508,6 +2598,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2508
2598
|
tier?: string | undefined;
|
|
2509
2599
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
2510
2600
|
definerKnob?: string | undefined;
|
|
2601
|
+
scopeOverridden?: boolean | undefined;
|
|
2511
2602
|
}[] | undefined;
|
|
2512
2603
|
listens?: {
|
|
2513
2604
|
event: string;
|
|
@@ -2649,6 +2740,7 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
2649
2740
|
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
2650
2741
|
} | undefined;
|
|
2651
2742
|
} | undefined;
|
|
2743
|
+
typeParams?: TraitTypeParamDef[] | undefined;
|
|
2652
2744
|
}>;
|
|
2653
2745
|
declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<{
|
|
2654
2746
|
ref: z.ZodString;
|
|
@@ -2660,6 +2752,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
2660
2752
|
name: z.ZodOptional<z.ZodString>;
|
|
2661
2753
|
events: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2662
2754
|
eventIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EventId, string>>>;
|
|
2755
|
+
typeArgs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2663
2756
|
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2664
2757
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodType<ConfigFieldDeclaration, z.ZodTypeDef, ConfigFieldDeclaration>, z.ZodType<TraitConfigValue, z.ZodTypeDef, TraitConfigValue>]>>>;
|
|
2665
2758
|
appliesTo: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -2801,6 +2894,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
2801
2894
|
appliesTo?: string[] | undefined;
|
|
2802
2895
|
linkedEntityId?: EntityId | undefined;
|
|
2803
2896
|
eventIds?: Record<string, EventId> | undefined;
|
|
2897
|
+
typeArgs?: Record<string, string> | undefined;
|
|
2804
2898
|
emitsScope?: "internal" | "external" | undefined;
|
|
2805
2899
|
}, {
|
|
2806
2900
|
ref: string;
|
|
@@ -2841,6 +2935,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
2841
2935
|
appliesTo?: string[] | undefined;
|
|
2842
2936
|
linkedEntityId?: string | undefined;
|
|
2843
2937
|
eventIds?: Record<string, string> | undefined;
|
|
2938
|
+
typeArgs?: Record<string, string> | undefined;
|
|
2844
2939
|
emitsScope?: "internal" | "external" | undefined;
|
|
2845
2940
|
}>, {
|
|
2846
2941
|
ref: string;
|
|
@@ -2881,6 +2976,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
2881
2976
|
appliesTo?: string[] | undefined;
|
|
2882
2977
|
linkedEntityId?: EntityId | undefined;
|
|
2883
2978
|
eventIds?: Record<string, EventId> | undefined;
|
|
2979
|
+
typeArgs?: Record<string, string> | undefined;
|
|
2884
2980
|
emitsScope?: "internal" | "external" | undefined;
|
|
2885
2981
|
}, {
|
|
2886
2982
|
ref: string;
|
|
@@ -2921,6 +3017,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
2921
3017
|
appliesTo?: string[] | undefined;
|
|
2922
3018
|
linkedEntityId?: string | undefined;
|
|
2923
3019
|
eventIds?: Record<string, string> | undefined;
|
|
3020
|
+
typeArgs?: Record<string, string> | undefined;
|
|
2924
3021
|
emitsScope?: "internal" | "external" | undefined;
|
|
2925
3022
|
}>, z.ZodObject<{
|
|
2926
3023
|
id: z.ZodOptional<z.ZodEffects<z.ZodString, TraitId, string>>;
|
|
@@ -3208,6 +3305,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
3208
3305
|
synonyms: z.ZodOptional<z.ZodString>;
|
|
3209
3306
|
tier: z.ZodOptional<z.ZodString>;
|
|
3210
3307
|
definerKnob: z.ZodOptional<z.ZodString>;
|
|
3308
|
+
scopeOverridden: z.ZodOptional<z.ZodBoolean>;
|
|
3211
3309
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<EventPayloadField, z.ZodTypeDef, EventPayloadField>, "many">>;
|
|
3212
3310
|
scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
|
|
3213
3311
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3219,6 +3317,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
3219
3317
|
tier?: string | undefined;
|
|
3220
3318
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
3221
3319
|
definerKnob?: string | undefined;
|
|
3320
|
+
scopeOverridden?: boolean | undefined;
|
|
3222
3321
|
}, {
|
|
3223
3322
|
event: string;
|
|
3224
3323
|
description?: string | undefined;
|
|
@@ -3228,6 +3327,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
3228
3327
|
tier?: string | undefined;
|
|
3229
3328
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
3230
3329
|
definerKnob?: string | undefined;
|
|
3330
|
+
scopeOverridden?: boolean | undefined;
|
|
3231
3331
|
}>, "many">>;
|
|
3232
3332
|
listens: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3233
3333
|
event: z.ZodString;
|
|
@@ -3518,6 +3618,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
3518
3618
|
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
3519
3619
|
} | undefined;
|
|
3520
3620
|
}>>;
|
|
3621
|
+
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
3521
3622
|
}, "strip", z.ZodTypeAny, {
|
|
3522
3623
|
name: string;
|
|
3523
3624
|
scope: "collection" | "instance";
|
|
@@ -3548,6 +3649,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
3548
3649
|
tier?: string | undefined;
|
|
3549
3650
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
3550
3651
|
definerKnob?: string | undefined;
|
|
3652
|
+
scopeOverridden?: boolean | undefined;
|
|
3551
3653
|
}[] | undefined;
|
|
3552
3654
|
listens?: {
|
|
3553
3655
|
event: string;
|
|
@@ -3689,6 +3791,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
3689
3791
|
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
3690
3792
|
} | undefined;
|
|
3691
3793
|
} | undefined;
|
|
3794
|
+
typeParams?: TraitTypeParamDef[] | undefined;
|
|
3692
3795
|
}, {
|
|
3693
3796
|
name: string;
|
|
3694
3797
|
scope: "collection" | "instance";
|
|
@@ -3719,6 +3822,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
3719
3822
|
tier?: string | undefined;
|
|
3720
3823
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
3721
3824
|
definerKnob?: string | undefined;
|
|
3825
|
+
scopeOverridden?: boolean | undefined;
|
|
3722
3826
|
}[] | undefined;
|
|
3723
3827
|
listens?: {
|
|
3724
3828
|
event: string;
|
|
@@ -3860,6 +3964,7 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodObject<
|
|
|
3860
3964
|
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
3861
3965
|
} | undefined;
|
|
3862
3966
|
} | undefined;
|
|
3967
|
+
typeParams?: TraitTypeParamDef[] | undefined;
|
|
3863
3968
|
}>]>;
|
|
3864
3969
|
/**
|
|
3865
3970
|
* Check if a trait ref is an inline Trait definition
|
|
@@ -3941,6 +4046,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
3941
4046
|
name: z.ZodOptional<z.ZodString>;
|
|
3942
4047
|
events: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3943
4048
|
eventIds: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodString, EventId, string>>>;
|
|
4049
|
+
typeArgs: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3944
4050
|
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3945
4051
|
config: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodType<ConfigFieldDeclaration, z.ZodTypeDef, ConfigFieldDeclaration>, z.ZodType<TraitConfigValue, z.ZodTypeDef, TraitConfigValue>]>>>;
|
|
3946
4052
|
appliesTo: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -4082,6 +4188,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
4082
4188
|
appliesTo?: string[] | undefined;
|
|
4083
4189
|
linkedEntityId?: EntityId | undefined;
|
|
4084
4190
|
eventIds?: Record<string, EventId> | undefined;
|
|
4191
|
+
typeArgs?: Record<string, string> | undefined;
|
|
4085
4192
|
emitsScope?: "internal" | "external" | undefined;
|
|
4086
4193
|
}, {
|
|
4087
4194
|
ref: string;
|
|
@@ -4122,6 +4229,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
4122
4229
|
appliesTo?: string[] | undefined;
|
|
4123
4230
|
linkedEntityId?: string | undefined;
|
|
4124
4231
|
eventIds?: Record<string, string> | undefined;
|
|
4232
|
+
typeArgs?: Record<string, string> | undefined;
|
|
4125
4233
|
emitsScope?: "internal" | "external" | undefined;
|
|
4126
4234
|
}>, {
|
|
4127
4235
|
ref: string;
|
|
@@ -4162,6 +4270,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
4162
4270
|
appliesTo?: string[] | undefined;
|
|
4163
4271
|
linkedEntityId?: EntityId | undefined;
|
|
4164
4272
|
eventIds?: Record<string, EventId> | undefined;
|
|
4273
|
+
typeArgs?: Record<string, string> | undefined;
|
|
4165
4274
|
emitsScope?: "internal" | "external" | undefined;
|
|
4166
4275
|
}, {
|
|
4167
4276
|
ref: string;
|
|
@@ -4202,6 +4311,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
4202
4311
|
appliesTo?: string[] | undefined;
|
|
4203
4312
|
linkedEntityId?: string | undefined;
|
|
4204
4313
|
eventIds?: Record<string, string> | undefined;
|
|
4314
|
+
typeArgs?: Record<string, string> | undefined;
|
|
4205
4315
|
emitsScope?: "internal" | "external" | undefined;
|
|
4206
4316
|
}>, z.ZodObject<{
|
|
4207
4317
|
id: z.ZodOptional<z.ZodEffects<z.ZodString, TraitId, string>>;
|
|
@@ -4489,6 +4599,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
4489
4599
|
synonyms: z.ZodOptional<z.ZodString>;
|
|
4490
4600
|
tier: z.ZodOptional<z.ZodString>;
|
|
4491
4601
|
definerKnob: z.ZodOptional<z.ZodString>;
|
|
4602
|
+
scopeOverridden: z.ZodOptional<z.ZodBoolean>;
|
|
4492
4603
|
payloadSchema: z.ZodOptional<z.ZodArray<z.ZodType<EventPayloadField, z.ZodTypeDef, EventPayloadField>, "many">>;
|
|
4493
4604
|
scope: z.ZodOptional<z.ZodEnum<["internal", "external"]>>;
|
|
4494
4605
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4500,6 +4611,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
4500
4611
|
tier?: string | undefined;
|
|
4501
4612
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
4502
4613
|
definerKnob?: string | undefined;
|
|
4614
|
+
scopeOverridden?: boolean | undefined;
|
|
4503
4615
|
}, {
|
|
4504
4616
|
event: string;
|
|
4505
4617
|
description?: string | undefined;
|
|
@@ -4509,6 +4621,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
4509
4621
|
tier?: string | undefined;
|
|
4510
4622
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
4511
4623
|
definerKnob?: string | undefined;
|
|
4624
|
+
scopeOverridden?: boolean | undefined;
|
|
4512
4625
|
}>, "many">>;
|
|
4513
4626
|
listens: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4514
4627
|
event: z.ZodString;
|
|
@@ -4799,6 +4912,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
4799
4912
|
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
4800
4913
|
} | undefined;
|
|
4801
4914
|
}>>;
|
|
4915
|
+
typeParams: z.ZodOptional<z.ZodArray<z.ZodType<TraitTypeParamDef, z.ZodTypeDef, TraitTypeParamDef>, "many">>;
|
|
4802
4916
|
}, "strip", z.ZodTypeAny, {
|
|
4803
4917
|
name: string;
|
|
4804
4918
|
scope: "collection" | "instance";
|
|
@@ -4829,6 +4943,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
4829
4943
|
tier?: string | undefined;
|
|
4830
4944
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
4831
4945
|
definerKnob?: string | undefined;
|
|
4946
|
+
scopeOverridden?: boolean | undefined;
|
|
4832
4947
|
}[] | undefined;
|
|
4833
4948
|
listens?: {
|
|
4834
4949
|
event: string;
|
|
@@ -4970,6 +5085,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
4970
5085
|
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
4971
5086
|
} | undefined;
|
|
4972
5087
|
} | undefined;
|
|
5088
|
+
typeParams?: TraitTypeParamDef[] | undefined;
|
|
4973
5089
|
}, {
|
|
4974
5090
|
name: string;
|
|
4975
5091
|
scope: "collection" | "instance";
|
|
@@ -5000,6 +5116,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
5000
5116
|
tier?: string | undefined;
|
|
5001
5117
|
payloadSchema?: EventPayloadField[] | undefined;
|
|
5002
5118
|
definerKnob?: string | undefined;
|
|
5119
|
+
scopeOverridden?: boolean | undefined;
|
|
5003
5120
|
}[] | undefined;
|
|
5004
5121
|
listens?: {
|
|
5005
5122
|
event: string;
|
|
@@ -5141,6 +5258,7 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodEffects<z.Zod
|
|
|
5141
5258
|
aspect?: "1:1" | "16:9" | "5:7" | "8:1" | undefined;
|
|
5142
5259
|
} | undefined;
|
|
5143
5260
|
} | undefined;
|
|
5261
|
+
typeParams?: TraitTypeParamDef[] | undefined;
|
|
5144
5262
|
}>]>;
|
|
5145
5263
|
|
|
5146
|
-
export {
|
|
5264
|
+
export { type TraitCategory as $, ListenSourceSchema as A, OrbitalTraitRefSchema as B, type ConfigFieldDeclaration as C, type DeclaredTraitConfig as D, type EventPayloadField as E, PayloadFieldSchema as F, type Guard as G, type PayloadTypeWhen as H, PayloadTypeWhenSchema as I, type PresentationType as J, type ReferenceConfigType as K, type ListenSource as L, type RequiredField as M, RequiredFieldSchema as N, type OrbitalTraitRef as O, type PayloadField as P, SECRET_CONFIG_TYPES as Q, REFERENCE_CONFIG_TYPES as R, type State as S, type TraitEventListener as T, type SecretConfigType as U, type StateInput as V, type StateMachine as W, type StateMachineInput as X, StateMachineSchema as Y, StateSchema as Z, TickIntervalSchema as _, type TraitReference as a, TraitCategorySchema as a0, TraitConfigSchema as a1, TraitConfigValueSchema as a2, type TraitDataEntity as a3, TraitDataEntitySchema as a4, TraitEntityFieldSchema as a5, TraitEventContractSchema as a6, TraitEventListenerSchema as a7, type TraitInput as a8, TraitRefSchema as a9, type TraitReferenceInput as aa, TraitReferenceSchema as ab, TraitSchema as ac, type TraitTick as ad, TraitTickSchema as ae, type TraitUIBinding as af, TraitUIBindingSchema as ag, type Transition as ah, type TransitionInput as ai, TransitionSchema as aj, configRefEventKnob as ak, getTraitConfig as al, getTraitName as am, isCallSiteConfigDeclaration as an, isCircuitEvent as ao, isInlineTrait as ap, isReferenceConfigType as aq, isSecretConfigType as ar, maskSecretConfigValues as as, normalizeCallSiteConfigToValues as at, normalizeTraitRef as au, resolveConfigRefEventName as av, type TraitScope as aw, type TraitConfig as b, type TraitConfigObject as c, type TraitRef as d, type TraitConfigValue as e, type TraitEntityField as f, type TraitTypeParamDef as g, type Trait as h, type CallSiteConfig as i, type CallSiteConfigEntry as j, type TraitEventContract as k, CONFIG_REF_EVENT_PATTERN as l, ConfigFieldDeclarationSchema as m, type ConfigFieldItemsDeclaration as n, type ConfigRefEventError as o, DeclaredTraitConfigSchema as p, type EntityFieldContract as q, EntityFieldContractSchema as r, type Event as s, type EventInput as t, EventPayloadFieldSchema as u, EventSchema as v, type EventScope as w, EventScopeSchema as x, type GuardInput as y, GuardSchema as z };
|
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 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 ControlValue, a1 as DerefEffect, a2 as DespawnEffect, a3 as DoEffect, a4 as ENTITY_ROLES, c as Effect, a5 as EffectInput, a6 as EffectSchema, a7 as EmitConfig, a8 as EmitEffect, e as Entity, a9 as EntityData, E as EntityField, aa as EntityFieldInput, ab as EntityFieldSchema, d as EntityId, ac as EntityIdSchema, a as EntityPersistence, ad as EntityPersistenceSchema, ae as EntityRole, af as EntityRoleSchema, f as EntityRow, ag as EntitySchema, ah as EntityWith, ai as EnumEntityField, aj as EvaluateConfig, ak as EvaluateEffect, b as EventId, al as EventIdSchema, am as FIELD_TYPES, an as FetchEffect, ao as FetchOptions, ap as FetchResult, aq as Field, ar as FieldSchema, as as FieldType, at as FieldTypeSchema, F as FieldValue, au as FileValue, av as FileValueSchema, aw as ForwardConfig, ax as ForwardEffect, ay as IdForKind, az as IdKind, I as IdentityLedger, aA as IdentityLedgerSchema, aB as LedgerEntry, aC as LedgerEntrySchema, aD as LedgerKind, aE as LedgerKindSchema, aF as LlmEffect, aG as LogEffect, aH as McpServiceDef, aI as McpServiceDefSchema, aJ as MemoryEffect, aK as NavigateBackEffect, aL as NavigateEffect, aM as NavigateOptions, aN as NnConfig, aO as NnLayer, aP as NotifyEffect, aQ as ObjectEntityField, aR as OrbitalEntity, aS as OrbitalEntityInput, aT as OrbitalEntitySchema, O as OrbitalId, aU as OrbitalIdSchema, aV as OsEffect, aW as PATTERN_TYPES, P as PageId, aX as PageIdSchema, aY as PaletteEntryId, aZ as PaletteEntryIdSchema, a_ as PatternConfig, b1 as PatternType, b2 as PersistData, b3 as PersistEffect, b4 as PersistEmitConfig, b5 as RefEffect, R as RelationConfig, b6 as RelationConfigSchema, b7 as RelationEntityField, h as RenderBinding, b8 as RenderChildrenMap, b9 as RenderItemLambda, i as RenderUIEffect, ba as RenderUINode, bb as ResolvedPatternProps, bc as RestAuthConfig, bd as RestAuthConfigSchema, be as RestServiceDef, bf as RestServiceDefSchema, bg as SEMANTIC_STRING_TYPES, bh as SERVICE_TYPES, bi as SHEET_PROJECTIONS, bj as SPRITE_DIRECTIONS, bk as ScalarEntityField, bl as ScenePos, bm as ScenePosSchema, bn as SemanticAssetRef, bo as SemanticAssetRefInput, bp as SemanticAssetRefSchema, bq as SemanticStringType, g as ServiceDefinition, br as ServiceDefinitionSchema, bs as ServiceId, bt as ServiceIdSchema, bu as ServiceParams, bv as ServiceParamsValue, S as ServiceRef, bw as ServiceRefObject, bx as ServiceRefObjectSchema, by as ServiceRefSchema, bz as ServiceRefStringSchema, bA as ServiceType, bB as ServiceTypeSchema, bC as SessionEffect, bD as SetEffect, bE as SheetProjection, bF as SheetProjectionSchema, bG as SocketEvents, bH as SocketEventsSchema, bI as SocketServiceDef, bJ as SocketServiceDefSchema, bK as SpawnEffect, bL as SpriteDirection, bM as SpriteDirectionSchema, bN as SpriteSheetAtlas, bO as SpriteSheetAtlasInput, bP as SpriteSheetAtlasSchema, bQ as SubTexture, bR as SubTextureSchema, bS as SwapEffect, bT as TextureAtlas, bU as TextureAtlasSchema, bV as ThemeId, bW as ThemeIdSchema, bX as Tilesheet, bY as TilesheetSchema, bZ as TraceEffect, b_ as TrainConfig, b$ as TrainEffect, T as TraitId, c0 as TraitIdSchema, c1 as TypedEffect, U as UISlot, c2 as UISlotSchema, c3 as UI_SLOTS, c4 as VISUAL_STYLES, c5 as ValidateEffect, c6 as VisualStyle, c7 as VisualStyleSchema, c8 as WatchEffect, c9 as WatchOptions, ca as asEntityId, cb as asEventId, cc as asOrbitalId, cd as asPageId, ce as asPaletteEntryId, cf as asServiceId, cg as asThemeId, ch as asTraitId, ci as atomic, cj as callService, ck as createAssetKey, 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, cA as isFieldValue, cB as isFileValue, cC as isMcpService, cD as isOrbitalId, cE as isPageId, cF as isPaletteEntryId, cG as isPhoneValue, cH as isRestService, cI as isRuntimeEntity, cJ as isSExprEffect, cK as isSemanticStringType, cL as isSemanticStringValue, cM as isServiceId, cN as isServiceReference, cO as isServiceReferenceObject, cP as isSocketService, cQ as isThemeId, cR as isTraitId, cS as isUrlValue, cT as isUuidValue, cU as isValidPatternType, cV as ledgerCurName, cW as ledgerRename, cX as ledgerResolveName, cY as mintId, cZ as navigate, c_ as navigateBack, c$ as notify, d0 as parseAssetKey, d1 as parseServiceRef, d2 as persist, d3 as persistenceModeAllowsOverrides, d4 as ref, d5 as renderUI, d6 as set, d7 as spawn, d8 as swap, d9 as validateAssetAnimations, da 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-Cma07_18.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 ControlValue, a1 as DerefEffect, a2 as DespawnEffect, a3 as DoEffect, a4 as ENTITY_ROLES, c as Effect, a5 as EffectInput, a6 as EffectSchema, a7 as EmitConfig, a8 as EmitEffect, e as Entity, a9 as EntityData, E as EntityField, aa as EntityFieldInput, ab as EntityFieldSchema, d as EntityId, ac as EntityIdSchema, a as EntityPersistence, ad as EntityPersistenceSchema, ae as EntityRole, af as EntityRoleSchema, f as EntityRow, ag as EntitySchema, ah as EntityWith, ai as EnumEntityField, aj as EvaluateConfig, ak as EvaluateEffect, b as EventId, al as EventIdSchema, am as FIELD_TYPES, an as FetchEffect, ao as FetchOptions, ap as FetchResult, aq as Field, ar as FieldSchema, as as FieldType, at as FieldTypeSchema, F as FieldValue, au as FileValue, av as FileValueSchema, aw as ForwardConfig, ax as ForwardEffect, ay as IdForKind, az as IdKind, I as IdentityLedger, aA as IdentityLedgerSchema, aB as LedgerEntry, aC as LedgerEntrySchema, aD as LedgerKind, aE as LedgerKindSchema, aF as LlmEffect, aG as LogEffect, aH as McpServiceDef, aI as McpServiceDefSchema, aJ as MemoryEffect, aK as NavigateBackEffect, aL as NavigateEffect, aM as NavigateOptions, aN as NnConfig, aO as NnLayer, aP as NotifyEffect, aQ as ObjectEntityField, aR as OrbitalEntity, aS as OrbitalEntityInput, aT as OrbitalEntitySchema, O as OrbitalId, aU as OrbitalIdSchema, aV as OsEffect, aW as PATTERN_TYPES, P as PageId, aX as PageIdSchema, aY as PaletteEntryId, aZ as PaletteEntryIdSchema, a_ as PatternConfig, b1 as PatternType, b2 as PersistData, b3 as PersistEffect, b4 as PersistEmitConfig, b5 as RefEffect, R as RelationConfig, b6 as RelationConfigSchema, b7 as RelationEntityField, h as RenderBinding, b8 as RenderChildrenMap, b9 as RenderItemLambda, i as RenderUIEffect, ba as RenderUINode, bb as ResolvedPatternProps, bc as RestAuthConfig, bd as RestAuthConfigSchema, be as RestServiceDef, bf as RestServiceDefSchema, bg as SEMANTIC_STRING_TYPES, bh as SERVICE_TYPES, bi as SHEET_PROJECTIONS, bj as SPRITE_DIRECTIONS, bk as ScalarEntityField, bl as ScenePos, bm as ScenePosSchema, bn as SemanticAssetRef, bo as SemanticAssetRefInput, bp as SemanticAssetRefSchema, bq as SemanticStringType, g as ServiceDefinition, br as ServiceDefinitionSchema, bs as ServiceId, bt as ServiceIdSchema, bu as ServiceParams, bv as ServiceParamsValue, S as ServiceRef, bw as ServiceRefObject, bx as ServiceRefObjectSchema, by as ServiceRefSchema, bz as ServiceRefStringSchema, bA as ServiceType, bB as ServiceTypeSchema, bC as SessionEffect, bD as SetEffect, bE as SheetProjection, bF as SheetProjectionSchema, bG as SocketEvents, bH as SocketEventsSchema, bI as SocketServiceDef, bJ as SocketServiceDefSchema, bK as SpawnEffect, bL as SpriteDirection, bM as SpriteDirectionSchema, bN as SpriteSheetAtlas, bO as SpriteSheetAtlasInput, bP as SpriteSheetAtlasSchema, bQ as SubTexture, bR as SubTextureSchema, bS as SwapEffect, bT as TextureAtlas, bU as TextureAtlasSchema, bV as ThemeId, bW as ThemeIdSchema, bX as Tilesheet, bY as TilesheetSchema, bZ as TraceEffect, b_ as TrainConfig, b$ as TrainEffect, T as TraitId, c0 as TraitIdSchema, c1 as TypedEffect, U as UISlot, c2 as UISlotSchema, c3 as UI_SLOTS, c4 as VISUAL_STYLES, c5 as ValidateEffect, c6 as VisualStyle, c7 as VisualStyleSchema, c8 as WatchEffect, c9 as WatchOptions, ca as asEntityId, cb as asEventId, cc as asOrbitalId, cd as asPageId, ce as asPaletteEntryId, cf as asServiceId, cg as asThemeId, ch as asTraitId, ci as atomic, cj as callService, ck as createAssetKey, 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, cA as isFieldValue, cB as isFileValue, cC as isMcpService, cD as isOrbitalId, cE as isPageId, cF as isPaletteEntryId, cG as isPhoneValue, cH as isRestService, cI as isRuntimeEntity, cJ as isSExprEffect, cK as isSemanticStringType, cL as isSemanticStringValue, cM as isServiceId, cN as isServiceReference, cO as isServiceReferenceObject, cP as isSocketService, cQ as isThemeId, cR as isTraitId, cS as isUrlValue, cT as isUuidValue, cU as isValidPatternType, cV as ledgerCurName, cW as ledgerRename, cX as ledgerResolveName, cY as mintId, cZ as navigate, c_ as navigateBack, c$ as notify, d0 as parseAssetKey, d1 as parseServiceRef, d2 as persist, d3 as persistenceModeAllowsOverrides, d4 as ref, d5 as renderUI, d6 as set, d7 as spawn, d8 as swap, d9 as validateAssetAnimations, da as watch } from '../effect-C4uehm-r.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 {
|
|
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-DqUnw2Oo.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-BXkQKZbO.js';
|
|
6
6
|
import 'zod';
|
|
7
|
-
import '../types-
|
|
7
|
+
import '../types-DoAKLgCZ.js';
|
|
8
8
|
import '../builders.js';
|