@almadar/core 10.75.0 → 10.77.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 +4 -0
- package/dist/builders.js.map +1 -1
- package/dist/{effect-CK1NMWES.d.ts → effect-BHaHSAvM.d.ts} +1 -1
- package/dist/{entityAccess-B-de_0a8.d.ts → entityAccess-CqqGrG-7.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +4 -0
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/{index-CBxIR1yy.d.ts → index-B8ZQ8lo5.d.ts} +4 -4
- package/dist/index.d.ts +21 -12
- package/dist/index.js +189 -42
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +4 -4
- package/dist/patterns/component-mapping.json +1 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +132 -74
- package/dist/patterns/index.js +54 -36
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/patterns-registry.json +52 -34
- package/dist/patterns/registry.json +52 -34
- package/dist/{schema-DlTrByoG.d.ts → schema-Czlrw3bA.d.ts} +106 -3
- package/dist/{trait-Cm9H3lHN.d.ts → trait-DCmf5iRN.d.ts} +1 -1
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +16 -1
- package/dist/types/index.js.map +1 -1
- package/dist/{types-cCAU_Z-5.d.ts → types-Cb51Jqxe.d.ts} +2 -2
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-
|
|
1
|
+
import { b as TraitConfig, c as TraitConfigObject, d as TraitRef, E as EventPayloadField, C as ConfigFieldDeclaration, e as TraitConfigValue, f as TraitEntityField, P as PayloadField, g as Trait } from './trait-DCmf5iRN.js';
|
|
2
2
|
import { J as JsonValue, E as Expression, S as SExpr, R as RuntimeValue } from './expression-Fk8bQWef.js';
|
|
3
|
-
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, g as ServiceDefinition, I as IdentityLedger } from './effect-
|
|
3
|
+
import { T as TraitId, d as EntityId, P as PageId, O as OrbitalId, E as EntityField, S as ServiceRef, e as Entity, a as EntityPersistence, b as EventId, g as ServiceDefinition, I as IdentityLedger } from './effect-BHaHSAvM.js';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -18451,7 +18451,29 @@ type ExpectDeclaration = {
|
|
|
18451
18451
|
kind: "event";
|
|
18452
18452
|
traitName: string;
|
|
18453
18453
|
event: string;
|
|
18454
|
+
} | {
|
|
18455
|
+
/**
|
|
18456
|
+
* `expects page "/articles/:slug"` — a route a sibling orbital declares
|
|
18457
|
+
* and this one navigates to. The one cross-boundary edge a `navigate`
|
|
18458
|
+
* effect cannot state for itself: the effect carries a static prefix
|
|
18459
|
+
* (`/articles/`), the provider a pattern (`/articles/:slug`), and the
|
|
18460
|
+
* parameterisation is information the usage does not hold. Derived, not
|
|
18461
|
+
* hand-authored — see `deriveExpectations`.
|
|
18462
|
+
*/
|
|
18463
|
+
kind: "page";
|
|
18464
|
+
path: string;
|
|
18454
18465
|
};
|
|
18466
|
+
/**
|
|
18467
|
+
* The entity name an expectation is ABOUT, or undefined when it is not about
|
|
18468
|
+
* an entity at all (`event` names a trait's event, `page` a route, and a bare
|
|
18469
|
+
* `expects identity` defers to whoever is tagged `[identity]`).
|
|
18470
|
+
*
|
|
18471
|
+
* TS counterpart of the compiler's `expectations::expected_entity_names` and
|
|
18472
|
+
* L1's `types::expected_entity_names`. Exists so callers stop reaching for
|
|
18473
|
+
* `kind !== "event"` as a stand-in for "has a name" — a proxy that silently
|
|
18474
|
+
* became wrong the moment a second nameless kind was added.
|
|
18475
|
+
*/
|
|
18476
|
+
declare function expectedEntityName(decl: ExpectDeclaration): string | undefined;
|
|
18455
18477
|
declare const ExpectDeclarationSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
18456
18478
|
kind: z.ZodLiteral<"identity">;
|
|
18457
18479
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -18488,6 +18510,15 @@ declare const ExpectDeclarationSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObj
|
|
|
18488
18510
|
event: string;
|
|
18489
18511
|
kind: "event";
|
|
18490
18512
|
traitName: string;
|
|
18513
|
+
}>, z.ZodObject<{
|
|
18514
|
+
kind: z.ZodLiteral<"page">;
|
|
18515
|
+
path: z.ZodString;
|
|
18516
|
+
}, "strip", z.ZodTypeAny, {
|
|
18517
|
+
path: string;
|
|
18518
|
+
kind: "page";
|
|
18519
|
+
}, {
|
|
18520
|
+
path: string;
|
|
18521
|
+
kind: "page";
|
|
18491
18522
|
}>]>;
|
|
18492
18523
|
/**
|
|
18493
18524
|
* EntityCall - Reference to an imported entity with optional override arguments.
|
|
@@ -22678,6 +22709,15 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
22678
22709
|
event: string;
|
|
22679
22710
|
kind: "event";
|
|
22680
22711
|
traitName: string;
|
|
22712
|
+
}>, z.ZodObject<{
|
|
22713
|
+
kind: z.ZodLiteral<"page">;
|
|
22714
|
+
path: z.ZodString;
|
|
22715
|
+
}, "strip", z.ZodTypeAny, {
|
|
22716
|
+
path: string;
|
|
22717
|
+
kind: "page";
|
|
22718
|
+
}, {
|
|
22719
|
+
path: string;
|
|
22720
|
+
kind: "page";
|
|
22681
22721
|
}>]>, "many">>;
|
|
22682
22722
|
theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
22683
22723
|
name: z.ZodString;
|
|
@@ -30989,6 +31029,9 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
30989
31029
|
event: string;
|
|
30990
31030
|
kind: "event";
|
|
30991
31031
|
traitName: string;
|
|
31032
|
+
} | {
|
|
31033
|
+
path: string;
|
|
31034
|
+
kind: "page";
|
|
30992
31035
|
})[] | undefined;
|
|
30993
31036
|
exposes?: string[] | undefined;
|
|
30994
31037
|
domainContext?: {
|
|
@@ -32045,6 +32088,9 @@ declare const OrbitalDefinitionSchema: z.ZodObject<{
|
|
|
32045
32088
|
event: string;
|
|
32046
32089
|
kind: "event";
|
|
32047
32090
|
traitName: string;
|
|
32091
|
+
} | {
|
|
32092
|
+
path: string;
|
|
32093
|
+
kind: "page";
|
|
32048
32094
|
})[] | undefined;
|
|
32049
32095
|
exposes?: string[] | undefined;
|
|
32050
32096
|
domainContext?: {
|
|
@@ -32133,6 +32179,15 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
32133
32179
|
event: string;
|
|
32134
32180
|
kind: "event";
|
|
32135
32181
|
traitName: string;
|
|
32182
|
+
}>, z.ZodObject<{
|
|
32183
|
+
kind: z.ZodLiteral<"page">;
|
|
32184
|
+
path: z.ZodString;
|
|
32185
|
+
}, "strip", z.ZodTypeAny, {
|
|
32186
|
+
path: string;
|
|
32187
|
+
kind: "page";
|
|
32188
|
+
}, {
|
|
32189
|
+
path: string;
|
|
32190
|
+
kind: "page";
|
|
32136
32191
|
}>]>, "many">>;
|
|
32137
32192
|
theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
32138
32193
|
name: z.ZodString;
|
|
@@ -40444,6 +40499,9 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
40444
40499
|
event: string;
|
|
40445
40500
|
kind: "event";
|
|
40446
40501
|
traitName: string;
|
|
40502
|
+
} | {
|
|
40503
|
+
path: string;
|
|
40504
|
+
kind: "page";
|
|
40447
40505
|
})[] | undefined;
|
|
40448
40506
|
exposes?: string[] | undefined;
|
|
40449
40507
|
domainContext?: {
|
|
@@ -41500,6 +41558,9 @@ declare const OrbitalSchema$1: z.ZodObject<{
|
|
|
41500
41558
|
event: string;
|
|
41501
41559
|
kind: "event";
|
|
41502
41560
|
traitName: string;
|
|
41561
|
+
} | {
|
|
41562
|
+
path: string;
|
|
41563
|
+
kind: "page";
|
|
41503
41564
|
})[] | undefined;
|
|
41504
41565
|
exposes?: string[] | undefined;
|
|
41505
41566
|
domainContext?: {
|
|
@@ -41595,6 +41656,15 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
41595
41656
|
event: string;
|
|
41596
41657
|
kind: "event";
|
|
41597
41658
|
traitName: string;
|
|
41659
|
+
}>, z.ZodObject<{
|
|
41660
|
+
kind: z.ZodLiteral<"page">;
|
|
41661
|
+
path: z.ZodString;
|
|
41662
|
+
}, "strip", z.ZodTypeAny, {
|
|
41663
|
+
path: string;
|
|
41664
|
+
kind: "page";
|
|
41665
|
+
}, {
|
|
41666
|
+
path: string;
|
|
41667
|
+
kind: "page";
|
|
41598
41668
|
}>]>, "many">>;
|
|
41599
41669
|
theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
41600
41670
|
name: z.ZodString;
|
|
@@ -49906,6 +49976,9 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
49906
49976
|
event: string;
|
|
49907
49977
|
kind: "event";
|
|
49908
49978
|
traitName: string;
|
|
49979
|
+
} | {
|
|
49980
|
+
path: string;
|
|
49981
|
+
kind: "page";
|
|
49909
49982
|
})[] | undefined;
|
|
49910
49983
|
exposes?: string[] | undefined;
|
|
49911
49984
|
domainContext?: {
|
|
@@ -50962,6 +51035,9 @@ declare const OrbitalUnitSchema: z.ZodObject<{
|
|
|
50962
51035
|
event: string;
|
|
50963
51036
|
kind: "event";
|
|
50964
51037
|
traitName: string;
|
|
51038
|
+
} | {
|
|
51039
|
+
path: string;
|
|
51040
|
+
kind: "page";
|
|
50965
51041
|
})[] | undefined;
|
|
50966
51042
|
exposes?: string[] | undefined;
|
|
50967
51043
|
domainContext?: {
|
|
@@ -55291,6 +55367,15 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
55291
55367
|
event: string;
|
|
55292
55368
|
kind: "event";
|
|
55293
55369
|
traitName: string;
|
|
55370
|
+
}>, z.ZodObject<{
|
|
55371
|
+
kind: z.ZodLiteral<"page">;
|
|
55372
|
+
path: z.ZodString;
|
|
55373
|
+
}, "strip", z.ZodTypeAny, {
|
|
55374
|
+
path: string;
|
|
55375
|
+
kind: "page";
|
|
55376
|
+
}, {
|
|
55377
|
+
path: string;
|
|
55378
|
+
kind: "page";
|
|
55294
55379
|
}>]>, "many">>;
|
|
55295
55380
|
theme: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
55296
55381
|
name: z.ZodString;
|
|
@@ -63602,6 +63687,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
63602
63687
|
event: string;
|
|
63603
63688
|
kind: "event";
|
|
63604
63689
|
traitName: string;
|
|
63690
|
+
} | {
|
|
63691
|
+
path: string;
|
|
63692
|
+
kind: "page";
|
|
63605
63693
|
})[] | undefined;
|
|
63606
63694
|
exposes?: string[] | undefined;
|
|
63607
63695
|
domainContext?: {
|
|
@@ -64658,6 +64746,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
64658
64746
|
event: string;
|
|
64659
64747
|
kind: "event";
|
|
64660
64748
|
traitName: string;
|
|
64749
|
+
} | {
|
|
64750
|
+
path: string;
|
|
64751
|
+
kind: "page";
|
|
64661
64752
|
})[] | undefined;
|
|
64662
64753
|
exposes?: string[] | undefined;
|
|
64663
64754
|
domainContext?: {
|
|
@@ -66015,6 +66106,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
66015
66106
|
event: string;
|
|
66016
66107
|
kind: "event";
|
|
66017
66108
|
traitName: string;
|
|
66109
|
+
} | {
|
|
66110
|
+
path: string;
|
|
66111
|
+
kind: "page";
|
|
66018
66112
|
})[] | undefined;
|
|
66019
66113
|
exposes?: string[] | undefined;
|
|
66020
66114
|
domainContext?: {
|
|
@@ -67639,6 +67733,9 @@ declare const OrbitalSchemaSchema: z.ZodObject<{
|
|
|
67639
67733
|
event: string;
|
|
67640
67734
|
kind: "event";
|
|
67641
67735
|
traitName: string;
|
|
67736
|
+
} | {
|
|
67737
|
+
path: string;
|
|
67738
|
+
kind: "page";
|
|
67642
67739
|
})[] | undefined;
|
|
67643
67740
|
exposes?: string[] | undefined;
|
|
67644
67741
|
domainContext?: {
|
|
@@ -69328,6 +69425,9 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
69328
69425
|
event: string;
|
|
69329
69426
|
kind: "event";
|
|
69330
69427
|
traitName: string;
|
|
69428
|
+
} | {
|
|
69429
|
+
path: string;
|
|
69430
|
+
kind: "page";
|
|
69331
69431
|
})[] | undefined;
|
|
69332
69432
|
exposes?: string[] | undefined;
|
|
69333
69433
|
domainContext?: {
|
|
@@ -70952,6 +71052,9 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
70952
71052
|
event: string;
|
|
70953
71053
|
kind: "event";
|
|
70954
71054
|
traitName: string;
|
|
71055
|
+
} | {
|
|
71056
|
+
path: string;
|
|
71057
|
+
kind: "page";
|
|
70955
71058
|
})[] | undefined;
|
|
70956
71059
|
exposes?: string[] | undefined;
|
|
70957
71060
|
domainContext?: {
|
|
@@ -71558,4 +71661,4 @@ declare function safeParseOrbitalSchema(data: RuntimeValue): z.SafeParseReturnTy
|
|
|
71558
71661
|
type OrbitalSchemaInput = z.input<typeof OrbitalSchemaSchema>;
|
|
71559
71662
|
type OrbitalConfigInput = z.input<typeof OrbitalConfigSchema>;
|
|
71560
71663
|
|
|
71561
|
-
export { EntityRefSchema as $, AGENT_DOMAIN_CATEGORIES as A, DensityTokensSchema as B, type ColorSlice as C, type DensitySlice as D, type EntityRef as E, type DesignPreferences as F, type DesignPreferencesInput as G, DesignPreferencesSchema as H, type DesignTokens as I, type DesignTokensInput as J, DesignTokensSchema as K, type DomainCategory as L, DomainCategorySchema as M, type DomainContext as N, type OrbitalSchema as O, type PageRef as P, type DomainContextInput as Q, DomainContextSchema as R, type DomainVocabulary as S, DomainVocabularySchema as T, type UseDeclaration as U, type ElevationSlice as V, ElevationSliceSchema as W, type ElevationTokens as X, ElevationTokensSchema as Y, type EntityCall as Z, EntityCallSchema as _, type OrbitalDefinition as a, OrbitalSchema$1 as a$, EntityRefStringSchema as a0, type EntitySemanticRole as a1, EntitySemanticRoleSchema as a2, type EventListener as a3, EventListenerSchema as a4, type EventSemanticRole as a5, EventSemanticRoleSchema as a6, type EventSource as a7, EventSourceSchema as a8, ExpectDeclarationSchema as a9, MotionEasingPaletteSchema as aA, type MotionIntent as aB, type MotionIntentMap as aC, MotionIntentMapSchema as aD, MotionIntentSchema as aE, type MotionSlice as aF, MotionSliceSchema as aG, type MotionTokens as aH, MotionTokensSchema as aI, type NavItem as aJ, type NavStackEntry as aK, type NodeClassification as aL, NodeClassificationSchema as aM, type OrbitalConfig as aN, type OrbitalConfigInput as aO, OrbitalConfigSchema as aP, OrbitalDefinitionSchema as aQ, type OrbitalInput as aR, type OrbitalPageInput as aS, OrbitalPageSchema as aT, type OrbitalPageStrictInput as aU, OrbitalPageStrictSchema as aV, type OrbitalSchemaInput as aW, OrbitalSchemaSchema as aX, type OrbitalSchemaWithTraits as aY, type OrbitalUnit as aZ, OrbitalUnitSchema as a_, type Orbital as aa, type GameSubCategory as ab, GameSubCategorySchema as ac, type GeometrySlice as ad, GeometrySliceSchema as ae, type GeometryTokens as af, GeometryTokensSchema as ag, type IconFamily as ah, IconFamilySchema as ai, type IconographySlice as aj, IconographySliceSchema as ak, type IconographyTokens as al, IconographyTokensSchema as am, type IllustrationSlice as an, IllustrationSliceSchema as ao, type IllustrationStyle as ap, IllustrationStyleSchema as aq, type IllustrationTokens as ar, IllustrationTokensSchema as as, type MotionDurationKey as at, MotionDurationKeySchema as au, type MotionDurationPalette as av, MotionDurationPaletteSchema as aw, type MotionEasingKey as ax, MotionEasingKeySchema as ay, type MotionEasingPalette as az, type ExpectDeclaration as b,
|
|
71664
|
+
export { EntityRefSchema as $, AGENT_DOMAIN_CATEGORIES as A, DensityTokensSchema as B, type ColorSlice as C, type DensitySlice as D, type EntityRef as E, type DesignPreferences as F, type DesignPreferencesInput as G, DesignPreferencesSchema as H, type DesignTokens as I, type DesignTokensInput as J, DesignTokensSchema as K, type DomainCategory as L, DomainCategorySchema as M, type DomainContext as N, type OrbitalSchema as O, type PageRef as P, type DomainContextInput as Q, DomainContextSchema as R, type DomainVocabulary as S, DomainVocabularySchema as T, type UseDeclaration as U, type ElevationSlice as V, ElevationSliceSchema as W, type ElevationTokens as X, ElevationTokensSchema as Y, type EntityCall as Z, EntityCallSchema as _, type OrbitalDefinition as a, OrbitalSchema$1 as a$, EntityRefStringSchema as a0, type EntitySemanticRole as a1, EntitySemanticRoleSchema as a2, type EventListener as a3, EventListenerSchema as a4, type EventSemanticRole as a5, EventSemanticRoleSchema as a6, type EventSource as a7, EventSourceSchema as a8, ExpectDeclarationSchema as a9, MotionEasingPaletteSchema as aA, type MotionIntent as aB, type MotionIntentMap as aC, MotionIntentMapSchema as aD, MotionIntentSchema as aE, type MotionSlice as aF, MotionSliceSchema as aG, type MotionTokens as aH, MotionTokensSchema as aI, type NavItem as aJ, type NavStackEntry as aK, type NodeClassification as aL, NodeClassificationSchema as aM, type OrbitalConfig as aN, type OrbitalConfigInput as aO, OrbitalConfigSchema as aP, OrbitalDefinitionSchema as aQ, type OrbitalInput as aR, type OrbitalPageInput as aS, OrbitalPageSchema as aT, type OrbitalPageStrictInput as aU, OrbitalPageStrictSchema as aV, type OrbitalSchemaInput as aW, OrbitalSchemaSchema as aX, type OrbitalSchemaWithTraits as aY, type OrbitalUnit as aZ, OrbitalUnitSchema as a_, type Orbital as aa, type GameSubCategory as ab, GameSubCategorySchema as ac, type GeometrySlice as ad, GeometrySliceSchema as ae, type GeometryTokens as af, GeometryTokensSchema as ag, type IconFamily as ah, IconFamilySchema as ai, type IconographySlice as aj, IconographySliceSchema as ak, type IconographyTokens as al, IconographyTokensSchema as am, type IllustrationSlice as an, IllustrationSliceSchema as ao, type IllustrationStyle as ap, IllustrationStyleSchema as aq, type IllustrationTokens as ar, IllustrationTokensSchema as as, type MotionDurationKey as at, MotionDurationKeySchema as au, type MotionDurationPalette as av, MotionDurationPaletteSchema as aw, type MotionEasingKey as ax, MotionEasingKeySchema as ay, type MotionEasingPalette as az, type ExpectDeclaration as b, parseEntityRef as b$, PageRefObjectSchema as b0, PageRefSchema as b1, PageRefStringSchema as b2, PageSchema as b3, type PageTraitRef as b4, PageTraitRefSchema as b5, type RelatedLink as b6, RelatedLinkSchema as b7, type SchemaMetadata as b8, SchemaMetadataSchema as b9, TypeScaleTokensSchema as bA, type TypeSizeKey as bB, TypeSizeKeySchema as bC, type TypeSlice as bD, TypeSliceSchema as bE, type TypeSlot as bF, TypeSlotSchema as bG, type TypeWeight as bH, TypeWeightSchema as bI, type UXHints as bJ, UXHintsSchema as bK, UseDeclarationSchema as bL, type UserPersona as bM, type UserPersonaInput as bN, UserPersonaSchema as bO, type ViewType as bP, ViewTypeSchema as bQ, expectedEntityName as bR, isEntityCall as bS, isEntityReference as bT, isEntityReferenceAny as bU, isImportedTraitRef as bV, isOrbitalDefinition as bW, isPageReference as bX, isPageReferenceObject as bY, isPageReferenceString as bZ, isThemeReference as b_, type SkinSpec as ba, SkinSpecSchema as bb, type SpacingScale as bc, SpacingScaleSchema as bd, type StateSemanticRole as be, StateSemanticRoleSchema as bf, type SuggestedGuard as bg, SuggestedGuardSchema as bh, type ThemeDefinition as bi, ThemeDefinitionSchema as bj, type ThemeRef as bk, ThemeRefSchema as bl, ThemeRefStringSchema as bm, type ThemeTokens as bn, ThemeTokensSchema as bo, type ThemeVariant as bp, ThemeVariantSchema as bq, type TypeIntent as br, type TypeIntentMap as bs, TypeIntentMapSchema as bt, TypeIntentSchema as bu, type TypeScale as bv, type TypeScaleEntry as bw, TypeScaleEntrySchema as bx, TypeScaleSchema as by, type TypeScaleTokens as bz, type Page as c, parseImportedTraitRef as c0, parseOrbitalSchema as c1, parsePageRef as c2, safeParseOrbitalSchema as c3, type PageRefObject as d, type OrbitalPage as e, ALLOWED_CUSTOM_COMPONENTS as f, type AgentDomainCategory as g, AgentDomainCategorySchema as h, type AllowedCustomComponent as i, ColorSliceSchema as j, type ColorTokens as k, ColorTokensSchema as l, type ComputedEventContract as m, ComputedEventContractSchema as n, type ComputedEventListener as o, ComputedEventListenerSchema as p, type ConfigProvenanceRecord as q, ConfigProvenanceRecordSchema as r, type CustomPatternDefinition as s, type CustomPatternDefinitionInput as t, CustomPatternDefinitionSchema as u, type CustomPatternMap as v, type CustomPatternMapInput as w, CustomPatternMapSchema as x, DensitySliceSchema as y, type DensityTokens as z };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-
|
|
1
|
+
import { b as EventId, c as Effect, T as TraitId, O as OrbitalId, d as EntityId, P as PageId, A as AnyPatternConfig, e as Entity, E as EntityField } from './effect-BHaHSAvM.js';
|
|
2
2
|
import { E as Expression, S as SExpr, J as JsonValue } from './expression-Fk8bQWef.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { A as AGENT_DOMAIN_CATEGORIES, f as ALLOWED_CUSTOM_COMPONENTS, g as AgentDomainCategory, h as AgentDomainCategorySchema, i as AllowedCustomComponent, O as AppSchema, C as ColorSlice, j as ColorSliceSchema, k as ColorTokens, l as ColorTokensSchema, m as ComputedEventContract, n as ComputedEventContractSchema, o as ComputedEventListener, p as ComputedEventListenerSchema, q as ConfigProvenanceRecord, r as ConfigProvenanceRecordSchema, s as CustomPatternDefinition, t as CustomPatternDefinitionInput, u as CustomPatternDefinitionSchema, v as CustomPatternMap, w as CustomPatternMapInput, x as CustomPatternMapSchema, D as DensitySlice, y as DensitySliceSchema, z as DensityTokens, B as DensityTokensSchema, F as DesignPreferences, G as DesignPreferencesInput, H as DesignPreferencesSchema, I as DesignTokens, J as DesignTokensInput, K as DesignTokensSchema, L as DomainCategory, M as DomainCategorySchema, N as DomainContext, Q as DomainContextInput, R as DomainContextSchema, S as DomainVocabulary, T as DomainVocabularySchema, V as ElevationSlice, W as ElevationSliceSchema, X as ElevationTokens, Y as ElevationTokensSchema, Z as EntityCall, _ as EntityCallSchema, E as EntityRef, $ as EntityRefSchema, a0 as EntityRefStringSchema, a1 as EntitySemanticRole, a2 as EntitySemanticRoleSchema, a3 as EventListener, a4 as EventListenerSchema, a5 as EventSemanticRole, a6 as EventSemanticRoleSchema, a7 as EventSource, a8 as EventSourceSchema, b as ExpectDeclaration, a9 as ExpectDeclarationSchema, aa as FullOrbitalUnit, ab as GameSubCategory, ac as GameSubCategorySchema, ad as GeometrySlice, ae as GeometrySliceSchema, af as GeometryTokens, ag as GeometryTokensSchema, ah as IconFamily, ai as IconFamilySchema, aj as IconographySlice, ak as IconographySliceSchema, al as IconographyTokens, am as IconographyTokensSchema, an as IllustrationSlice, ao as IllustrationSliceSchema, ap as IllustrationStyle, aq as IllustrationStyleSchema, ar as IllustrationTokens, as as IllustrationTokensSchema, at as MotionDurationKey, au as MotionDurationKeySchema, av as MotionDurationPalette, aw as MotionDurationPaletteSchema, ax as MotionEasingKey, ay as MotionEasingKeySchema, az as MotionEasingPalette, aA as MotionEasingPaletteSchema, aB as MotionIntent, aC as MotionIntentMap, aD as MotionIntentMapSchema, aE as MotionIntentSchema, aF as MotionSlice, aG as MotionSliceSchema, aH as MotionTokens, aI as MotionTokensSchema, aJ as NavItem, aK as 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
|
|
2
|
-
export { j as ANIMATION_NAMES, k as ASSET_ASPECTS, l as ASSET_DIMENSIONS, m as AgentEffect, n as AnimationDef, o as AnimationDefInput, p as AnimationDefSchema, q as AnimationName, r as AnimationNameSchema, s as ApplicationEffect, t as ArrayEntityField, u as Asset, v as AssetAspect, w as AssetAspectSchema, x as AssetCatalog, y as AssetCatalogEntry, z as AssetCatalogEntryInput, B as AssetCatalogEntrySchema, C as AssetCatalogSchema, D as AssetDimension, G as AssetDimensionSchema, H as AssetSchema, J as AssetUrl, K as AtomicEffect, L as BehaviorEffect, M as CAMERA_MODES, N as CallServiceConfig, Q as CallServiceEffect, V as Camera, W as CameraMode, X as CameraModeSchema, Y as CameraSchema, Z as CheckpointLoadEffect, _ as CheckpointSaveEffect, $ as ComposeEffect, a0 as DerefEffect, a1 as DespawnEffect, a2 as DoEffect, a3 as ENTITY_ROLES, c as Effect, a4 as EffectInput, a5 as EffectSchema, a6 as EmitConfig, a7 as EmitEffect, e as Entity, a8 as EntityData, E as EntityField, a9 as EntityFieldInput, aa as EntityFieldSchema, d as EntityId, ab as EntityIdSchema, a as EntityPersistence, ac as EntityPersistenceSchema, ad as EntityRole, ae as EntityRoleSchema, f as EntityRow, af as EntitySchema, ag as EntityWith, ah as EnumEntityField, ai as EvaluateConfig, aj as EvaluateEffect, b as EventId, ak as EventIdSchema, al as FIELD_TYPES, am as FetchEffect, an as FetchOptions, ao as FetchResult, ap as Field, aq as FieldSchema, ar as FieldType, as as FieldTypeSchema, F as FieldValue, at as FileValue, au as FileValueSchema, av as ForwardConfig, aw as ForwardEffect, ax as IdForKind, ay as IdKind, I as IdentityLedger, az as IdentityLedgerSchema, aA as LedgerEntry, aB as LedgerEntrySchema, aC as LedgerKind, aD as LedgerKindSchema, aE as LlmEffect, aF as LogEffect, aG as McpServiceDef, aH as McpServiceDefSchema, aI as MemoryEffect, aJ as NavigateBackEffect, aK as NavigateEffect, aL as NavigateOptions, aM as NnConfig, aN as NnLayer, aO as NotifyEffect, aP as ObjectEntityField, aQ as OrbitalEntity, aR as OrbitalEntityInput, aS as OrbitalEntitySchema, O as OrbitalId, aT as OrbitalIdSchema, aU as OsEffect, aV as PATTERN_TYPES, P as PageId, aW as PageIdSchema, aX as PaletteEntryId, aY as PaletteEntryIdSchema, aZ as PatternConfig, b0 as PatternType, b1 as PersistData, b2 as PersistEffect, b3 as PersistEmitConfig, b4 as RefEffect, R as RelationConfig, b5 as RelationConfigSchema, b6 as RelationEntityField, h as RenderBinding, b7 as RenderChildrenMap, b8 as RenderItemLambda, i as RenderUIEffect, b9 as RenderUINode, ba as ResolvedPatternProps, bb as RestAuthConfig, bc as RestAuthConfigSchema, bd as RestServiceDef, be as RestServiceDefSchema, bf as SEMANTIC_STRING_TYPES, bg as SERVICE_TYPES, bh as SHEET_PROJECTIONS, bi as SPRITE_DIRECTIONS, bj as ScalarEntityField, bk as ScenePos, bl as ScenePosSchema, bm as SemanticAssetRef, bn as SemanticAssetRefInput, bo as SemanticAssetRefSchema, bp as SemanticStringType, g as ServiceDefinition, bq as ServiceDefinitionSchema, br as ServiceId, bs as ServiceIdSchema, bt as ServiceParams, bu as ServiceParamsValue, S as ServiceRef, bv as ServiceRefObject, bw as ServiceRefObjectSchema, bx as ServiceRefSchema, by as ServiceRefStringSchema, bz as ServiceType, bA as ServiceTypeSchema, bB as SessionEffect, bC as SetEffect, bD as SheetProjection, bE as SheetProjectionSchema, bF as SocketEvents, bG as SocketEventsSchema, bH as SocketServiceDef, bI as SocketServiceDefSchema, bJ as SpawnEffect, bK as SpriteDirection, bL as SpriteDirectionSchema, bM as SpriteSheetAtlas, bN as SpriteSheetAtlasInput, bO as SpriteSheetAtlasSchema, bP as SubTexture, bQ as SubTextureSchema, bR as SwapEffect, bS as TextureAtlas, bT as TextureAtlasSchema, bU as ThemeId, bV as ThemeIdSchema, bW as Tilesheet, bX as TilesheetSchema, bY as TraceEffect, bZ as TrainConfig, b_ as TrainEffect, T as TraitId, b$ as TraitIdSchema, c0 as TypedEffect, U as UISlot, c1 as UISlotSchema, c2 as UI_SLOTS, c3 as VISUAL_STYLES, c4 as ValidateEffect, c5 as VisualStyle, c6 as VisualStyleSchema, c7 as WatchEffect, c8 as WatchOptions, c9 as asEntityId, ca as asEventId, cb as asOrbitalId, cc as asPageId, cd as asPaletteEntryId, ce as asServiceId, cf as asThemeId, cg as asTraitId, ch as atomic, ci as callService, cj as createAssetKey, ck as deref, cl as deriveCollection, cm as despawn, cn as doEffects, co as emit, cp as findService, cq as getDefaultAnimationsForRole, cr as getServiceNames, cs as hasService, ct as idKindOf, cu as idPrefix, cv as isEffect, cw as isEmailValue, cx as isEntityId, cy as isEventId, cz as isFieldValue, cA as isFileValue, cB as isMcpService, cC as isOrbitalId, cD as isPageId, cE as isPaletteEntryId, cF as isPhoneValue, cG as isRestService, cH as isRuntimeEntity, cI as isSExprEffect, cJ as isSemanticStringType, cK as isSemanticStringValue, cL as isServiceId, cM as isServiceReference, cN as isServiceReferenceObject, cO as isSocketService, cP as isThemeId, cQ as isTraitId, cR as isUrlValue, cS as isUuidValue, cT as isValidPatternType, cU as ledgerCurName, cV as ledgerRename, cW as ledgerResolveName, cX as mintId, cY as navigate, cZ as navigateBack, c_ as notify, c$ as parseAssetKey, d0 as parseServiceRef, d1 as persist, d2 as persistenceModeAllowsOverrides, d3 as ref, d4 as renderUI, d5 as set, d6 as spawn, d7 as swap, d8 as validateAssetAnimations, d9 as watch } from '../effect-
|
|
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-Czlrw3bA.js';
|
|
2
|
+
export { j as ANIMATION_NAMES, k as ASSET_ASPECTS, l as ASSET_DIMENSIONS, m as AgentEffect, n as AnimationDef, o as AnimationDefInput, p as AnimationDefSchema, q as AnimationName, r as AnimationNameSchema, s as ApplicationEffect, t as ArrayEntityField, u as Asset, v as AssetAspect, w as AssetAspectSchema, x as AssetCatalog, y as AssetCatalogEntry, z as AssetCatalogEntryInput, B as AssetCatalogEntrySchema, C as AssetCatalogSchema, D as AssetDimension, G as AssetDimensionSchema, H as AssetSchema, J as AssetUrl, K as AtomicEffect, L as BehaviorEffect, M as CAMERA_MODES, N as CallServiceConfig, Q as CallServiceEffect, V as Camera, W as CameraMode, X as CameraModeSchema, Y as CameraSchema, Z as CheckpointLoadEffect, _ as CheckpointSaveEffect, $ as ComposeEffect, a0 as DerefEffect, a1 as DespawnEffect, a2 as DoEffect, a3 as ENTITY_ROLES, c as Effect, a4 as EffectInput, a5 as EffectSchema, a6 as EmitConfig, a7 as EmitEffect, e as Entity, a8 as EntityData, E as EntityField, a9 as EntityFieldInput, aa as EntityFieldSchema, d as EntityId, ab as EntityIdSchema, a as EntityPersistence, ac as EntityPersistenceSchema, ad as EntityRole, ae as EntityRoleSchema, f as EntityRow, af as EntitySchema, ag as EntityWith, ah as EnumEntityField, ai as EvaluateConfig, aj as EvaluateEffect, b as EventId, ak as EventIdSchema, al as FIELD_TYPES, am as FetchEffect, an as FetchOptions, ao as FetchResult, ap as Field, aq as FieldSchema, ar as FieldType, as as FieldTypeSchema, F as FieldValue, at as FileValue, au as FileValueSchema, av as ForwardConfig, aw as ForwardEffect, ax as IdForKind, ay as IdKind, I as IdentityLedger, az as IdentityLedgerSchema, aA as LedgerEntry, aB as LedgerEntrySchema, aC as LedgerKind, aD as LedgerKindSchema, aE as LlmEffect, aF as LogEffect, aG as McpServiceDef, aH as McpServiceDefSchema, aI as MemoryEffect, aJ as NavigateBackEffect, aK as NavigateEffect, aL as NavigateOptions, aM as NnConfig, aN as NnLayer, aO as NotifyEffect, aP as ObjectEntityField, aQ as OrbitalEntity, aR as OrbitalEntityInput, aS as OrbitalEntitySchema, O as OrbitalId, aT as OrbitalIdSchema, aU as OsEffect, aV as PATTERN_TYPES, P as PageId, aW as PageIdSchema, aX as PaletteEntryId, aY as PaletteEntryIdSchema, aZ as PatternConfig, b0 as PatternType, b1 as PersistData, b2 as PersistEffect, b3 as PersistEmitConfig, b4 as RefEffect, R as RelationConfig, b5 as RelationConfigSchema, b6 as RelationEntityField, h as RenderBinding, b7 as RenderChildrenMap, b8 as RenderItemLambda, i as RenderUIEffect, b9 as RenderUINode, ba as ResolvedPatternProps, bb as RestAuthConfig, bc as RestAuthConfigSchema, bd as RestServiceDef, be as RestServiceDefSchema, bf as SEMANTIC_STRING_TYPES, bg as SERVICE_TYPES, bh as SHEET_PROJECTIONS, bi as SPRITE_DIRECTIONS, bj as ScalarEntityField, bk as ScenePos, bl as ScenePosSchema, bm as SemanticAssetRef, bn as SemanticAssetRefInput, bo as SemanticAssetRefSchema, bp as SemanticStringType, g as ServiceDefinition, bq as ServiceDefinitionSchema, br as ServiceId, bs as ServiceIdSchema, bt as ServiceParams, bu as ServiceParamsValue, S as ServiceRef, bv as ServiceRefObject, bw as ServiceRefObjectSchema, bx as ServiceRefSchema, by as ServiceRefStringSchema, bz as ServiceType, bA as ServiceTypeSchema, bB as SessionEffect, bC as SetEffect, bD as SheetProjection, bE as SheetProjectionSchema, bF as SocketEvents, bG as SocketEventsSchema, bH as SocketServiceDef, bI as SocketServiceDefSchema, bJ as SpawnEffect, bK as SpriteDirection, bL as SpriteDirectionSchema, bM as SpriteSheetAtlas, bN as SpriteSheetAtlasInput, bO as SpriteSheetAtlasSchema, bP as SubTexture, bQ as SubTextureSchema, bR as SwapEffect, bS as TextureAtlas, bT as TextureAtlasSchema, bU as ThemeId, bV as ThemeIdSchema, bW as Tilesheet, bX as TilesheetSchema, bY as TraceEffect, bZ as TrainConfig, b_ as TrainEffect, T as TraitId, b$ as TraitIdSchema, c0 as TypedEffect, U as UISlot, c1 as UISlotSchema, c2 as UI_SLOTS, c3 as VISUAL_STYLES, c4 as ValidateEffect, c5 as VisualStyle, c6 as VisualStyleSchema, c7 as WatchEffect, c8 as WatchOptions, c9 as asEntityId, ca as asEventId, cb as asOrbitalId, cc as asPageId, cd as asPaletteEntryId, ce as asServiceId, cf as asThemeId, cg as asTraitId, ch as atomic, ci as callService, cj as createAssetKey, ck as deref, cl as deriveCollection, cm as despawn, cn as doEffects, co as emit, cp as findService, cq as getDefaultAnimationsForRole, cr as getServiceNames, cs as hasService, ct as idKindOf, cu as idPrefix, cv as isEffect, cw as isEmailValue, cx as isEntityId, cy as isEventId, cz as isFieldValue, cA as isFileValue, cB as isMcpService, cC as isOrbitalId, cD as isPageId, cE as isPaletteEntryId, cF as isPhoneValue, cG as isRestService, cH as isRuntimeEntity, cI as isSExprEffect, cJ as isSemanticStringType, cK as isSemanticStringValue, cL as isServiceId, cM as isServiceReference, cN as isServiceReferenceObject, cO as isSocketService, cP as isThemeId, cQ as isTraitId, cR as isUrlValue, cS as isUuidValue, cT as isValidPatternType, cU as ledgerCurName, cV as ledgerRename, cW as ledgerResolveName, cX as mintId, cY as navigate, cZ as navigateBack, c_ as notify, c$ as parseAssetKey, d0 as parseServiceRef, d1 as persist, d2 as persistenceModeAllowsOverrides, d3 as ref, d4 as renderUI, d5 as set, d6 as spawn, d7 as swap, d8 as validateAssetAnimations, d9 as watch } from '../effect-BHaHSAvM.js';
|
|
3
3
|
export { C as CORE_BINDINGS, b as CoreBinding, c as EvalContext, a as EventPayload, d as EventPayloadValue, E as Expression, e as ExpressionInput, f as ExpressionSchema, g as JsonObject, J as JsonValue, L as LogMeta, h as LogMetaValue, P as ParsedBinding, R as RuntimeValue, S as SExpr, i as SExprAtom, j as SExprAtomSchema, k as SExprDataSchema, l as SExprInput, m as SExprObject, n as SExprSchema, T as ToolArgs, o as collectBindings, p as getArgs, q as getOperator, r as isBinding, s as isEventPayloadValue, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive, w as isSExpr, x as isSExprAtom, y as isSExprCall, z as isValidBinding, A as parseBinding, B as sexpr, D as walkSExpr } from '../expression-Fk8bQWef.js';
|
|
4
|
-
export { A as ANONYMOUS_USER, f as AgentCodeSearchResult, g as AgentCompactResult, h as AgentCompactStrategy, i as AgentContext, j as AgentGenerateOptions, k as AgentMemoryCategory, l as AgentMemoryRecord, m as AnalysisOrbital, n as AnalysisOrbitalParams, o as AnalysisPageOverride, p as AnalysisRename, q as AnalysisResult, r as AnnotationTier, s as AppCreatedEvent, t as AppSummary, u as AssetLoadStatus, B as BINDING_CONTEXT_RULES, v as BINDING_DOCS, w as BINDING_ROOTS, x as BindingContext, y as BindingRoot, z as BindingSchema, D as BridgeHealth, E as BuilderResult, F as BusEvent, G as BusEventListener, H as BusEventSource, I as CancelledEvent, d as CategorizedRemovals, J as ChangeAuthor, K as ChangeSetDocument, L as ChangeSummary, M as ChangesetRecordedEvent, C as ChangesetValue, N as CheckStatus, O as Clarification, Q as ClarificationCandidate, T as ClarificationLevel, U as CompleteEvent, V as ComplexityAssessment, W as ComposeAllResult, X as ComposeChildrenResult, Y as ComposeOptions, Z as ContextExtensions, _ as CreateFlow, $ as DEFAULT_INTERACTION_MODELS, a0 as DEFAULT_VIEWER, a1 as DEV_TOKEN_PREFIX, a2 as DeleteFlow, a3 as DispatchUpdatesResult, a4 as DrawableDescriptor, a5 as EdgeType, a6 as EditFlow, a9 as EffectPayload, aa as EffectResult, ab as EffectTrace, ac as ErrorEvent, ad as EventEmit, ae as EventKey, af as EventListen, ag as EventLogEntry, ah as EvolutionDelta, ai as ExecutePlanResult, aj as ExtraTraitRef, ak as FileOperationEvent, al as FileWrittenEvent, am as GateState, an as GenerationLogEvent, ao as GitHubIssue, ap as GitHubLink, aq as GitHubRepo, ar as HistoryMeta, as as IntegrationContext, at as InteractionModel, au as InteractionModelInput, av as InteractionModelSchema, aw as InterruptEvent, ax as KNOWN_VALIDATION_ERROR_CODES, ay as KnobPayload, az as KnownValidationErrorCode, aA as LLMErrorContext, aB as LazyService, aC as LineageEntry, aD as ListInteraction, aE as LivingEdge, aF as LivingEffect, aG as LivingEntity, aH as LivingEvent, aI as LivingField, aJ as LivingOrbital, aK as LivingOrbitalSchema, aL as LivingPage, aM as LivingState, aN as LivingTrait, aO as LivingTransition, aP as LivingValue, aQ as LivingVertex, aR as LlmCallToolsResult, aS as LlmContext, aT as LlmMessage, aU as LlmTokenUsage, aV as LlmToolCall, aW as LlmToolDef, aX as LoloEmitResult, aY as MemoryContext, aZ as MessageEvent, a_ as OrbitalAddedEvent, a$ as OrbitalSchemaCompleteEvent, b0 as OrbitalVerificationAPI, P as PageContentReduction, b1 as ParamsRepairEmittedEvent, b2 as ParsedDesign, b3 as ParsedDomainContext, b4 as ParsedEmitDeclaration, b5 as ParsedEntity, b6 as ParsedEvent, b7 as ParsedListenDeclaration, b8 as ParsedOrbital, b9 as ParsedPage, ba as ParsedState, bb as ParsedStateMachine, bc as ParsedTrait, bd as ParsedTraitConfig, be as ParsedTransition, bf as PatternNode, bg as PatternTypeSchema, bh as PatternValue, bi as PersistActionName, bj as PlanSnapshot, bk as PlanSnapshotStatus, bl as PlannerResult, bm as Probability, bn as ProcessCompleteEvent, bo as ProcessErrorEvent, bp as ProcessRepairCompleteEvent, bq as ProcessRepairEvent, br as ProcessStartEvent, bs as RENDER_BINDING_MARKER, bt as RawUserClaims, bu as RenderBindingMarker, bz as RepairResult, a as ResolvedEntity, bA as ResolvedEntityBinding, bB as ResolvedField, R as ResolvedIR, bC as ResolvedNavigation, b as ResolvedPage, bD as ResolvedPattern, bE as ResolvedSection, bF as ResolvedSectionEvent, c as ResolvedTrait, bG as ResolvedTraitBinding, bH as ResolvedTraitDataEntity, bI as ResolvedTraitEvent, bJ as ResolvedTraitGuard, bK as ResolvedTraitListener, bL as ResolvedTraitState, bM as ResolvedTraitTick, bN as ResolvedTraitTransition, bO as ResolvedTraitUIBinding, bP as SSEEvent, bQ as SSEEventBase, bR as SSEEventType, bS as SaveOptions, bT as SaveResult, S as SchemaChange, bU as SchemaPhaseUpdateEvent, bV as SchemaPhaseValidatedEvent, bW as SchemaUpdateEvent, bX as SemanticAnnotation, bY as SemanticChangeKind, e as SemanticSchemaChange, bZ as SemanticVector, b_ as ServerResponseTrace, b$ as ServiceAction, c0 as ServiceActionName, c1 as ServiceCallResult, c2 as ServiceContract, c3 as ServiceEvents, c4 as SessionContext, c5 as SessionHistoryEntry, c6 as SnapshotCreatedEvent, c7 as SnapshotDocument, c8 as SpawnResult, c9 as StartEvent, ca as StatsView, cb as StoreContract, cc as StoreFilter, cd as StoreFilterOp, ce as SubagentCompleteEvent, cf as SubagentEvent, cg as SubagentProgressEvent, ch as SubagentStartEvent, ci as TodoActivityType, cj as TodoDetailEvent, ck as TodoUpdateEvent, cl as ToolCallEvent, cm as ToolResultEvent, cn as TraceContext, co as TraitFieldRef, cp as TraitFieldRefSchema, cq as TraitStateSnapshot, cr as TransitionFrom, cs as TransitionTrace, ct as Unsubscribe, cu as UserContext, cv as ValidateResult, cw as ValidationDocument, cx as ValidationError, cy as ValidationErrorCode, cz as ValidationIssue, cA as ValidationMeta, cB as ValidationResult, cC as ValidationResults, cD as VerificationCheck, cE as VerificationSnapshot, cF as VerificationSummary, cG as VertexId, cH as VertexPayload, cI as VertexType, cJ as ViewFlow, cK as WorkspaceContext, cM as containsEntityBinding, cN as containsPayloadBinding, cO as createEmptyResolvedPage, cP as createEmptyResolvedTrait, cQ as createLazyService, cR as createResolvedField, cS as createTypedEventBus, cT as decodeDevIdentityToken, cU as encodeDevIdentityToken, cV as findPersonaInRoster, cX as getBindingExamples, cY as getInteractionModelForDomain, cZ as inferTsType, c$ as isKnownValidationErrorCode, d0 as isPlanSnapshot, d1 as isRenderBindingMarker, d2 as isResolvedIR, d3 as isSessionHistoryEntry, d4 as isTraitFieldRef, d6 as normalizeUserContext, d7 as personaFromIdentityRow, da as resolveDefaultViewer, db as resolvePersonaSpec, dd as toBindingRoot, de as validateBindingInContext, df as widenTier } from '../index-
|
|
5
|
-
export { k as CONFIG_REF_EVENT_PATTERN, h as CallSiteConfig, i as CallSiteConfigEntry, C as ConfigFieldDeclaration, l as ConfigFieldDeclarationSchema, m as ConfigFieldItemsDeclaration, n as ConfigRefEventError, D as DeclaredTraitConfig, o as DeclaredTraitConfigSchema, p as EntityFieldContract, q as EntityFieldContractSchema, r as Event, s as EventInput, E as EventPayloadField, t as EventPayloadFieldSchema, u as EventSchema, v as EventScope, w as EventScopeSchema, G as Guard, x as GuardInput, y as GuardSchema, L as ListenSource, z as ListenSourceSchema, O as OrbitalTraitRef, A as OrbitalTraitRefSchema, P as PayloadField, B as PayloadFieldSchema, F as PresentationType, R as REFERENCE_CONFIG_TYPES, H as ReferenceConfigType, I as RequiredField, J as RequiredFieldSchema, K as SECRET_CONFIG_TYPES, M as SecretConfigType, S as State, N as StateInput, Q as StateMachine, U as StateMachineInput, V as StateMachineSchema, W as StateSchema, X as TickIntervalSchema, g as Trait, Y as TraitCategory, Z as TraitCategorySchema, b as TraitConfig, c as TraitConfigObject, _ as TraitConfigSchema, e as TraitConfigValue, $ as TraitConfigValueSchema, a0 as TraitDataEntity, a1 as TraitDataEntitySchema, f as TraitEntityField, a2 as TraitEntityFieldSchema, j as TraitEventContract, a3 as TraitEventContractSchema, T as TraitEventListener, a4 as TraitEventListenerSchema, a5 as TraitInput, d as TraitRef, a6 as TraitRefSchema, a as TraitReference, a7 as TraitReferenceInput, a8 as TraitReferenceSchema, a9 as TraitSchema, aa as TraitTick, ab as TraitTickSchema, ac as TraitUIBinding, ad as TraitUIBindingSchema, ae as Transition, af as TransitionInput, ag as TransitionSchema, ah as configRefEventKnob, ai as getTraitConfig, aj as getTraitName, ak as isCallSiteConfigDeclaration, al as isCircuitEvent, am as isInlineTrait, an as isReferenceConfigType, ao as isSecretConfigType, ap as maskSecretConfigValues, aq as normalizeCallSiteConfigToValues, ar as normalizeTraitRef, as 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-B8ZQ8lo5.js';
|
|
5
|
+
export { k as CONFIG_REF_EVENT_PATTERN, h as CallSiteConfig, i as CallSiteConfigEntry, C as ConfigFieldDeclaration, l as ConfigFieldDeclarationSchema, m as ConfigFieldItemsDeclaration, n as ConfigRefEventError, D as DeclaredTraitConfig, o as DeclaredTraitConfigSchema, p as EntityFieldContract, q as EntityFieldContractSchema, r as Event, s as EventInput, E as EventPayloadField, t as EventPayloadFieldSchema, u as EventSchema, v as EventScope, w as EventScopeSchema, G as Guard, x as GuardInput, y as GuardSchema, L as ListenSource, z as ListenSourceSchema, O as OrbitalTraitRef, A as OrbitalTraitRefSchema, P as PayloadField, B as PayloadFieldSchema, F as PresentationType, R as REFERENCE_CONFIG_TYPES, H as ReferenceConfigType, I as RequiredField, J as RequiredFieldSchema, K as SECRET_CONFIG_TYPES, M as SecretConfigType, S as State, N as StateInput, Q as StateMachine, U as StateMachineInput, V as StateMachineSchema, W as StateSchema, X as TickIntervalSchema, g as Trait, Y as TraitCategory, Z as TraitCategorySchema, b as TraitConfig, c as TraitConfigObject, _ as TraitConfigSchema, e as TraitConfigValue, $ as TraitConfigValueSchema, a0 as TraitDataEntity, a1 as TraitDataEntitySchema, f as TraitEntityField, a2 as TraitEntityFieldSchema, j as TraitEventContract, a3 as TraitEventContractSchema, T as TraitEventListener, a4 as TraitEventListenerSchema, a5 as TraitInput, d as TraitRef, a6 as TraitRefSchema, a as TraitReference, a7 as TraitReferenceInput, a8 as TraitReferenceSchema, a9 as TraitSchema, aa as TraitTick, ab as TraitTickSchema, ac as TraitUIBinding, ad as TraitUIBindingSchema, ae as Transition, af as TransitionInput, ag as TransitionSchema, ah as configRefEventKnob, ai as getTraitConfig, aj as getTraitName, ak as isCallSiteConfigDeclaration, al as isCircuitEvent, am as isInlineTrait, an as isReferenceConfigType, ao as isSecretConfigType, ap as maskSecretConfigValues, aq as normalizeCallSiteConfigToValues, ar as normalizeTraitRef, as as resolveConfigRefEventName } from '../trait-DCmf5iRN.js';
|
|
6
6
|
import 'zod';
|
|
7
|
-
import '../types-
|
|
7
|
+
import '../types-Cb51Jqxe.js';
|
|
8
8
|
import '../builders.js';
|
package/dist/types/index.js
CHANGED
|
@@ -1748,6 +1748,17 @@ var UseDeclarationSchema = z.object({
|
|
|
1748
1748
|
'Alias must be PascalCase (e.g., "Health", "GameCore")'
|
|
1749
1749
|
)
|
|
1750
1750
|
});
|
|
1751
|
+
function expectedEntityName(decl) {
|
|
1752
|
+
switch (decl.kind) {
|
|
1753
|
+
case "entity":
|
|
1754
|
+
return decl.name;
|
|
1755
|
+
case "identity":
|
|
1756
|
+
return decl.name;
|
|
1757
|
+
case "event":
|
|
1758
|
+
case "page":
|
|
1759
|
+
return void 0;
|
|
1760
|
+
}
|
|
1761
|
+
}
|
|
1751
1762
|
var ExpectDeclarationSchema = z.discriminatedUnion("kind", [
|
|
1752
1763
|
z.object({
|
|
1753
1764
|
kind: z.literal("identity"),
|
|
@@ -1763,6 +1774,10 @@ var ExpectDeclarationSchema = z.discriminatedUnion("kind", [
|
|
|
1763
1774
|
kind: z.literal("event"),
|
|
1764
1775
|
traitName: z.string().min(1, "Expected event trait name is required"),
|
|
1765
1776
|
event: z.string().min(1, "Expected event name is required")
|
|
1777
|
+
}),
|
|
1778
|
+
z.object({
|
|
1779
|
+
kind: z.literal("page"),
|
|
1780
|
+
path: z.string().min(1, "Expected page path is required")
|
|
1766
1781
|
})
|
|
1767
1782
|
]);
|
|
1768
1783
|
function isEntityReference(entity) {
|
|
@@ -2820,6 +2835,6 @@ function widenTier(tier) {
|
|
|
2820
2835
|
return tier;
|
|
2821
2836
|
}
|
|
2822
2837
|
|
|
2823
|
-
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpectDeclarationSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SHEET_PROJECTIONS, SPRITE_DIRECTIONS, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, atomic, callService, collectBindings, configRefEventKnob, containsEntityBinding, containsPayloadBinding, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, deref, deriveCollection, despawn, doEffects, emit, encodeDevIdentityToken, findPersonaInRoster, findService, getArgs, getBindingExamples, getDefaultAnimationsForRole, getInteractionModelForDomain, getOperator, getServiceNames, getTraitConfig, getTraitName, hasService, idKindOf, idPrefix, inferTsType, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isEffect, isEmailValue, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPhoneValue, isPlanSnapshot, isReferenceConfigType, isRenderBindingMarker, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isSecretConfigType, isSemanticStringType, isSemanticStringValue, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, ledgerCurName, ledgerRename, ledgerResolveName, maskSecretConfigValues, mintId, navigate, navigateBack, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, ref, renderUI, resolveConfigRefEventName, resolveDefaultViewer, resolvePersonaSpec, safeParseOrbitalSchema, set, sexpr, spawn, swap, toBindingRoot, validateAssetAnimations, validateBindingInContext, walkSExpr, watch, widenTier };
|
|
2838
|
+
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpectDeclarationSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SHEET_PROJECTIONS, SPRITE_DIRECTIONS, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, atomic, callService, collectBindings, configRefEventKnob, containsEntityBinding, containsPayloadBinding, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, deref, deriveCollection, despawn, doEffects, emit, encodeDevIdentityToken, expectedEntityName, findPersonaInRoster, findService, getArgs, getBindingExamples, getDefaultAnimationsForRole, getInteractionModelForDomain, getOperator, getServiceNames, getTraitConfig, getTraitName, hasService, idKindOf, idPrefix, inferTsType, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isEffect, isEmailValue, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMcpService, isOrbitalDefinition, isOrbitalId, isPageId, isPageReference, isPageReferenceObject, isPageReferenceString, isPaletteEntryId, isPhoneValue, isPlanSnapshot, isReferenceConfigType, isRenderBindingMarker, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isSecretConfigType, isSemanticStringType, isSemanticStringValue, isServiceId, isServiceReference, isServiceReferenceObject, isSessionHistoryEntry, isSocketService, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, ledgerCurName, ledgerRename, ledgerResolveName, maskSecretConfigValues, mintId, navigate, navigateBack, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, ref, renderUI, resolveConfigRefEventName, resolveDefaultViewer, resolvePersonaSpec, safeParseOrbitalSchema, set, sexpr, spawn, swap, toBindingRoot, validateAssetAnimations, validateBindingInContext, walkSExpr, watch, widenTier };
|
|
2824
2839
|
//# sourceMappingURL=index.js.map
|
|
2825
2840
|
//# sourceMappingURL=index.js.map
|