@almadar/core 10.1.0 → 10.2.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 +10 -1
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-CPisdINZ.d.ts → compose-behaviors-DM0gUoSO.d.ts} +1 -1
- package/dist/factory/index.d.ts +3 -3
- package/dist/index.d.ts +6 -6
- package/dist/index.js +11 -2
- package/dist/index.js.map +1 -1
- package/dist/{schema-D6Y8TfW3.d.ts → schema-lxLUgVSb.d.ts} +97 -97
- package/dist/{trait-gH8M3N0M.d.ts → trait-Bhssodu6.d.ts} +87 -25
- package/dist/types/index.d.ts +6 -6
- package/dist/types/index.js +11 -2
- package/dist/types/index.js.map +1 -1
- package/dist/{types-JMLj6eu1.d.ts → types-Bz0Zxvd_.d.ts} +1 -1
- package/package.json +1 -1
|
@@ -1234,11 +1234,71 @@ declare const AssetMapSchema: z.ZodObject<{
|
|
|
1234
1234
|
files?: string[] | undefined;
|
|
1235
1235
|
}>;
|
|
1236
1236
|
}>;
|
|
1237
|
+
/**
|
|
1238
|
+
* Single browsable asset in the inspector picker catalog.
|
|
1239
|
+
* Backs the asset/icon pickers — a flat list the inspector renders for
|
|
1240
|
+
* the user to choose from when a config field's control is `'asset'`.
|
|
1241
|
+
*/
|
|
1242
|
+
interface AssetCatalogEntry {
|
|
1243
|
+
/** Resolvable URL to the asset. */
|
|
1244
|
+
url: string;
|
|
1245
|
+
/** Display name for the asset. */
|
|
1246
|
+
name: string;
|
|
1247
|
+
/** Grouping category within the catalog. */
|
|
1248
|
+
category: string;
|
|
1249
|
+
/** Asset kind the picker dispatches on. */
|
|
1250
|
+
kind: 'image' | 'spritesheet' | 'audio' | 'scene' | 'portrait' | 'model' | 'other';
|
|
1251
|
+
/** Optional thumbnail URL for grid previews. */
|
|
1252
|
+
thumbnailUrl?: string;
|
|
1253
|
+
}
|
|
1254
|
+
declare const AssetCatalogEntrySchema: z.ZodObject<{
|
|
1255
|
+
url: z.ZodString;
|
|
1256
|
+
name: z.ZodString;
|
|
1257
|
+
category: z.ZodString;
|
|
1258
|
+
kind: z.ZodEnum<["image", "spritesheet", "audio", "scene", "portrait", "model", "other"]>;
|
|
1259
|
+
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
1260
|
+
}, "strip", z.ZodTypeAny, {
|
|
1261
|
+
url: string;
|
|
1262
|
+
name: string;
|
|
1263
|
+
category: string;
|
|
1264
|
+
kind: "image" | "spritesheet" | "audio" | "scene" | "portrait" | "model" | "other";
|
|
1265
|
+
thumbnailUrl?: string | undefined;
|
|
1266
|
+
}, {
|
|
1267
|
+
url: string;
|
|
1268
|
+
name: string;
|
|
1269
|
+
category: string;
|
|
1270
|
+
kind: "image" | "spritesheet" | "audio" | "scene" | "portrait" | "model" | "other";
|
|
1271
|
+
thumbnailUrl?: string | undefined;
|
|
1272
|
+
}>;
|
|
1273
|
+
/**
|
|
1274
|
+
* Flat list of browsable assets surfaced by the inspector pickers.
|
|
1275
|
+
*/
|
|
1276
|
+
type AssetCatalog = AssetCatalogEntry[];
|
|
1277
|
+
declare const AssetCatalogSchema: z.ZodArray<z.ZodObject<{
|
|
1278
|
+
url: z.ZodString;
|
|
1279
|
+
name: z.ZodString;
|
|
1280
|
+
category: z.ZodString;
|
|
1281
|
+
kind: z.ZodEnum<["image", "spritesheet", "audio", "scene", "portrait", "model", "other"]>;
|
|
1282
|
+
thumbnailUrl: z.ZodOptional<z.ZodString>;
|
|
1283
|
+
}, "strip", z.ZodTypeAny, {
|
|
1284
|
+
url: string;
|
|
1285
|
+
name: string;
|
|
1286
|
+
category: string;
|
|
1287
|
+
kind: "image" | "spritesheet" | "audio" | "scene" | "portrait" | "model" | "other";
|
|
1288
|
+
thumbnailUrl?: string | undefined;
|
|
1289
|
+
}, {
|
|
1290
|
+
url: string;
|
|
1291
|
+
name: string;
|
|
1292
|
+
category: string;
|
|
1293
|
+
kind: "image" | "spritesheet" | "audio" | "scene" | "portrait" | "model" | "other";
|
|
1294
|
+
thumbnailUrl?: string | undefined;
|
|
1295
|
+
}>, "many">;
|
|
1237
1296
|
type SemanticAssetRefInput = z.input<typeof SemanticAssetRefSchema>;
|
|
1238
1297
|
type ResolvedAssetInput = z.input<typeof ResolvedAssetSchema>;
|
|
1239
1298
|
type AssetMappingInput = z.input<typeof AssetMappingSchema>;
|
|
1240
1299
|
type AssetMapInput = z.input<typeof AssetMapSchema>;
|
|
1241
1300
|
type AnimationDefInput = z.input<typeof AnimationDefSchema>;
|
|
1301
|
+
type AssetCatalogEntryInput = z.input<typeof AssetCatalogEntrySchema>;
|
|
1242
1302
|
/**
|
|
1243
1303
|
* Creates a semantic asset key from role and category.
|
|
1244
1304
|
*
|
|
@@ -2741,6 +2801,8 @@ interface ConfigFieldDeclaration {
|
|
|
2741
2801
|
readonly values?: ReadonlyArray<string>;
|
|
2742
2802
|
/** `@synonyms` — comma-separated vocabulary synonyms (metadata). */
|
|
2743
2803
|
readonly synonyms?: string;
|
|
2804
|
+
/** Deterministic control-type tag the inspector dispatches on to pick its editor. */
|
|
2805
|
+
readonly control?: 'icon' | 'asset' | 'color' | 'text' | 'number' | 'boolean' | 'select';
|
|
2744
2806
|
}
|
|
2745
2807
|
declare const ConfigFieldDeclarationSchema: z.ZodType<ConfigFieldDeclaration>;
|
|
2746
2808
|
/**
|
|
@@ -3118,12 +3180,12 @@ declare const ListenSourceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3118
3180
|
trait: z.ZodString;
|
|
3119
3181
|
}, "strip", z.ZodTypeAny, {
|
|
3120
3182
|
trait: string;
|
|
3121
|
-
orbital: string;
|
|
3122
3183
|
kind: "orbital";
|
|
3184
|
+
orbital: string;
|
|
3123
3185
|
}, {
|
|
3124
3186
|
trait: string;
|
|
3125
|
-
orbital: string;
|
|
3126
3187
|
kind: "orbital";
|
|
3188
|
+
orbital: string;
|
|
3127
3189
|
}>]>;
|
|
3128
3190
|
interface TraitEventListener {
|
|
3129
3191
|
/** Event key to listen for (bare event name, no source prefix in the new shape) */
|
|
@@ -3182,12 +3244,12 @@ declare const TraitEventListenerSchema: z.ZodObject<{
|
|
|
3182
3244
|
trait: z.ZodString;
|
|
3183
3245
|
}, "strip", z.ZodTypeAny, {
|
|
3184
3246
|
trait: string;
|
|
3185
|
-
orbital: string;
|
|
3186
3247
|
kind: "orbital";
|
|
3248
|
+
orbital: string;
|
|
3187
3249
|
}, {
|
|
3188
3250
|
trait: string;
|
|
3189
|
-
orbital: string;
|
|
3190
3251
|
kind: "orbital";
|
|
3252
|
+
orbital: string;
|
|
3191
3253
|
}>]>>;
|
|
3192
3254
|
}, "strip", z.ZodTypeAny, {
|
|
3193
3255
|
event: string;
|
|
@@ -3203,8 +3265,8 @@ declare const TraitEventListenerSchema: z.ZodObject<{
|
|
|
3203
3265
|
kind: "trait";
|
|
3204
3266
|
} | {
|
|
3205
3267
|
trait: string;
|
|
3206
|
-
orbital: string;
|
|
3207
3268
|
kind: "orbital";
|
|
3269
|
+
orbital: string;
|
|
3208
3270
|
} | undefined;
|
|
3209
3271
|
scope?: "internal" | "external" | undefined;
|
|
3210
3272
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -3222,8 +3284,8 @@ declare const TraitEventListenerSchema: z.ZodObject<{
|
|
|
3222
3284
|
kind: "trait";
|
|
3223
3285
|
} | {
|
|
3224
3286
|
trait: string;
|
|
3225
|
-
orbital: string;
|
|
3226
3287
|
kind: "orbital";
|
|
3288
|
+
orbital: string;
|
|
3227
3289
|
} | undefined;
|
|
3228
3290
|
scope?: "internal" | "external" | undefined;
|
|
3229
3291
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -3972,12 +4034,12 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3972
4034
|
trait: z.ZodString;
|
|
3973
4035
|
}, "strip", z.ZodTypeAny, {
|
|
3974
4036
|
trait: string;
|
|
3975
|
-
orbital: string;
|
|
3976
4037
|
kind: "orbital";
|
|
4038
|
+
orbital: string;
|
|
3977
4039
|
}, {
|
|
3978
4040
|
trait: string;
|
|
3979
|
-
orbital: string;
|
|
3980
4041
|
kind: "orbital";
|
|
4042
|
+
orbital: string;
|
|
3981
4043
|
}>]>>;
|
|
3982
4044
|
}, "strip", z.ZodTypeAny, {
|
|
3983
4045
|
event: string;
|
|
@@ -3993,8 +4055,8 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3993
4055
|
kind: "trait";
|
|
3994
4056
|
} | {
|
|
3995
4057
|
trait: string;
|
|
3996
|
-
orbital: string;
|
|
3997
4058
|
kind: "orbital";
|
|
4059
|
+
orbital: string;
|
|
3998
4060
|
} | undefined;
|
|
3999
4061
|
scope?: "internal" | "external" | undefined;
|
|
4000
4062
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -4012,8 +4074,8 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
4012
4074
|
kind: "trait";
|
|
4013
4075
|
} | {
|
|
4014
4076
|
trait: string;
|
|
4015
|
-
orbital: string;
|
|
4016
4077
|
kind: "orbital";
|
|
4078
|
+
orbital: string;
|
|
4017
4079
|
} | undefined;
|
|
4018
4080
|
scope?: "internal" | "external" | undefined;
|
|
4019
4081
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -4133,8 +4195,8 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
4133
4195
|
kind: "trait";
|
|
4134
4196
|
} | {
|
|
4135
4197
|
trait: string;
|
|
4136
|
-
orbital: string;
|
|
4137
4198
|
kind: "orbital";
|
|
4199
|
+
orbital: string;
|
|
4138
4200
|
} | undefined;
|
|
4139
4201
|
scope?: "internal" | "external" | undefined;
|
|
4140
4202
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -4278,8 +4340,8 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
4278
4340
|
kind: "trait";
|
|
4279
4341
|
} | {
|
|
4280
4342
|
trait: string;
|
|
4281
|
-
orbital: string;
|
|
4282
4343
|
kind: "orbital";
|
|
4344
|
+
orbital: string;
|
|
4283
4345
|
} | undefined;
|
|
4284
4346
|
scope?: "internal" | "external" | undefined;
|
|
4285
4347
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -4813,12 +4875,12 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4813
4875
|
trait: z.ZodString;
|
|
4814
4876
|
}, "strip", z.ZodTypeAny, {
|
|
4815
4877
|
trait: string;
|
|
4816
|
-
orbital: string;
|
|
4817
4878
|
kind: "orbital";
|
|
4879
|
+
orbital: string;
|
|
4818
4880
|
}, {
|
|
4819
4881
|
trait: string;
|
|
4820
|
-
orbital: string;
|
|
4821
4882
|
kind: "orbital";
|
|
4883
|
+
orbital: string;
|
|
4822
4884
|
}>]>>;
|
|
4823
4885
|
}, "strip", z.ZodTypeAny, {
|
|
4824
4886
|
event: string;
|
|
@@ -4834,8 +4896,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4834
4896
|
kind: "trait";
|
|
4835
4897
|
} | {
|
|
4836
4898
|
trait: string;
|
|
4837
|
-
orbital: string;
|
|
4838
4899
|
kind: "orbital";
|
|
4900
|
+
orbital: string;
|
|
4839
4901
|
} | undefined;
|
|
4840
4902
|
scope?: "internal" | "external" | undefined;
|
|
4841
4903
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -4853,8 +4915,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4853
4915
|
kind: "trait";
|
|
4854
4916
|
} | {
|
|
4855
4917
|
trait: string;
|
|
4856
|
-
orbital: string;
|
|
4857
4918
|
kind: "orbital";
|
|
4919
|
+
orbital: string;
|
|
4858
4920
|
} | undefined;
|
|
4859
4921
|
scope?: "internal" | "external" | undefined;
|
|
4860
4922
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -4974,8 +5036,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4974
5036
|
kind: "trait";
|
|
4975
5037
|
} | {
|
|
4976
5038
|
trait: string;
|
|
4977
|
-
orbital: string;
|
|
4978
5039
|
kind: "orbital";
|
|
5040
|
+
orbital: string;
|
|
4979
5041
|
} | undefined;
|
|
4980
5042
|
scope?: "internal" | "external" | undefined;
|
|
4981
5043
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -5119,8 +5181,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5119
5181
|
kind: "trait";
|
|
5120
5182
|
} | {
|
|
5121
5183
|
trait: string;
|
|
5122
|
-
orbital: string;
|
|
5123
5184
|
kind: "orbital";
|
|
5185
|
+
orbital: string;
|
|
5124
5186
|
} | undefined;
|
|
5125
5187
|
scope?: "internal" | "external" | undefined;
|
|
5126
5188
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -5724,12 +5786,12 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5724
5786
|
trait: z.ZodString;
|
|
5725
5787
|
}, "strip", z.ZodTypeAny, {
|
|
5726
5788
|
trait: string;
|
|
5727
|
-
orbital: string;
|
|
5728
5789
|
kind: "orbital";
|
|
5790
|
+
orbital: string;
|
|
5729
5791
|
}, {
|
|
5730
5792
|
trait: string;
|
|
5731
|
-
orbital: string;
|
|
5732
5793
|
kind: "orbital";
|
|
5794
|
+
orbital: string;
|
|
5733
5795
|
}>]>>;
|
|
5734
5796
|
}, "strip", z.ZodTypeAny, {
|
|
5735
5797
|
event: string;
|
|
@@ -5745,8 +5807,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5745
5807
|
kind: "trait";
|
|
5746
5808
|
} | {
|
|
5747
5809
|
trait: string;
|
|
5748
|
-
orbital: string;
|
|
5749
5810
|
kind: "orbital";
|
|
5811
|
+
orbital: string;
|
|
5750
5812
|
} | undefined;
|
|
5751
5813
|
scope?: "internal" | "external" | undefined;
|
|
5752
5814
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -5764,8 +5826,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5764
5826
|
kind: "trait";
|
|
5765
5827
|
} | {
|
|
5766
5828
|
trait: string;
|
|
5767
|
-
orbital: string;
|
|
5768
5829
|
kind: "orbital";
|
|
5830
|
+
orbital: string;
|
|
5769
5831
|
} | undefined;
|
|
5770
5832
|
scope?: "internal" | "external" | undefined;
|
|
5771
5833
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -5885,8 +5947,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5885
5947
|
kind: "trait";
|
|
5886
5948
|
} | {
|
|
5887
5949
|
trait: string;
|
|
5888
|
-
orbital: string;
|
|
5889
5950
|
kind: "orbital";
|
|
5951
|
+
orbital: string;
|
|
5890
5952
|
} | undefined;
|
|
5891
5953
|
scope?: "internal" | "external" | undefined;
|
|
5892
5954
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -6030,8 +6092,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
6030
6092
|
kind: "trait";
|
|
6031
6093
|
} | {
|
|
6032
6094
|
trait: string;
|
|
6033
|
-
orbital: string;
|
|
6034
6095
|
kind: "orbital";
|
|
6096
|
+
orbital: string;
|
|
6035
6097
|
} | undefined;
|
|
6036
6098
|
scope?: "internal" | "external" | undefined;
|
|
6037
6099
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -6141,4 +6203,4 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
6141
6203
|
} | undefined;
|
|
6142
6204
|
}>]>;
|
|
6143
6205
|
|
|
6144
|
-
export {
|
|
6206
|
+
export { EntityPersistenceSchema as $, type AgentEffect as A, type CallServiceEffect as B, type CallServiceConfig as C, type CheckpointLoadEffect as D, type Effect as E, type CheckpointSaveEffect as F, type ConfigFieldDeclaration as G, ConfigFieldDeclarationSchema as H, type DeclaredTraitConfig as I, DeclaredTraitConfigSchema as J, type DerefEffect as K, type DespawnEffect as L, type DoEffect as M, ENTITY_ROLES as N, type EffectInput as O, EffectSchema as P, type EmitConfig as Q, type RenderBinding as R, type State as S, type TraitConfig as T, type UISlot as U, type EmitEffect as V, type EntityData as W, type EntityFieldContract as X, EntityFieldContractSchema as Y, type EntityFieldInput as Z, EntityFieldSchema as _, type Trait as a, type ResolvedAssetInput as a$, type EntityRole as a0, EntityRoleSchema as a1, EntitySchema as a2, type EntityWith as a3, type EnumEntityField as a4, type EvaluateConfig as a5, type EvaluateEffect as a6, type Event as a7, type EventInput as a8, type EventPayloadField as a9, McpServiceDefSchema as aA, type NavigateEffect as aB, type NnConfig as aC, type NnLayer as aD, type NotifyEffect as aE, type OrbitalEntity as aF, type OrbitalEntityInput as aG, OrbitalEntitySchema as aH, type OrbitalTraitRef as aI, OrbitalTraitRefSchema as aJ, type OsEffect as aK, type PayloadField as aL, PayloadFieldSchema as aM, type PersistData as aN, type PersistEffect as aO, type PersistEmitConfig as aP, type PresentationType as aQ, type RefEffect as aR, type RelationConfig as aS, RelationConfigSchema as aT, type RelationEntityField as aU, type RenderItemLambda as aV, type RenderUIConfig as aW, type RenderUINode as aX, type RequiredField as aY, RequiredFieldSchema as aZ, type ResolvedAsset as a_, EventPayloadFieldSchema as aa, EventSchema as ab, type EventScope as ac, EventScopeSchema as ad, type FetchEffect as ae, type FetchOptions as af, type FetchResult as ag, type Field as ah, type FieldFormat as ai, FieldFormatSchema as aj, FieldSchema as ak, type FieldType as al, FieldTypeSchema as am, type FieldValue as an, type ForwardConfig as ao, type ForwardEffect as ap, GAME_TYPES as aq, type GameType as ar, GameTypeSchema as as, type Guard as at, type GuardInput as au, GuardSchema as av, type ListenSource as aw, ListenSourceSchema as ax, type LogEffect as ay, type McpServiceDef as az, type RenderUIEffect as b, type VisualStyle as b$, ResolvedAssetSchema as b0, type ResolvedPatternProps as b1, type RestAuthConfig as b2, RestAuthConfigSchema as b3, type RestServiceDef as b4, RestServiceDefSchema as b5, SERVICE_TYPES as b6, type ScalarEntityField as b7, type SemanticAssetRef as b8, type SemanticAssetRefInput as b9, type TraitCategory as bA, TraitCategorySchema as bB, type TraitConfigObject as bC, TraitConfigSchema as bD, type TraitConfigValue as bE, TraitConfigValueSchema as bF, type TraitDataEntity as bG, TraitDataEntitySchema as bH, type TraitEntityField as bI, TraitEntityFieldSchema as bJ, TraitEventContractSchema as bK, TraitEventListenerSchema as bL, type TraitInput as bM, TraitRefSchema as bN, type TraitReferenceInput as bO, TraitReferenceSchema as bP, TraitSchema as bQ, type TraitTick as bR, TraitTickSchema as bS, type TraitUIBinding as bT, type Transition as bU, type TransitionInput as bV, TransitionSchema as bW, type TypedEffect as bX, UISlotSchema as bY, UI_SLOTS as bZ, VISUAL_STYLES as b_, SemanticAssetRefSchema as ba, type ServiceDefinition as bb, ServiceDefinitionSchema as bc, type ServiceParams as bd, type ServiceParamsValue as be, type ServiceRef as bf, type ServiceRefObject as bg, ServiceRefObjectSchema as bh, ServiceRefSchema as bi, ServiceRefStringSchema as bj, type ServiceType as bk, ServiceTypeSchema as bl, type SetEffect as bm, type SocketEvents as bn, SocketEventsSchema as bo, type SocketServiceDef as bp, SocketServiceDefSchema as bq, type SpawnEffect as br, type StateInput as bs, type StateMachine as bt, type StateMachineInput as bu, StateMachineSchema as bv, StateSchema as bw, type SwapEffect as bx, type TrainConfig as by, type TrainEffect as bz, type TraitEventContract as c, VisualStyleSchema as c0, type WatchEffect as c1, type WatchOptions as c2, atomic as c3, callService as c4, createAssetKey as c5, deref as c6, deriveCollection as c7, despawn as c8, doEffects as c9, set as cA, spawn as cB, swap as cC, validateAssetAnimations as cD, watch as cE, type TraitScope as cF, emit as ca, findService as cb, getDefaultAnimationsForRole as cc, getServiceNames as cd, getTraitConfig as ce, getTraitName as cf, hasService as cg, isCircuitEvent as ch, isEffect as ci, isInlineTrait as cj, isMcpService as ck, isRestService as cl, isRuntimeEntity as cm, isSExprEffect as cn, isServiceReference as co, isServiceReferenceObject as cp, isSingletonEntity as cq, isSocketService as cr, navigate as cs, normalizeTraitRef as ct, notify as cu, parseAssetKey as cv, parseServiceRef as cw, persist as cx, ref as cy, renderUI as cz, type Entity as d, type TraitEventListener as e, type EntityField as f, type EntityPersistence as g, type EntityRow as h, type TraitRef as i, type TraitReference as j, type AnimationDef as k, type AnimationDefInput as l, AnimationDefSchema as m, type ArrayEntityField as n, type AssetCatalog as o, type AssetCatalogEntry as p, type AssetCatalogEntryInput as q, AssetCatalogEntrySchema as r, AssetCatalogSchema as s, type AssetMap as t, type AssetMapInput as u, AssetMapSchema as v, type AssetMapping as w, type AssetMappingInput as x, AssetMappingSchema as y, type AtomicEffect as z };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { O as OrbitalSchema, a7 as Orbital, b as Page, L as DomainContext, a as OrbitalDefinition, b0 as PageTraitRef } from '../schema-
|
|
2
|
-
export { A as AGENT_DOMAIN_CATEGORIES, d as ALLOWED_CUSTOM_COMPONENTS, e as AgentDomainCategory, f as AgentDomainCategorySchema, g as AllowedCustomComponent, C as ColorSlice, h as ColorSliceSchema, i as ColorTokens, j as ColorTokensSchema, k as ComputedEventContract, l as ComputedEventContractSchema, m as ComputedEventListener, n as ComputedEventListenerSchema, o as ConfigProvenanceRecord, p as ConfigProvenanceRecordSchema, q as CustomPatternDefinition, r as CustomPatternDefinitionInput, s as CustomPatternDefinitionSchema, t as CustomPatternMap, u as CustomPatternMapInput, v as CustomPatternMapSchema, D as DensitySlice, w as DensitySliceSchema, x as DensityTokens, y as DensityTokensSchema, z as DesignPreferences, B as DesignPreferencesInput, F as DesignPreferencesSchema, G as DesignTokens, H as DesignTokensInput, I as DesignTokensSchema, J as DomainCategory, K as DomainCategorySchema, M as DomainContextInput, N as DomainContextSchema, Q as DomainVocabulary, R as DomainVocabularySchema, S as ElevationSlice, T as ElevationSliceSchema, V as ElevationTokens, W as ElevationTokensSchema, X as EntityCall, Y as EntityCallSchema, E as EntityRef, Z as EntityRefSchema, _ as EntityRefStringSchema, $ as EntitySemanticRole, a0 as EntitySemanticRoleSchema, a1 as EventListener, a2 as EventListenerSchema, a3 as EventSemanticRole, a4 as EventSemanticRoleSchema, a5 as EventSource, a6 as EventSourceSchema, a8 as GameSubCategory, a9 as GameSubCategorySchema, aa as GeometrySlice, ab as GeometrySliceSchema, ac as GeometryTokens, ad as GeometryTokensSchema, ae as IconFamily, af as IconFamilySchema, ag as IconographySlice, ah as IconographySliceSchema, ai as IconographyTokens, aj as IconographyTokensSchema, ak as IllustrationSlice, al as IllustrationSliceSchema, am as IllustrationStyle, an as IllustrationStyleSchema, ao as IllustrationTokens, ap as IllustrationTokensSchema, aq as MotionDurationKey, ar as MotionDurationKeySchema, as as MotionDurationPalette, at as MotionDurationPaletteSchema, au as MotionEasingKey, av as MotionEasingKeySchema, aw as MotionEasingPalette, ax as MotionEasingPaletteSchema, ay as MotionIntent, az as MotionIntentMap, aA as MotionIntentMapSchema, aB as MotionIntentSchema, aC as MotionSlice, aD as MotionSliceSchema, aE as MotionTokens, aF as MotionTokensSchema, aG as NodeClassification, aH as NodeClassificationSchema, aI as OrbitalConfig, aJ as OrbitalConfigInput, aK as OrbitalConfigSchema, aL as OrbitalDefinitionSchema, aM as OrbitalInput, aN as OrbitalPage, aO as OrbitalPageInput, aP as OrbitalPageSchema, aQ as OrbitalPageStrictInput, aR as OrbitalPageStrictSchema, aS as OrbitalSchemaInput, aT as OrbitalSchemaSchema, aU as OrbitalSchemaWithTraits, aV as OrbitalUnit, aW as OrbitalUnitSchema, aX as OrbitalZodSchema, P as PageRef, c as PageRefObject, aY as PageRefObjectSchema, aZ as PageRefSchema, a_ as PageRefStringSchema, a$ as PageSchema, b1 as PageTraitRefSchema, b2 as RelatedLink, b3 as RelatedLinkSchema, b4 as SchemaMetadata, b5 as SchemaMetadataSchema, b6 as SkinSpec, b7 as SkinSpecSchema, b8 as SpacingScale, b9 as SpacingScaleSchema, ba as StateSemanticRole, bb as StateSemanticRoleSchema, bc as SuggestedGuard, bd as SuggestedGuardSchema, be as ThemeDefinition, bf as ThemeDefinitionSchema, bg as ThemeRef, bh as ThemeRefSchema, bi as ThemeRefStringSchema, bj as ThemeTokens, bk as ThemeTokensSchema, bl as ThemeVariant, bm as ThemeVariantSchema, bn as TypeIntent, bo as TypeIntentMap, bp as TypeIntentMapSchema, bq as TypeIntentSchema, br as TypeScale, bs as TypeScaleEntry, bt as TypeScaleEntrySchema, bu as TypeScaleSchema, bv as TypeScaleTokens, bw as TypeScaleTokensSchema, bx as TypeSizeKey, by as TypeSizeKeySchema, bz as TypeSlice, bA as TypeSliceSchema, bB as TypeSlot, bC as TypeSlotSchema, bD as TypeWeight, bE as TypeWeightSchema, bF as UXHints, bG as UXHintsSchema, U as UseDeclaration, bH as UseDeclarationSchema, bI as UserPersona, bJ as UserPersonaInput, bK as UserPersonaSchema, bL as ViewType, bM as ViewTypeSchema, bN as isEntityCall, bO as isEntityReference, bP as isEntityReferenceAny, bQ as isImportedTraitRef, bR as isOrbitalDefinition, bS as isPageReference, bT as isPageReferenceObject, bU as isPageReferenceString, bV as isThemeReference, bW as parseEntityRef, bX as parseImportedTraitRef, bY as parseOrbitalSchema, bZ as parsePageRef, b_ as safeParseOrbitalSchema } from '../schema-
|
|
3
|
-
import {
|
|
4
|
-
export { A as AgentEffect, k as AnimationDef, l as AnimationDefInput, m as AnimationDefSchema, n as ArrayEntityField, o as
|
|
1
|
+
import { O as OrbitalSchema, a7 as Orbital, b as Page, L as DomainContext, a as OrbitalDefinition, b0 as PageTraitRef } from '../schema-lxLUgVSb.js';
|
|
2
|
+
export { A as AGENT_DOMAIN_CATEGORIES, d as ALLOWED_CUSTOM_COMPONENTS, e as AgentDomainCategory, f as AgentDomainCategorySchema, g as AllowedCustomComponent, C as ColorSlice, h as ColorSliceSchema, i as ColorTokens, j as ColorTokensSchema, k as ComputedEventContract, l as ComputedEventContractSchema, m as ComputedEventListener, n as ComputedEventListenerSchema, o as ConfigProvenanceRecord, p as ConfigProvenanceRecordSchema, q as CustomPatternDefinition, r as CustomPatternDefinitionInput, s as CustomPatternDefinitionSchema, t as CustomPatternMap, u as CustomPatternMapInput, v as CustomPatternMapSchema, D as DensitySlice, w as DensitySliceSchema, x as DensityTokens, y as DensityTokensSchema, z as DesignPreferences, B as DesignPreferencesInput, F as DesignPreferencesSchema, G as DesignTokens, H as DesignTokensInput, I as DesignTokensSchema, J as DomainCategory, K as DomainCategorySchema, M as DomainContextInput, N as DomainContextSchema, Q as DomainVocabulary, R as DomainVocabularySchema, S as ElevationSlice, T as ElevationSliceSchema, V as ElevationTokens, W as ElevationTokensSchema, X as EntityCall, Y as EntityCallSchema, E as EntityRef, Z as EntityRefSchema, _ as EntityRefStringSchema, $ as EntitySemanticRole, a0 as EntitySemanticRoleSchema, a1 as EventListener, a2 as EventListenerSchema, a3 as EventSemanticRole, a4 as EventSemanticRoleSchema, a5 as EventSource, a6 as EventSourceSchema, a8 as GameSubCategory, a9 as GameSubCategorySchema, aa as GeometrySlice, ab as GeometrySliceSchema, ac as GeometryTokens, ad as GeometryTokensSchema, ae as IconFamily, af as IconFamilySchema, ag as IconographySlice, ah as IconographySliceSchema, ai as IconographyTokens, aj as IconographyTokensSchema, ak as IllustrationSlice, al as IllustrationSliceSchema, am as IllustrationStyle, an as IllustrationStyleSchema, ao as IllustrationTokens, ap as IllustrationTokensSchema, aq as MotionDurationKey, ar as MotionDurationKeySchema, as as MotionDurationPalette, at as MotionDurationPaletteSchema, au as MotionEasingKey, av as MotionEasingKeySchema, aw as MotionEasingPalette, ax as MotionEasingPaletteSchema, ay as MotionIntent, az as MotionIntentMap, aA as MotionIntentMapSchema, aB as MotionIntentSchema, aC as MotionSlice, aD as MotionSliceSchema, aE as MotionTokens, aF as MotionTokensSchema, aG as NodeClassification, aH as NodeClassificationSchema, aI as OrbitalConfig, aJ as OrbitalConfigInput, aK as OrbitalConfigSchema, aL as OrbitalDefinitionSchema, aM as OrbitalInput, aN as OrbitalPage, aO as OrbitalPageInput, aP as OrbitalPageSchema, aQ as OrbitalPageStrictInput, aR as OrbitalPageStrictSchema, aS as OrbitalSchemaInput, aT as OrbitalSchemaSchema, aU as OrbitalSchemaWithTraits, aV as OrbitalUnit, aW as OrbitalUnitSchema, aX as OrbitalZodSchema, P as PageRef, c as PageRefObject, aY as PageRefObjectSchema, aZ as PageRefSchema, a_ as PageRefStringSchema, a$ as PageSchema, b1 as PageTraitRefSchema, b2 as RelatedLink, b3 as RelatedLinkSchema, b4 as SchemaMetadata, b5 as SchemaMetadataSchema, b6 as SkinSpec, b7 as SkinSpecSchema, b8 as SpacingScale, b9 as SpacingScaleSchema, ba as StateSemanticRole, bb as StateSemanticRoleSchema, bc as SuggestedGuard, bd as SuggestedGuardSchema, be as ThemeDefinition, bf as ThemeDefinitionSchema, bg as ThemeRef, bh as ThemeRefSchema, bi as ThemeRefStringSchema, bj as ThemeTokens, bk as ThemeTokensSchema, bl as ThemeVariant, bm as ThemeVariantSchema, bn as TypeIntent, bo as TypeIntentMap, bp as TypeIntentMapSchema, bq as TypeIntentSchema, br as TypeScale, bs as TypeScaleEntry, bt as TypeScaleEntrySchema, bu as TypeScaleSchema, bv as TypeScaleTokens, bw as TypeScaleTokensSchema, bx as TypeSizeKey, by as TypeSizeKeySchema, bz as TypeSlice, bA as TypeSliceSchema, bB as TypeSlot, bC as TypeSlotSchema, bD as TypeWeight, bE as TypeWeightSchema, bF as UXHints, bG as UXHintsSchema, U as UseDeclaration, bH as UseDeclarationSchema, bI as UserPersona, bJ as UserPersonaInput, bK as UserPersonaSchema, bL as ViewType, bM as ViewTypeSchema, bN as isEntityCall, bO as isEntityReference, bP as isEntityReferenceAny, bQ as isImportedTraitRef, bR as isOrbitalDefinition, bS as isPageReference, bT as isPageReferenceObject, bU as isPageReferenceString, bV as isThemeReference, bW as parseEntityRef, bX as parseImportedTraitRef, bY as parseOrbitalSchema, bZ as parsePageRef, b_ as safeParseOrbitalSchema } from '../schema-lxLUgVSb.js';
|
|
3
|
+
import { bd as ServiceParams, a as Trait, d as Entity, h as EntityRow, an as FieldValue, I as DeclaredTraitConfig, T as TraitConfig, E as Effect, G as ConfigFieldDeclaration, S as State, bU as Transition, f as EntityField, a7 as Event, bE as TraitConfigValue, g as EntityPersistence, bA as TraitCategory, cF as TraitScope } from '../trait-Bhssodu6.js';
|
|
4
|
+
export { A as AgentEffect, k as AnimationDef, l as AnimationDefInput, m as AnimationDefSchema, n as ArrayEntityField, o as AssetCatalog, p as AssetCatalogEntry, q as AssetCatalogEntryInput, r as AssetCatalogEntrySchema, s as AssetCatalogSchema, t as AssetMap, u as AssetMapInput, v as AssetMapSchema, w as AssetMapping, x as AssetMappingInput, y as AssetMappingSchema, z as AtomicEffect, C as CallServiceConfig, B as CallServiceEffect, D as CheckpointLoadEffect, F as CheckpointSaveEffect, H as ConfigFieldDeclarationSchema, J as DeclaredTraitConfigSchema, K as DerefEffect, L as DespawnEffect, M as DoEffect, N as ENTITY_ROLES, O as EffectInput, P as EffectSchema, Q as EmitConfig, V as EmitEffect, W as EntityData, X as EntityFieldContract, Y as EntityFieldContractSchema, Z as EntityFieldInput, _ as EntityFieldSchema, $ as EntityPersistenceSchema, a0 as EntityRole, a1 as EntityRoleSchema, a2 as EntitySchema, a3 as EntityWith, a4 as EnumEntityField, a5 as EvaluateConfig, a6 as EvaluateEffect, a8 as EventInput, a9 as EventPayloadField, aa as EventPayloadFieldSchema, ab as EventSchema, ac as EventScope, ad as EventScopeSchema, ae as FetchEffect, af as FetchOptions, ag as FetchResult, ah as Field, ai as FieldFormat, aj as FieldFormatSchema, ak as FieldSchema, al as FieldType, am as FieldTypeSchema, ao as ForwardConfig, ap as ForwardEffect, aq as GAME_TYPES, ar as GameType, as as GameTypeSchema, at as Guard, au as GuardInput, av as GuardSchema, aw as ListenSource, ax as ListenSourceSchema, ay as LogEffect, az as McpServiceDef, aA as McpServiceDefSchema, aB as NavigateEffect, aC as NnConfig, aD as NnLayer, aE as NotifyEffect, aF as OrbitalEntity, aG as OrbitalEntityInput, aH as OrbitalEntitySchema, aI as OrbitalTraitRef, aJ as OrbitalTraitRefSchema, aK as OsEffect, aL as PayloadField, aM as PayloadFieldSchema, aN as PersistData, aO as PersistEffect, aP as PersistEmitConfig, aQ as PresentationType, aR as RefEffect, aS as RelationConfig, aT as RelationConfigSchema, aU as RelationEntityField, R as RenderBinding, aV as RenderItemLambda, aW as RenderUIConfig, b as RenderUIEffect, aX as RenderUINode, aY as RequiredField, aZ as RequiredFieldSchema, a_ as ResolvedAsset, a$ as ResolvedAssetInput, b0 as ResolvedAssetSchema, b1 as ResolvedPatternProps, b2 as RestAuthConfig, b3 as RestAuthConfigSchema, b4 as RestServiceDef, b5 as RestServiceDefSchema, b6 as SERVICE_TYPES, b7 as ScalarEntityField, b8 as SemanticAssetRef, b9 as SemanticAssetRefInput, ba as SemanticAssetRefSchema, bb as ServiceDefinition, bc as ServiceDefinitionSchema, be as ServiceParamsValue, bf as ServiceRef, bg as ServiceRefObject, bh as ServiceRefObjectSchema, bi as ServiceRefSchema, bj as ServiceRefStringSchema, bk as ServiceType, bl as ServiceTypeSchema, bm as SetEffect, bn as SocketEvents, bo as SocketEventsSchema, bp as SocketServiceDef, bq as SocketServiceDefSchema, br as SpawnEffect, bs as StateInput, bt as StateMachine, bu as StateMachineInput, bv as StateMachineSchema, bw as StateSchema, bx as SwapEffect, by as TrainConfig, bz as TrainEffect, bB as TraitCategorySchema, bC as TraitConfigObject, bD as TraitConfigSchema, bF as TraitConfigValueSchema, bG as TraitDataEntity, bH as TraitDataEntitySchema, bI as TraitEntityField, bJ as TraitEntityFieldSchema, c as TraitEventContract, bK as TraitEventContractSchema, e as TraitEventListener, bL as TraitEventListenerSchema, bM as TraitInput, i as TraitRef, bN as TraitRefSchema, j as TraitReference, bO as TraitReferenceInput, bP as TraitReferenceSchema, bQ as TraitSchema, bR as TraitTick, bS as TraitTickSchema, bT as TraitUIBinding, bV as TransitionInput, bW as TransitionSchema, bX as TypedEffect, U as UISlot, bY as UISlotSchema, bZ as UI_SLOTS, b_ as VISUAL_STYLES, b$ as VisualStyle, c0 as VisualStyleSchema, c1 as WatchEffect, c2 as WatchOptions, c3 as atomic, c4 as callService, c5 as createAssetKey, c6 as deref, c7 as deriveCollection, c8 as despawn, c9 as doEffects, ca as emit, cb as findService, cc as getDefaultAnimationsForRole, cd as getServiceNames, ce as getTraitConfig, cf as getTraitName, cg as hasService, ch as isCircuitEvent, ci as isEffect, cj as isInlineTrait, ck as isMcpService, cl as isRestService, cm as isRuntimeEntity, cn as isSExprEffect, co as isServiceReference, cp as isServiceReferenceObject, cq as isSingletonEntity, cr as isSocketService, cs as navigate, ct as normalizeTraitRef, cu as notify, cv as parseAssetKey, cw as parseServiceRef, cx as persist, cy as ref, cz as renderUI, cA as set, cB as spawn, cC as swap, cD as validateAssetAnimations, cE as watch } from '../trait-Bhssodu6.js';
|
|
5
5
|
import { c as EventPayloadValue, b as EventPayload, L as LogMeta, S as SExpr, E as EvalContext } from '../expression-BVRFm0sV.js';
|
|
6
6
|
export { C as CORE_BINDINGS, a as CoreBinding, d as Expression, e as ExpressionInput, f as ExpressionSchema, P as ParsedBinding, g as SExprAtom, h as SExprAtomSchema, i as SExprInput, j as SExprSchema, k as collectBindings, l as getArgs, m as getOperator, n as isBinding, o as isSExpr, p as isSExprAtom, q as isSExprCall, r as isValidBinding, s as parseBinding, t as sexpr, w as walkSExpr } from '../expression-BVRFm0sV.js';
|
|
7
7
|
import { z } from 'zod';
|
|
8
8
|
import { AnyPatternConfig } from '@almadar/patterns';
|
|
9
9
|
export { PATTERN_TYPES, PatternConfig, PatternType, isValidPatternType } from '@almadar/patterns';
|
|
10
|
-
import { c as FactoryConfigTier } from '../types-
|
|
11
|
-
export { J as JsonObject, n as JsonValue, T as ToolArgs, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive } from '../types-
|
|
10
|
+
import { c as FactoryConfigTier } from '../types-Bz0Zxvd_.js';
|
|
11
|
+
export { J as JsonObject, n as JsonValue, T as ToolArgs, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive } from '../types-Bz0Zxvd_.js';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* S-Expression Bindings
|
package/dist/types/index.js
CHANGED
|
@@ -188,6 +188,14 @@ var AssetMapSchema = z.object({
|
|
|
188
188
|
basePath: z.string(),
|
|
189
189
|
mappings: z.record(AssetMappingSchema)
|
|
190
190
|
});
|
|
191
|
+
var AssetCatalogEntrySchema = z.object({
|
|
192
|
+
url: z.string(),
|
|
193
|
+
name: z.string(),
|
|
194
|
+
category: z.string(),
|
|
195
|
+
kind: z.enum(["image", "spritesheet", "audio", "scene", "portrait", "model", "other"]),
|
|
196
|
+
thumbnailUrl: z.string().optional()
|
|
197
|
+
});
|
|
198
|
+
var AssetCatalogSchema = z.array(AssetCatalogEntrySchema);
|
|
191
199
|
function createAssetKey(role, category) {
|
|
192
200
|
return `${role}:${category}`;
|
|
193
201
|
}
|
|
@@ -506,7 +514,8 @@ var ConfigFieldDeclarationSchema = z.object({
|
|
|
506
514
|
description: z.string().optional(),
|
|
507
515
|
tier: z.string().optional(),
|
|
508
516
|
values: z.array(z.string()).optional(),
|
|
509
|
-
synonyms: z.string().optional()
|
|
517
|
+
synonyms: z.string().optional(),
|
|
518
|
+
control: z.enum(["icon", "asset", "color", "text", "number", "boolean", "select"]).optional()
|
|
510
519
|
});
|
|
511
520
|
var DeclaredTraitConfigSchema = z.record(
|
|
512
521
|
ConfigFieldDeclarationSchema
|
|
@@ -1925,6 +1934,6 @@ function widenTier(tier) {
|
|
|
1925
1934
|
return tier;
|
|
1926
1935
|
}
|
|
1927
1936
|
|
|
1928
|
-
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, AgentDomainCategorySchema, AnimationDefSchema, AssetMapSchema, AssetMappingSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CORE_BINDINGS, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FieldFormatSchema, FieldSchema, FieldTypeSchema, GAME_TYPES, GameSubCategorySchema, GameTypeSchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PatternTypeSchema, PayloadFieldSchema, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, ResolvedAssetSchema, RestAuthConfigSchema, RestServiceDefSchema, SERVICE_TYPES, SExprAtomSchema, SExprSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SuggestedGuardSchema, ThemeDefinitionSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, atomic, callService, collectBindings, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, deref, deriveCollection, despawn, doEffects, emit, findService, getAllPatternTypes, getArgs, getBindingExamples, getDefaultAnimationsForRole, getInteractionModelForDomain, getOperator, getServiceNames, getTraitConfig, getTraitName, hasService, inferTsType, isBinding, isCircuitEvent, isEffect, isEntityCall, isEntityReference, isEntityReferenceAny, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMcpService, isOrbitalDefinition, isPageReference, isPageReferenceObject, isPageReferenceString, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isServiceReference, isServiceReferenceObject, isSingletonEntity, isSocketService, isThemeReference, isTraitFieldRef, isValidBinding, navigate, normalizeTraitRef, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, ref, renderUI, safeParseOrbitalSchema, set, sexpr, spawn, swap, toBindingRoot, validateAssetAnimations, validateBindingInContext, walkSExpr, watch, widenTier };
|
|
1937
|
+
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, AgentDomainCategorySchema, AnimationDefSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetMapSchema, AssetMappingSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CORE_BINDINGS, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FieldFormatSchema, FieldSchema, FieldTypeSchema, GAME_TYPES, GameSubCategorySchema, GameTypeSchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PatternTypeSchema, PayloadFieldSchema, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, ResolvedAssetSchema, RestAuthConfigSchema, RestServiceDefSchema, SERVICE_TYPES, SExprAtomSchema, SExprSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SuggestedGuardSchema, ThemeDefinitionSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, atomic, callService, collectBindings, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, deref, deriveCollection, despawn, doEffects, emit, findService, getAllPatternTypes, getArgs, getBindingExamples, getDefaultAnimationsForRole, getInteractionModelForDomain, getOperator, getServiceNames, getTraitConfig, getTraitName, hasService, inferTsType, isBinding, isCircuitEvent, isEffect, isEntityCall, isEntityReference, isEntityReferenceAny, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMcpService, isOrbitalDefinition, isPageReference, isPageReferenceObject, isPageReferenceString, isResolvedIR, isRestService, isRuntimeEntity, isSExpr, isSExprAtom, isSExprCall, isSExprEffect, isServiceReference, isServiceReferenceObject, isSingletonEntity, isSocketService, isThemeReference, isTraitFieldRef, isValidBinding, navigate, normalizeTraitRef, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, persist, ref, renderUI, safeParseOrbitalSchema, set, sexpr, spawn, swap, toBindingRoot, validateAssetAnimations, validateBindingInContext, walkSExpr, watch, widenTier };
|
|
1929
1938
|
//# sourceMappingURL=index.js.map
|
|
1930
1939
|
//# sourceMappingURL=index.js.map
|