@almadar/core 10.1.0 → 10.3.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 +8 -0
- package/dist/builders.js.map +1 -1
- package/dist/{compose-behaviors-CPisdINZ.d.ts → compose-behaviors-BGPvhZTT.d.ts} +1 -1
- package/dist/factory/index.d.ts +3 -3
- package/dist/index.d.ts +6 -6
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/{schema-D6Y8TfW3.d.ts → schema-DTOofLIu.d.ts} +97 -97
- package/dist/{trait-gH8M3N0M.d.ts → trait-C7cTBoi5.d.ts} +97 -25
- package/dist/types/index.d.ts +6 -6
- package/dist/types/index.js +9 -1
- package/dist/types/index.js.map +1 -1
- package/dist/{types-JMLj6eu1.d.ts → types-CVzLocjv.d.ts} +1 -1
- package/package.json +1 -1
|
@@ -1234,11 +1234,83 @@ 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 type 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">;
|
|
1296
|
+
/**
|
|
1297
|
+
* Asset-reference URL marker. A plain alias over `string` — the value is a
|
|
1298
|
+
* resolvable asset URL — but the named type lets the pattern-sync tool
|
|
1299
|
+
* (`tools/almadar-pattern-sync/parser.ts`) detect a component prop as an asset
|
|
1300
|
+
* field (tagged `asset`) the same way `EventKey`/`LucideIcon` are detected by
|
|
1301
|
+
* type identity. Components annotate image/url props as `AssetUrl` (`src`,
|
|
1302
|
+
* `backgroundImage`, `avatar`, …); the generator emits a `string` config knob
|
|
1303
|
+
* declared as the `asset` config type, which the property inspector dispatches
|
|
1304
|
+
* an AssetPicker on. Not branded — asset urls originate from user data, so cast
|
|
1305
|
+
* friction would buy nothing; the value is the marker the tool finds.
|
|
1306
|
+
*/
|
|
1307
|
+
type AssetUrl = string;
|
|
1237
1308
|
type SemanticAssetRefInput = z.input<typeof SemanticAssetRefSchema>;
|
|
1238
1309
|
type ResolvedAssetInput = z.input<typeof ResolvedAssetSchema>;
|
|
1239
1310
|
type AssetMappingInput = z.input<typeof AssetMappingSchema>;
|
|
1240
1311
|
type AssetMapInput = z.input<typeof AssetMapSchema>;
|
|
1241
1312
|
type AnimationDefInput = z.input<typeof AnimationDefSchema>;
|
|
1313
|
+
type AssetCatalogEntryInput = z.input<typeof AssetCatalogEntrySchema>;
|
|
1242
1314
|
/**
|
|
1243
1315
|
* Creates a semantic asset key from role and category.
|
|
1244
1316
|
*
|
|
@@ -3118,12 +3190,12 @@ declare const ListenSourceSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3118
3190
|
trait: z.ZodString;
|
|
3119
3191
|
}, "strip", z.ZodTypeAny, {
|
|
3120
3192
|
trait: string;
|
|
3121
|
-
orbital: string;
|
|
3122
3193
|
kind: "orbital";
|
|
3194
|
+
orbital: string;
|
|
3123
3195
|
}, {
|
|
3124
3196
|
trait: string;
|
|
3125
|
-
orbital: string;
|
|
3126
3197
|
kind: "orbital";
|
|
3198
|
+
orbital: string;
|
|
3127
3199
|
}>]>;
|
|
3128
3200
|
interface TraitEventListener {
|
|
3129
3201
|
/** Event key to listen for (bare event name, no source prefix in the new shape) */
|
|
@@ -3182,12 +3254,12 @@ declare const TraitEventListenerSchema: z.ZodObject<{
|
|
|
3182
3254
|
trait: z.ZodString;
|
|
3183
3255
|
}, "strip", z.ZodTypeAny, {
|
|
3184
3256
|
trait: string;
|
|
3185
|
-
orbital: string;
|
|
3186
3257
|
kind: "orbital";
|
|
3258
|
+
orbital: string;
|
|
3187
3259
|
}, {
|
|
3188
3260
|
trait: string;
|
|
3189
|
-
orbital: string;
|
|
3190
3261
|
kind: "orbital";
|
|
3262
|
+
orbital: string;
|
|
3191
3263
|
}>]>>;
|
|
3192
3264
|
}, "strip", z.ZodTypeAny, {
|
|
3193
3265
|
event: string;
|
|
@@ -3203,8 +3275,8 @@ declare const TraitEventListenerSchema: z.ZodObject<{
|
|
|
3203
3275
|
kind: "trait";
|
|
3204
3276
|
} | {
|
|
3205
3277
|
trait: string;
|
|
3206
|
-
orbital: string;
|
|
3207
3278
|
kind: "orbital";
|
|
3279
|
+
orbital: string;
|
|
3208
3280
|
} | undefined;
|
|
3209
3281
|
scope?: "internal" | "external" | undefined;
|
|
3210
3282
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -3222,8 +3294,8 @@ declare const TraitEventListenerSchema: z.ZodObject<{
|
|
|
3222
3294
|
kind: "trait";
|
|
3223
3295
|
} | {
|
|
3224
3296
|
trait: string;
|
|
3225
|
-
orbital: string;
|
|
3226
3297
|
kind: "orbital";
|
|
3298
|
+
orbital: string;
|
|
3227
3299
|
} | undefined;
|
|
3228
3300
|
scope?: "internal" | "external" | undefined;
|
|
3229
3301
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -3972,12 +4044,12 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3972
4044
|
trait: z.ZodString;
|
|
3973
4045
|
}, "strip", z.ZodTypeAny, {
|
|
3974
4046
|
trait: string;
|
|
3975
|
-
orbital: string;
|
|
3976
4047
|
kind: "orbital";
|
|
4048
|
+
orbital: string;
|
|
3977
4049
|
}, {
|
|
3978
4050
|
trait: string;
|
|
3979
|
-
orbital: string;
|
|
3980
4051
|
kind: "orbital";
|
|
4052
|
+
orbital: string;
|
|
3981
4053
|
}>]>>;
|
|
3982
4054
|
}, "strip", z.ZodTypeAny, {
|
|
3983
4055
|
event: string;
|
|
@@ -3993,8 +4065,8 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
3993
4065
|
kind: "trait";
|
|
3994
4066
|
} | {
|
|
3995
4067
|
trait: string;
|
|
3996
|
-
orbital: string;
|
|
3997
4068
|
kind: "orbital";
|
|
4069
|
+
orbital: string;
|
|
3998
4070
|
} | undefined;
|
|
3999
4071
|
scope?: "internal" | "external" | undefined;
|
|
4000
4072
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -4012,8 +4084,8 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
4012
4084
|
kind: "trait";
|
|
4013
4085
|
} | {
|
|
4014
4086
|
trait: string;
|
|
4015
|
-
orbital: string;
|
|
4016
4087
|
kind: "orbital";
|
|
4088
|
+
orbital: string;
|
|
4017
4089
|
} | undefined;
|
|
4018
4090
|
scope?: "internal" | "external" | undefined;
|
|
4019
4091
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -4133,8 +4205,8 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
4133
4205
|
kind: "trait";
|
|
4134
4206
|
} | {
|
|
4135
4207
|
trait: string;
|
|
4136
|
-
orbital: string;
|
|
4137
4208
|
kind: "orbital";
|
|
4209
|
+
orbital: string;
|
|
4138
4210
|
} | undefined;
|
|
4139
4211
|
scope?: "internal" | "external" | undefined;
|
|
4140
4212
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -4278,8 +4350,8 @@ declare const TraitSchema: z.ZodObject<{
|
|
|
4278
4350
|
kind: "trait";
|
|
4279
4351
|
} | {
|
|
4280
4352
|
trait: string;
|
|
4281
|
-
orbital: string;
|
|
4282
4353
|
kind: "orbital";
|
|
4354
|
+
orbital: string;
|
|
4283
4355
|
} | undefined;
|
|
4284
4356
|
scope?: "internal" | "external" | undefined;
|
|
4285
4357
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -4813,12 +4885,12 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4813
4885
|
trait: z.ZodString;
|
|
4814
4886
|
}, "strip", z.ZodTypeAny, {
|
|
4815
4887
|
trait: string;
|
|
4816
|
-
orbital: string;
|
|
4817
4888
|
kind: "orbital";
|
|
4889
|
+
orbital: string;
|
|
4818
4890
|
}, {
|
|
4819
4891
|
trait: string;
|
|
4820
|
-
orbital: string;
|
|
4821
4892
|
kind: "orbital";
|
|
4893
|
+
orbital: string;
|
|
4822
4894
|
}>]>>;
|
|
4823
4895
|
}, "strip", z.ZodTypeAny, {
|
|
4824
4896
|
event: string;
|
|
@@ -4834,8 +4906,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4834
4906
|
kind: "trait";
|
|
4835
4907
|
} | {
|
|
4836
4908
|
trait: string;
|
|
4837
|
-
orbital: string;
|
|
4838
4909
|
kind: "orbital";
|
|
4910
|
+
orbital: string;
|
|
4839
4911
|
} | undefined;
|
|
4840
4912
|
scope?: "internal" | "external" | undefined;
|
|
4841
4913
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -4853,8 +4925,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4853
4925
|
kind: "trait";
|
|
4854
4926
|
} | {
|
|
4855
4927
|
trait: string;
|
|
4856
|
-
orbital: string;
|
|
4857
4928
|
kind: "orbital";
|
|
4929
|
+
orbital: string;
|
|
4858
4930
|
} | undefined;
|
|
4859
4931
|
scope?: "internal" | "external" | undefined;
|
|
4860
4932
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -4974,8 +5046,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
4974
5046
|
kind: "trait";
|
|
4975
5047
|
} | {
|
|
4976
5048
|
trait: string;
|
|
4977
|
-
orbital: string;
|
|
4978
5049
|
kind: "orbital";
|
|
5050
|
+
orbital: string;
|
|
4979
5051
|
} | undefined;
|
|
4980
5052
|
scope?: "internal" | "external" | undefined;
|
|
4981
5053
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -5119,8 +5191,8 @@ declare const TraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5119
5191
|
kind: "trait";
|
|
5120
5192
|
} | {
|
|
5121
5193
|
trait: string;
|
|
5122
|
-
orbital: string;
|
|
5123
5194
|
kind: "orbital";
|
|
5195
|
+
orbital: string;
|
|
5124
5196
|
} | undefined;
|
|
5125
5197
|
scope?: "internal" | "external" | undefined;
|
|
5126
5198
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -5724,12 +5796,12 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5724
5796
|
trait: z.ZodString;
|
|
5725
5797
|
}, "strip", z.ZodTypeAny, {
|
|
5726
5798
|
trait: string;
|
|
5727
|
-
orbital: string;
|
|
5728
5799
|
kind: "orbital";
|
|
5800
|
+
orbital: string;
|
|
5729
5801
|
}, {
|
|
5730
5802
|
trait: string;
|
|
5731
|
-
orbital: string;
|
|
5732
5803
|
kind: "orbital";
|
|
5804
|
+
orbital: string;
|
|
5733
5805
|
}>]>>;
|
|
5734
5806
|
}, "strip", z.ZodTypeAny, {
|
|
5735
5807
|
event: string;
|
|
@@ -5745,8 +5817,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5745
5817
|
kind: "trait";
|
|
5746
5818
|
} | {
|
|
5747
5819
|
trait: string;
|
|
5748
|
-
orbital: string;
|
|
5749
5820
|
kind: "orbital";
|
|
5821
|
+
orbital: string;
|
|
5750
5822
|
} | undefined;
|
|
5751
5823
|
scope?: "internal" | "external" | undefined;
|
|
5752
5824
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -5764,8 +5836,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5764
5836
|
kind: "trait";
|
|
5765
5837
|
} | {
|
|
5766
5838
|
trait: string;
|
|
5767
|
-
orbital: string;
|
|
5768
5839
|
kind: "orbital";
|
|
5840
|
+
orbital: string;
|
|
5769
5841
|
} | undefined;
|
|
5770
5842
|
scope?: "internal" | "external" | undefined;
|
|
5771
5843
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -5885,8 +5957,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
5885
5957
|
kind: "trait";
|
|
5886
5958
|
} | {
|
|
5887
5959
|
trait: string;
|
|
5888
|
-
orbital: string;
|
|
5889
5960
|
kind: "orbital";
|
|
5961
|
+
orbital: string;
|
|
5890
5962
|
} | undefined;
|
|
5891
5963
|
scope?: "internal" | "external" | undefined;
|
|
5892
5964
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -6030,8 +6102,8 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
6030
6102
|
kind: "trait";
|
|
6031
6103
|
} | {
|
|
6032
6104
|
trait: string;
|
|
6033
|
-
orbital: string;
|
|
6034
6105
|
kind: "orbital";
|
|
6106
|
+
orbital: string;
|
|
6035
6107
|
} | undefined;
|
|
6036
6108
|
scope?: "internal" | "external" | undefined;
|
|
6037
6109
|
payloadMapping?: Record<string, string> | undefined;
|
|
@@ -6141,4 +6213,4 @@ declare const OrbitalTraitRefSchema: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
|
6141
6213
|
} | undefined;
|
|
6142
6214
|
}>]>;
|
|
6143
6215
|
|
|
6144
|
-
export {
|
|
6216
|
+
export { EntityFieldSchema as $, type AgentEffect as A, type AtomicEffect as B, type CallServiceConfig as C, type CallServiceEffect as D, type Effect as E, type CheckpointLoadEffect as F, type CheckpointSaveEffect as G, type ConfigFieldDeclaration as H, ConfigFieldDeclarationSchema as I, type DeclaredTraitConfig as J, DeclaredTraitConfigSchema as K, type DerefEffect as L, type DespawnEffect as M, type DoEffect as N, ENTITY_ROLES as O, type EffectInput as P, EffectSchema as Q, type RenderBinding as R, type State as S, type TraitConfig as T, type UISlot as U, type EmitConfig as V, type EmitEffect as W, type EntityData as X, type EntityFieldContract as Y, EntityFieldContractSchema as Z, type EntityFieldInput as _, type Trait as a, type ResolvedAsset as a$, EntityPersistenceSchema as a0, type EntityRole as a1, EntityRoleSchema as a2, EntitySchema as a3, type EntityWith as a4, type EnumEntityField as a5, type EvaluateConfig as a6, type EvaluateEffect as a7, type Event as a8, type EventInput as a9, type McpServiceDef as aA, McpServiceDefSchema as aB, type NavigateEffect as aC, type NnConfig as aD, type NnLayer as aE, type NotifyEffect as aF, type OrbitalEntity as aG, type OrbitalEntityInput as aH, OrbitalEntitySchema as aI, type OrbitalTraitRef as aJ, OrbitalTraitRefSchema as aK, type OsEffect as aL, type PayloadField as aM, PayloadFieldSchema as aN, type PersistData as aO, type PersistEffect as aP, type PersistEmitConfig as aQ, type PresentationType as aR, type RefEffect as aS, type RelationConfig as aT, RelationConfigSchema as aU, type RelationEntityField as aV, type RenderItemLambda as aW, type RenderUIConfig as aX, type RenderUINode as aY, type RequiredField as aZ, RequiredFieldSchema as a_, type EventPayloadField as aa, EventPayloadFieldSchema as ab, EventSchema as ac, type EventScope as ad, EventScopeSchema as ae, type FetchEffect as af, type FetchOptions as ag, type FetchResult as ah, type Field as ai, type FieldFormat as aj, FieldFormatSchema as ak, FieldSchema as al, type FieldType as am, FieldTypeSchema as an, type FieldValue as ao, type ForwardConfig as ap, type ForwardEffect as aq, GAME_TYPES as ar, type GameType as as, GameTypeSchema as at, type Guard as au, type GuardInput as av, GuardSchema as aw, type ListenSource as ax, ListenSourceSchema as ay, type LogEffect as az, type RenderUIEffect as b, VISUAL_STYLES as b$, type ResolvedAssetInput as b0, ResolvedAssetSchema as b1, type ResolvedPatternProps as b2, type RestAuthConfig as b3, RestAuthConfigSchema as b4, type RestServiceDef as b5, RestServiceDefSchema as b6, SERVICE_TYPES as b7, type ScalarEntityField as b8, type SemanticAssetRef as b9, type TrainEffect as bA, type TraitCategory as bB, TraitCategorySchema as bC, type TraitConfigObject as bD, TraitConfigSchema as bE, type TraitConfigValue as bF, TraitConfigValueSchema as bG, type TraitDataEntity as bH, TraitDataEntitySchema as bI, type TraitEntityField as bJ, TraitEntityFieldSchema as bK, TraitEventContractSchema as bL, TraitEventListenerSchema as bM, type TraitInput as bN, TraitRefSchema as bO, type TraitReferenceInput as bP, TraitReferenceSchema as bQ, TraitSchema as bR, type TraitTick as bS, TraitTickSchema as bT, type TraitUIBinding as bU, type Transition as bV, type TransitionInput as bW, TransitionSchema as bX, type TypedEffect as bY, UISlotSchema as bZ, UI_SLOTS as b_, type SemanticAssetRefInput as ba, SemanticAssetRefSchema as bb, type ServiceDefinition as bc, ServiceDefinitionSchema as bd, type ServiceParams as be, type ServiceParamsValue as bf, type ServiceRef as bg, type ServiceRefObject as bh, ServiceRefObjectSchema as bi, ServiceRefSchema as bj, ServiceRefStringSchema as bk, type ServiceType as bl, ServiceTypeSchema as bm, type SetEffect as bn, type SocketEvents as bo, SocketEventsSchema as bp, type SocketServiceDef as bq, SocketServiceDefSchema as br, type SpawnEffect as bs, type StateInput as bt, type StateMachine as bu, type StateMachineInput as bv, StateMachineSchema as bw, StateSchema as bx, type SwapEffect as by, type TrainConfig as bz, type TraitEventContract as c, type VisualStyle as c0, VisualStyleSchema as c1, type WatchEffect as c2, type WatchOptions as c3, atomic as c4, callService as c5, createAssetKey as c6, deref as c7, deriveCollection as c8, despawn as c9, renderUI as cA, set as cB, spawn as cC, swap as cD, validateAssetAnimations as cE, watch as cF, type TraitScope as cG, doEffects as ca, emit as cb, findService as cc, getDefaultAnimationsForRole as cd, getServiceNames as ce, getTraitConfig as cf, getTraitName as cg, hasService as ch, isCircuitEvent as ci, isEffect as cj, isInlineTrait as ck, isMcpService as cl, isRestService as cm, isRuntimeEntity as cn, isSExprEffect as co, isServiceReference as cp, isServiceReferenceObject as cq, isSingletonEntity as cr, isSocketService as cs, navigate as ct, normalizeTraitRef as cu, notify as cv, parseAssetKey as cw, parseServiceRef as cx, persist as cy, ref 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 AssetUrl 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-DTOofLIu.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-DTOofLIu.js';
|
|
3
|
+
import { be as ServiceParams, a as Trait, d as Entity, h as EntityRow, ao as FieldValue, J as DeclaredTraitConfig, T as TraitConfig, E as Effect, H as ConfigFieldDeclaration, S as State, bV as Transition, f as EntityField, a8 as Event, bF as TraitConfigValue, g as EntityPersistence, bB as TraitCategory, cG as TraitScope } from '../trait-C7cTBoi5.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 AssetUrl, B as AtomicEffect, C as CallServiceConfig, D as CallServiceEffect, F as CheckpointLoadEffect, G as CheckpointSaveEffect, I as ConfigFieldDeclarationSchema, K as DeclaredTraitConfigSchema, L as DerefEffect, M as DespawnEffect, N as DoEffect, O as ENTITY_ROLES, P as EffectInput, Q as EffectSchema, V as EmitConfig, W as EmitEffect, X as EntityData, Y as EntityFieldContract, Z as EntityFieldContractSchema, _ as EntityFieldInput, $ as EntityFieldSchema, a0 as EntityPersistenceSchema, a1 as EntityRole, a2 as EntityRoleSchema, a3 as EntitySchema, a4 as EntityWith, a5 as EnumEntityField, a6 as EvaluateConfig, a7 as EvaluateEffect, a9 as EventInput, aa as EventPayloadField, ab as EventPayloadFieldSchema, ac as EventSchema, ad as EventScope, ae as EventScopeSchema, af as FetchEffect, ag as FetchOptions, ah as FetchResult, ai as Field, aj as FieldFormat, ak as FieldFormatSchema, al as FieldSchema, am as FieldType, an as FieldTypeSchema, ap as ForwardConfig, aq as ForwardEffect, ar as GAME_TYPES, as as GameType, at as GameTypeSchema, au as Guard, av as GuardInput, aw as GuardSchema, ax as ListenSource, ay as ListenSourceSchema, az as LogEffect, aA as McpServiceDef, aB as McpServiceDefSchema, aC as NavigateEffect, aD as NnConfig, aE as NnLayer, aF as NotifyEffect, aG as OrbitalEntity, aH as OrbitalEntityInput, aI as OrbitalEntitySchema, aJ as OrbitalTraitRef, aK as OrbitalTraitRefSchema, aL as OsEffect, aM as PayloadField, aN as PayloadFieldSchema, aO as PersistData, aP as PersistEffect, aQ as PersistEmitConfig, aR as PresentationType, aS as RefEffect, aT as RelationConfig, aU as RelationConfigSchema, aV as RelationEntityField, R as RenderBinding, aW as RenderItemLambda, aX as RenderUIConfig, b as RenderUIEffect, aY as RenderUINode, aZ as RequiredField, a_ as RequiredFieldSchema, a$ as ResolvedAsset, b0 as ResolvedAssetInput, b1 as ResolvedAssetSchema, b2 as ResolvedPatternProps, b3 as RestAuthConfig, b4 as RestAuthConfigSchema, b5 as RestServiceDef, b6 as RestServiceDefSchema, b7 as SERVICE_TYPES, b8 as ScalarEntityField, b9 as SemanticAssetRef, ba as SemanticAssetRefInput, bb as SemanticAssetRefSchema, bc as ServiceDefinition, bd as ServiceDefinitionSchema, bf as ServiceParamsValue, bg as ServiceRef, bh as ServiceRefObject, bi as ServiceRefObjectSchema, bj as ServiceRefSchema, bk as ServiceRefStringSchema, bl as ServiceType, bm as ServiceTypeSchema, bn as SetEffect, bo as SocketEvents, bp as SocketEventsSchema, bq as SocketServiceDef, br as SocketServiceDefSchema, bs as SpawnEffect, bt as StateInput, bu as StateMachine, bv as StateMachineInput, bw as StateMachineSchema, bx as StateSchema, by as SwapEffect, bz as TrainConfig, bA as TrainEffect, bC as TraitCategorySchema, bD as TraitConfigObject, bE as TraitConfigSchema, bG as TraitConfigValueSchema, bH as TraitDataEntity, bI as TraitDataEntitySchema, bJ as TraitEntityField, bK as TraitEntityFieldSchema, c as TraitEventContract, bL as TraitEventContractSchema, e as TraitEventListener, bM as TraitEventListenerSchema, bN as TraitInput, i as TraitRef, bO as TraitRefSchema, j as TraitReference, bP as TraitReferenceInput, bQ as TraitReferenceSchema, bR as TraitSchema, bS as TraitTick, bT as TraitTickSchema, bU as TraitUIBinding, bW as TransitionInput, bX as TransitionSchema, bY as TypedEffect, U as UISlot, bZ as UISlotSchema, b_ as UI_SLOTS, b$ as VISUAL_STYLES, c0 as VisualStyle, c1 as VisualStyleSchema, c2 as WatchEffect, c3 as WatchOptions, c4 as atomic, c5 as callService, c6 as createAssetKey, c7 as deref, c8 as deriveCollection, c9 as despawn, ca as doEffects, cb as emit, cc as findService, cd as getDefaultAnimationsForRole, ce as getServiceNames, cf as getTraitConfig, cg as getTraitName, ch as hasService, ci as isCircuitEvent, cj as isEffect, ck as isInlineTrait, cl as isMcpService, cm as isRestService, cn as isRuntimeEntity, co as isSExprEffect, cp as isServiceReference, cq as isServiceReferenceObject, cr as isSingletonEntity, cs as isSocketService, ct as navigate, cu as normalizeTraitRef, cv as notify, cw as parseAssetKey, cx as parseServiceRef, cy as persist, cz as ref, cA as renderUI, cB as set, cC as spawn, cD as swap, cE as validateAssetAnimations, cF as watch } from '../trait-C7cTBoi5.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-CVzLocjv.js';
|
|
11
|
+
export { J as JsonObject, n as JsonValue, T as ToolArgs, t as isJsonArray, u as isJsonObject, v as isJsonPrimitive } from '../types-CVzLocjv.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
|
}
|
|
@@ -1925,6 +1933,6 @@ function widenTier(tier) {
|
|
|
1925
1933
|
return tier;
|
|
1926
1934
|
}
|
|
1927
1935
|
|
|
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 };
|
|
1936
|
+
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
1937
|
//# sourceMappingURL=index.js.map
|
|
1930
1938
|
//# sourceMappingURL=index.js.map
|