@almadar/core 10.89.0 → 10.90.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builders.d.ts +3 -3
- package/dist/builders.js +9 -2
- package/dist/builders.js.map +1 -1
- package/dist/{effect-CdLBg9zL.d.ts → effect-7jQQxiIt.d.ts} +58 -42
- package/dist/{entityAccess-BmZHpQUv.d.ts → entityAccess-CpHfCQA3.d.ts} +1 -1
- package/dist/factory/index.d.ts +4 -4
- package/dist/factory/index.js +467 -9
- package/dist/factory/index.js.map +1 -1
- package/dist/factory-runtime/index.d.ts +3 -3
- package/dist/factory-runtime/index.js +9 -2
- package/dist/factory-runtime/index.js.map +1 -1
- package/dist/i18n/index.js +6 -0
- package/dist/i18n/index.js.map +1 -1
- package/dist/{index-CV_iM5Cm.d.ts → index-BresfHJy.d.ts} +63 -6
- package/dist/index.d.ts +34 -12
- package/dist/index.js +582 -17
- package/dist/index.js.map +1 -1
- package/dist/mock/index.d.ts +54 -5
- package/dist/mock/index.js +33 -3
- package/dist/mock/index.js.map +1 -1
- package/dist/patterns/component-mapping.json +6 -1
- package/dist/patterns/event-contracts.json +1 -1
- package/dist/patterns/index.d.ts +1160 -14
- package/dist/patterns/index.js +545 -12
- package/dist/patterns/index.js.map +1 -1
- package/dist/patterns/integrators-registry.json +72 -1
- package/dist/patterns/patterns-registry.json +461 -8
- package/dist/patterns/registry.json +461 -8
- package/dist/patterns/services-registry.json +150 -64
- package/dist/{schema-DYC_RnBX.d.ts → schema-C52juBr8.d.ts} +495 -323
- package/dist/{trait-DmWdtKlP.d.ts → trait-CFiL1YUN.d.ts} +98 -55
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +11 -6
- package/dist/types/index.js.map +1 -1
- package/dist/{types-DdK77hq2.d.ts → types-BgC8ETnl.d.ts} +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -415,7 +415,7 @@ var VISUAL_STYLES = ["pixel", "vector", "hd", "1-bit", "isometric"];
|
|
|
415
415
|
var VisualStyleSchema = z.enum(VISUAL_STYLES);
|
|
416
416
|
var ASSET_DIMENSIONS = ["2d", "3d"];
|
|
417
417
|
var AssetDimensionSchema = z.enum(ASSET_DIMENSIONS);
|
|
418
|
-
var ASSET_ASPECTS = ["1:1", "16:9", "5:7", "8:1"];
|
|
418
|
+
var ASSET_ASPECTS = ["1:1", "16:9", "5:7", "8:1", "4:1", "5:3", "1:2"];
|
|
419
419
|
var AssetAspectSchema = z.enum(ASSET_ASPECTS);
|
|
420
420
|
var ANIMATION_NAMES = ["idle", "walk", "skate", "jump", "fall", "attack", "hit", "death"];
|
|
421
421
|
var AnimationNameSchema = z.enum(ANIMATION_NAMES);
|
|
@@ -485,7 +485,9 @@ var AssetSchema = SemanticAssetRefSchema.extend({
|
|
|
485
485
|
atlas: z.string().optional(),
|
|
486
486
|
sprite: z.string().optional(),
|
|
487
487
|
name: z.string().optional(),
|
|
488
|
-
thumbnailUrl: z.string().optional()
|
|
488
|
+
thumbnailUrl: z.string().optional(),
|
|
489
|
+
prompt: z.string().optional(),
|
|
490
|
+
choreography: z.record(z.string(), z.array(z.string())).optional()
|
|
489
491
|
});
|
|
490
492
|
var AssetCatalogEntrySchema = z.object({
|
|
491
493
|
url: z.string(),
|
|
@@ -886,6 +888,9 @@ function isRuntimeEntity(entity) {
|
|
|
886
888
|
function persistenceModeAllowsOverrides(persistence) {
|
|
887
889
|
return persistence === "persistent" || persistence === void 0;
|
|
888
890
|
}
|
|
891
|
+
var FieldValueSchema = z.lazy(
|
|
892
|
+
() => z.union([z.string(), z.number(), z.boolean(), z.date(), z.null(), z.array(FieldValueSchema), z.record(FieldValueSchema.optional())])
|
|
893
|
+
);
|
|
889
894
|
function isFieldValue(value) {
|
|
890
895
|
if (value === null) return true;
|
|
891
896
|
const kind = typeof value;
|
|
@@ -968,9 +973,6 @@ function despawn(entityId) {
|
|
|
968
973
|
function doEffects(...effects) {
|
|
969
974
|
return ["do", ...effects];
|
|
970
975
|
}
|
|
971
|
-
function notify(channel, message, recipient) {
|
|
972
|
-
return recipient ? ["notify", channel, message, recipient] : ["notify", channel, message];
|
|
973
|
-
}
|
|
974
976
|
function ref(binding, selector) {
|
|
975
977
|
return selector ? ["ref", binding, selector] : ["ref", binding];
|
|
976
978
|
}
|
|
@@ -1421,6 +1423,8 @@ var TraitSchema = z.object({
|
|
|
1421
1423
|
entityBindingSynonyms: z.string().optional(),
|
|
1422
1424
|
capabilities: z.array(z.string()).optional(),
|
|
1423
1425
|
scope: TraitScopeSchema,
|
|
1426
|
+
/** `local` trait-header flag — declares client-only dispatch (mirrors Rust `OirTrait::local`). Undeclared = server-gated dispatch. */
|
|
1427
|
+
local: z.boolean().optional(),
|
|
1424
1428
|
linkedEntity: z.string().optional(),
|
|
1425
1429
|
linkedEntityId: EntityIdSchema.optional(),
|
|
1426
1430
|
entityRefIds: z.record(z.string().min(1), EntityIdSchema).optional(),
|
|
@@ -2575,7 +2579,7 @@ function getInteractionModelForDomain(domain) {
|
|
|
2575
2579
|
// src/patterns/patterns-registry.json
|
|
2576
2580
|
var patterns_registry_default = {
|
|
2577
2581
|
version: "1.0.0",
|
|
2578
|
-
exportedAt: "2026-09-
|
|
2582
|
+
exportedAt: "2026-09-10T08:51:20.514Z",
|
|
2579
2583
|
patterns: {
|
|
2580
2584
|
"entity-table": {
|
|
2581
2585
|
type: "entity-table",
|
|
@@ -11039,7 +11043,9 @@ var patterns_registry_default = {
|
|
|
11039
11043
|
"function",
|
|
11040
11044
|
"string"
|
|
11041
11045
|
],
|
|
11042
|
-
description: "Callback or declarative event key when clear button is clicked"
|
|
11046
|
+
description: "Callback or declarative event key when clear button is clicked",
|
|
11047
|
+
kind: "event-ref",
|
|
11048
|
+
emitPayloadSchema: []
|
|
11043
11049
|
},
|
|
11044
11050
|
options: {
|
|
11045
11051
|
types: [
|
|
@@ -11080,7 +11086,22 @@ var patterns_registry_default = {
|
|
|
11080
11086
|
"function",
|
|
11081
11087
|
"string"
|
|
11082
11088
|
],
|
|
11083
|
-
description: "onChange handler or declarative event key for trait dispatch"
|
|
11089
|
+
description: "onChange handler or declarative event key for trait dispatch",
|
|
11090
|
+
kind: "event-ref",
|
|
11091
|
+
emitPayloadSchema: [
|
|
11092
|
+
{
|
|
11093
|
+
name: "value",
|
|
11094
|
+
type: "string",
|
|
11095
|
+
required: true,
|
|
11096
|
+
typeWhen: [
|
|
11097
|
+
{
|
|
11098
|
+
knob: "inputType",
|
|
11099
|
+
equals: "number",
|
|
11100
|
+
type: "number"
|
|
11101
|
+
}
|
|
11102
|
+
]
|
|
11103
|
+
}
|
|
11104
|
+
]
|
|
11084
11105
|
}
|
|
11085
11106
|
}
|
|
11086
11107
|
},
|
|
@@ -11133,7 +11154,15 @@ var patterns_registry_default = {
|
|
|
11133
11154
|
"function",
|
|
11134
11155
|
"string"
|
|
11135
11156
|
],
|
|
11136
|
-
description: "onChange handler or declarative event key for trait dispatch"
|
|
11157
|
+
description: "onChange handler or declarative event key for trait dispatch",
|
|
11158
|
+
kind: "event-ref",
|
|
11159
|
+
emitPayloadSchema: [
|
|
11160
|
+
{
|
|
11161
|
+
name: "value",
|
|
11162
|
+
type: "string",
|
|
11163
|
+
required: true
|
|
11164
|
+
}
|
|
11165
|
+
]
|
|
11137
11166
|
}
|
|
11138
11167
|
}
|
|
11139
11168
|
},
|
|
@@ -11303,7 +11332,26 @@ var patterns_registry_default = {
|
|
|
11303
11332
|
"function",
|
|
11304
11333
|
"string"
|
|
11305
11334
|
],
|
|
11306
|
-
description: "onChange handler (native ChangeEvent) or declarative event key for trait dispatch"
|
|
11335
|
+
description: "onChange handler (native ChangeEvent) or declarative event key for trait dispatch",
|
|
11336
|
+
kind: "event-ref",
|
|
11337
|
+
emitPayloadSchema: [
|
|
11338
|
+
{
|
|
11339
|
+
name: "value",
|
|
11340
|
+
type: "string",
|
|
11341
|
+
required: true,
|
|
11342
|
+
schema: {
|
|
11343
|
+
types: [
|
|
11344
|
+
"string",
|
|
11345
|
+
"array"
|
|
11346
|
+
],
|
|
11347
|
+
items: {
|
|
11348
|
+
types: [
|
|
11349
|
+
"string"
|
|
11350
|
+
]
|
|
11351
|
+
}
|
|
11352
|
+
}
|
|
11353
|
+
}
|
|
11354
|
+
]
|
|
11307
11355
|
},
|
|
11308
11356
|
onValueChange: {
|
|
11309
11357
|
types: [
|
|
@@ -11356,7 +11404,15 @@ var patterns_registry_default = {
|
|
|
11356
11404
|
"function",
|
|
11357
11405
|
"string"
|
|
11358
11406
|
],
|
|
11359
|
-
description: "onChange handler or declarative event key for trait dispatch"
|
|
11407
|
+
description: "onChange handler or declarative event key for trait dispatch",
|
|
11408
|
+
kind: "event-ref",
|
|
11409
|
+
emitPayloadSchema: [
|
|
11410
|
+
{
|
|
11411
|
+
name: "checked",
|
|
11412
|
+
type: "boolean",
|
|
11413
|
+
required: true
|
|
11414
|
+
}
|
|
11415
|
+
]
|
|
11360
11416
|
}
|
|
11361
11417
|
}
|
|
11362
11418
|
},
|
|
@@ -13977,7 +14033,9 @@ var patterns_registry_default = {
|
|
|
13977
14033
|
"function",
|
|
13978
14034
|
"string"
|
|
13979
14035
|
],
|
|
13980
|
-
description: "Callback or declarative event key when clear button is clicked"
|
|
14036
|
+
description: "Callback or declarative event key when clear button is clicked",
|
|
14037
|
+
kind: "event-ref",
|
|
14038
|
+
emitPayloadSchema: []
|
|
13981
14039
|
},
|
|
13982
14040
|
options: {
|
|
13983
14041
|
types: [
|
|
@@ -14017,7 +14075,22 @@ var patterns_registry_default = {
|
|
|
14017
14075
|
"function",
|
|
14018
14076
|
"string"
|
|
14019
14077
|
],
|
|
14020
|
-
description: "onChange handler or declarative event key for trait dispatch"
|
|
14078
|
+
description: "onChange handler or declarative event key for trait dispatch",
|
|
14079
|
+
kind: "event-ref",
|
|
14080
|
+
emitPayloadSchema: [
|
|
14081
|
+
{
|
|
14082
|
+
name: "value",
|
|
14083
|
+
type: "string",
|
|
14084
|
+
required: true,
|
|
14085
|
+
typeWhen: [
|
|
14086
|
+
{
|
|
14087
|
+
knob: "inputType",
|
|
14088
|
+
equals: "number",
|
|
14089
|
+
type: "number"
|
|
14090
|
+
}
|
|
14091
|
+
]
|
|
14092
|
+
}
|
|
14093
|
+
]
|
|
14021
14094
|
},
|
|
14022
14095
|
leftAddon: {
|
|
14023
14096
|
types: [
|
|
@@ -56300,6 +56373,390 @@ var patterns_registry_default = {
|
|
|
56300
56373
|
default: "replace"
|
|
56301
56374
|
}
|
|
56302
56375
|
}
|
|
56376
|
+
},
|
|
56377
|
+
"draw-skinned-mesh": {
|
|
56378
|
+
type: "draw-skinned-mesh",
|
|
56379
|
+
category: "game",
|
|
56380
|
+
sourceFile: "components/game/atoms/DrawSkinnedMesh.tsx",
|
|
56381
|
+
tier: "atoms",
|
|
56382
|
+
family: "game",
|
|
56383
|
+
description: "DrawSkinnedMesh component",
|
|
56384
|
+
suggestedFor: [
|
|
56385
|
+
"draw",
|
|
56386
|
+
"skinned",
|
|
56387
|
+
"mesh",
|
|
56388
|
+
"draw skinned mesh"
|
|
56389
|
+
],
|
|
56390
|
+
typicalSize: "small",
|
|
56391
|
+
propsSchema: {
|
|
56392
|
+
id: {
|
|
56393
|
+
types: [
|
|
56394
|
+
"string"
|
|
56395
|
+
],
|
|
56396
|
+
description: "Optional source-tagged hit-test handle \u2014 the host indexes the drawable's ScenePos\u2192id so a pointer/raycast at that cell resolves to this id (unit/entity click). No id \u2192 the host emits only the coordinate (tile click)."
|
|
56397
|
+
},
|
|
56398
|
+
type: {
|
|
56399
|
+
types: [
|
|
56400
|
+
"string"
|
|
56401
|
+
],
|
|
56402
|
+
description: "type prop",
|
|
56403
|
+
required: true,
|
|
56404
|
+
enumValues: [
|
|
56405
|
+
"draw-skinned-mesh"
|
|
56406
|
+
]
|
|
56407
|
+
},
|
|
56408
|
+
position: {
|
|
56409
|
+
types: [
|
|
56410
|
+
"object"
|
|
56411
|
+
],
|
|
56412
|
+
description: "Logical scene position; mesh local coords are world units relative to its projected top-left.",
|
|
56413
|
+
required: true,
|
|
56414
|
+
properties: {
|
|
56415
|
+
x: {
|
|
56416
|
+
types: [
|
|
56417
|
+
"number"
|
|
56418
|
+
]
|
|
56419
|
+
},
|
|
56420
|
+
y: {
|
|
56421
|
+
types: [
|
|
56422
|
+
"number"
|
|
56423
|
+
]
|
|
56424
|
+
},
|
|
56425
|
+
z: {
|
|
56426
|
+
types: [
|
|
56427
|
+
"number"
|
|
56428
|
+
]
|
|
56429
|
+
}
|
|
56430
|
+
},
|
|
56431
|
+
propertyRequired: [
|
|
56432
|
+
"x",
|
|
56433
|
+
"y"
|
|
56434
|
+
],
|
|
56435
|
+
scenePos: true
|
|
56436
|
+
},
|
|
56437
|
+
asset: {
|
|
56438
|
+
types: [
|
|
56439
|
+
"object"
|
|
56440
|
+
],
|
|
56441
|
+
description: "The texture the mesh UVs cut into.",
|
|
56442
|
+
required: true,
|
|
56443
|
+
properties: {
|
|
56444
|
+
url: {
|
|
56445
|
+
types: [
|
|
56446
|
+
"asset"
|
|
56447
|
+
]
|
|
56448
|
+
},
|
|
56449
|
+
role: {
|
|
56450
|
+
types: [
|
|
56451
|
+
"string"
|
|
56452
|
+
]
|
|
56453
|
+
},
|
|
56454
|
+
category: {
|
|
56455
|
+
types: [
|
|
56456
|
+
"string"
|
|
56457
|
+
]
|
|
56458
|
+
},
|
|
56459
|
+
animations: {
|
|
56460
|
+
types: [
|
|
56461
|
+
"array"
|
|
56462
|
+
],
|
|
56463
|
+
items: {
|
|
56464
|
+
types: [
|
|
56465
|
+
"string"
|
|
56466
|
+
]
|
|
56467
|
+
}
|
|
56468
|
+
},
|
|
56469
|
+
style: {
|
|
56470
|
+
types: [
|
|
56471
|
+
"string"
|
|
56472
|
+
],
|
|
56473
|
+
enumValues: [
|
|
56474
|
+
"pixel",
|
|
56475
|
+
"vector",
|
|
56476
|
+
"hd",
|
|
56477
|
+
"1-bit",
|
|
56478
|
+
"isometric"
|
|
56479
|
+
]
|
|
56480
|
+
},
|
|
56481
|
+
variant: {
|
|
56482
|
+
types: [
|
|
56483
|
+
"string"
|
|
56484
|
+
]
|
|
56485
|
+
},
|
|
56486
|
+
dimension: {
|
|
56487
|
+
types: [
|
|
56488
|
+
"string"
|
|
56489
|
+
],
|
|
56490
|
+
enumValues: [
|
|
56491
|
+
"2d",
|
|
56492
|
+
"3d"
|
|
56493
|
+
]
|
|
56494
|
+
},
|
|
56495
|
+
aspect: {
|
|
56496
|
+
types: [
|
|
56497
|
+
"string"
|
|
56498
|
+
],
|
|
56499
|
+
enumValues: [
|
|
56500
|
+
"1:1",
|
|
56501
|
+
"16:9",
|
|
56502
|
+
"5:7",
|
|
56503
|
+
"8:1"
|
|
56504
|
+
]
|
|
56505
|
+
},
|
|
56506
|
+
atlas: {
|
|
56507
|
+
types: [
|
|
56508
|
+
"asset"
|
|
56509
|
+
]
|
|
56510
|
+
},
|
|
56511
|
+
sprite: {
|
|
56512
|
+
types: [
|
|
56513
|
+
"string"
|
|
56514
|
+
]
|
|
56515
|
+
},
|
|
56516
|
+
name: {
|
|
56517
|
+
types: [
|
|
56518
|
+
"string"
|
|
56519
|
+
]
|
|
56520
|
+
},
|
|
56521
|
+
thumbnailUrl: {
|
|
56522
|
+
types: [
|
|
56523
|
+
"string"
|
|
56524
|
+
]
|
|
56525
|
+
}
|
|
56526
|
+
},
|
|
56527
|
+
propertyRequired: [
|
|
56528
|
+
"url",
|
|
56529
|
+
"role",
|
|
56530
|
+
"category"
|
|
56531
|
+
]
|
|
56532
|
+
},
|
|
56533
|
+
mesh: {
|
|
56534
|
+
types: [
|
|
56535
|
+
"object"
|
|
56536
|
+
],
|
|
56537
|
+
description: "Inline bind mesh; wins over `meshUrl`.",
|
|
56538
|
+
properties: {
|
|
56539
|
+
vertices: {
|
|
56540
|
+
types: [
|
|
56541
|
+
"array"
|
|
56542
|
+
],
|
|
56543
|
+
items: {
|
|
56544
|
+
types: [
|
|
56545
|
+
"object"
|
|
56546
|
+
],
|
|
56547
|
+
properties: {
|
|
56548
|
+
x: {
|
|
56549
|
+
types: [
|
|
56550
|
+
"number"
|
|
56551
|
+
]
|
|
56552
|
+
},
|
|
56553
|
+
y: {
|
|
56554
|
+
types: [
|
|
56555
|
+
"number"
|
|
56556
|
+
]
|
|
56557
|
+
},
|
|
56558
|
+
u: {
|
|
56559
|
+
types: [
|
|
56560
|
+
"number"
|
|
56561
|
+
]
|
|
56562
|
+
},
|
|
56563
|
+
v: {
|
|
56564
|
+
types: [
|
|
56565
|
+
"number"
|
|
56566
|
+
]
|
|
56567
|
+
},
|
|
56568
|
+
weights: {
|
|
56569
|
+
types: [
|
|
56570
|
+
"array"
|
|
56571
|
+
],
|
|
56572
|
+
items: {
|
|
56573
|
+
types: [
|
|
56574
|
+
"object"
|
|
56575
|
+
],
|
|
56576
|
+
properties: {
|
|
56577
|
+
bone: {
|
|
56578
|
+
types: [
|
|
56579
|
+
"number"
|
|
56580
|
+
]
|
|
56581
|
+
},
|
|
56582
|
+
w: {
|
|
56583
|
+
types: [
|
|
56584
|
+
"number"
|
|
56585
|
+
]
|
|
56586
|
+
}
|
|
56587
|
+
},
|
|
56588
|
+
required: [
|
|
56589
|
+
"bone",
|
|
56590
|
+
"w"
|
|
56591
|
+
]
|
|
56592
|
+
}
|
|
56593
|
+
}
|
|
56594
|
+
},
|
|
56595
|
+
required: [
|
|
56596
|
+
"x",
|
|
56597
|
+
"y",
|
|
56598
|
+
"u",
|
|
56599
|
+
"v",
|
|
56600
|
+
"weights"
|
|
56601
|
+
]
|
|
56602
|
+
}
|
|
56603
|
+
},
|
|
56604
|
+
triangles: {
|
|
56605
|
+
types: [
|
|
56606
|
+
"array"
|
|
56607
|
+
],
|
|
56608
|
+
items: {
|
|
56609
|
+
types: [
|
|
56610
|
+
"array"
|
|
56611
|
+
],
|
|
56612
|
+
items: {
|
|
56613
|
+
types: [
|
|
56614
|
+
"number"
|
|
56615
|
+
]
|
|
56616
|
+
}
|
|
56617
|
+
}
|
|
56618
|
+
}
|
|
56619
|
+
},
|
|
56620
|
+
propertyRequired: [
|
|
56621
|
+
"vertices",
|
|
56622
|
+
"triangles"
|
|
56623
|
+
]
|
|
56624
|
+
},
|
|
56625
|
+
meshUrl: {
|
|
56626
|
+
types: [
|
|
56627
|
+
"string"
|
|
56628
|
+
],
|
|
56629
|
+
description: "URL of a JSON `SkinMesh` (fetched + cached); used when `mesh` is absent."
|
|
56630
|
+
},
|
|
56631
|
+
bones: {
|
|
56632
|
+
types: [
|
|
56633
|
+
"array"
|
|
56634
|
+
],
|
|
56635
|
+
description: "The skeleton (bind pose; FK chain via `parent` names).",
|
|
56636
|
+
required: true,
|
|
56637
|
+
items: {
|
|
56638
|
+
types: [
|
|
56639
|
+
"object"
|
|
56640
|
+
],
|
|
56641
|
+
properties: {
|
|
56642
|
+
name: {
|
|
56643
|
+
types: [
|
|
56644
|
+
"string"
|
|
56645
|
+
]
|
|
56646
|
+
},
|
|
56647
|
+
parent: {
|
|
56648
|
+
types: [
|
|
56649
|
+
"string"
|
|
56650
|
+
]
|
|
56651
|
+
},
|
|
56652
|
+
pivot: {
|
|
56653
|
+
types: [
|
|
56654
|
+
"array"
|
|
56655
|
+
],
|
|
56656
|
+
items: {
|
|
56657
|
+
types: [
|
|
56658
|
+
"number"
|
|
56659
|
+
]
|
|
56660
|
+
}
|
|
56661
|
+
},
|
|
56662
|
+
tip: {
|
|
56663
|
+
types: [
|
|
56664
|
+
"array"
|
|
56665
|
+
],
|
|
56666
|
+
items: {
|
|
56667
|
+
types: [
|
|
56668
|
+
"number"
|
|
56669
|
+
]
|
|
56670
|
+
}
|
|
56671
|
+
}
|
|
56672
|
+
},
|
|
56673
|
+
required: [
|
|
56674
|
+
"name",
|
|
56675
|
+
"parent",
|
|
56676
|
+
"pivot",
|
|
56677
|
+
"tip"
|
|
56678
|
+
]
|
|
56679
|
+
}
|
|
56680
|
+
},
|
|
56681
|
+
pose: {
|
|
56682
|
+
types: [
|
|
56683
|
+
"object"
|
|
56684
|
+
],
|
|
56685
|
+
description: "Static pose (bone name \u2192 degrees relative to bind). Overridden by `clip` + `frame`.",
|
|
56686
|
+
mapValue: {
|
|
56687
|
+
types: [
|
|
56688
|
+
"number"
|
|
56689
|
+
]
|
|
56690
|
+
}
|
|
56691
|
+
},
|
|
56692
|
+
clip: {
|
|
56693
|
+
types: [
|
|
56694
|
+
"object"
|
|
56695
|
+
],
|
|
56696
|
+
description: "Pose animation clip; with `frame`, pose = `frames[frame % frames.length]`.",
|
|
56697
|
+
properties: {
|
|
56698
|
+
frames: {
|
|
56699
|
+
types: [
|
|
56700
|
+
"array"
|
|
56701
|
+
],
|
|
56702
|
+
items: {
|
|
56703
|
+
types: [
|
|
56704
|
+
"object"
|
|
56705
|
+
],
|
|
56706
|
+
mapValue: {
|
|
56707
|
+
types: [
|
|
56708
|
+
"number"
|
|
56709
|
+
]
|
|
56710
|
+
}
|
|
56711
|
+
}
|
|
56712
|
+
}
|
|
56713
|
+
},
|
|
56714
|
+
propertyRequired: [
|
|
56715
|
+
"frames"
|
|
56716
|
+
]
|
|
56717
|
+
},
|
|
56718
|
+
frame: {
|
|
56719
|
+
types: [
|
|
56720
|
+
"number"
|
|
56721
|
+
],
|
|
56722
|
+
description: "Clip frame counter (host-driven paint clock frame)."
|
|
56723
|
+
},
|
|
56724
|
+
opacity: {
|
|
56725
|
+
types: [
|
|
56726
|
+
"number"
|
|
56727
|
+
],
|
|
56728
|
+
description: "0..1 opacity."
|
|
56729
|
+
},
|
|
56730
|
+
weightsOverlay: {
|
|
56731
|
+
types: [
|
|
56732
|
+
"boolean"
|
|
56733
|
+
],
|
|
56734
|
+
description: "Paint per-triangle dominant-bone colors instead of the texture (rig inspection)."
|
|
56735
|
+
},
|
|
56736
|
+
ghost: {
|
|
56737
|
+
types: [
|
|
56738
|
+
"object"
|
|
56739
|
+
],
|
|
56740
|
+
description: "Onion skin: render the mesh at this clip frame underneath, at this opacity.",
|
|
56741
|
+
properties: {
|
|
56742
|
+
frame: {
|
|
56743
|
+
types: [
|
|
56744
|
+
"number"
|
|
56745
|
+
]
|
|
56746
|
+
},
|
|
56747
|
+
opacity: {
|
|
56748
|
+
types: [
|
|
56749
|
+
"number"
|
|
56750
|
+
]
|
|
56751
|
+
}
|
|
56752
|
+
},
|
|
56753
|
+
propertyRequired: [
|
|
56754
|
+
"frame",
|
|
56755
|
+
"opacity"
|
|
56756
|
+
]
|
|
56757
|
+
}
|
|
56758
|
+
},
|
|
56759
|
+
drawable: true
|
|
56303
56760
|
}
|
|
56304
56761
|
},
|
|
56305
56762
|
categories: [
|
|
@@ -56325,7 +56782,7 @@ var patterns_registry_default = {
|
|
|
56325
56782
|
// src/patterns/integrators-registry.json
|
|
56326
56783
|
var integrators_registry_default = {
|
|
56327
56784
|
version: "1.0.0",
|
|
56328
|
-
exportedAt: "2026-09-
|
|
56785
|
+
exportedAt: "2026-09-10T08:46:50.227Z",
|
|
56329
56786
|
integrators: {
|
|
56330
56787
|
github: {
|
|
56331
56788
|
name: "github",
|
|
@@ -59908,6 +60365,77 @@ var integrators_registry_default = {
|
|
|
59908
60365
|
}
|
|
59909
60366
|
}
|
|
59910
60367
|
]
|
|
60368
|
+
},
|
|
60369
|
+
rigger: {
|
|
60370
|
+
name: "rigger",
|
|
60371
|
+
description: "Local rigger service (FastAPI) \u2014 mesh rigging build + render",
|
|
60372
|
+
category: "media",
|
|
60373
|
+
actions: [
|
|
60374
|
+
{
|
|
60375
|
+
name: "health",
|
|
60376
|
+
description: "Liveness probe of the local rigger service.",
|
|
60377
|
+
params: [],
|
|
60378
|
+
responseShape: {
|
|
60379
|
+
ok: "boolean"
|
|
60380
|
+
}
|
|
60381
|
+
},
|
|
60382
|
+
{
|
|
60383
|
+
name: "buildMesh",
|
|
60384
|
+
description: "Build a rigged mesh bundle from a source image via the local rigger service.",
|
|
60385
|
+
params: [
|
|
60386
|
+
{
|
|
60387
|
+
name: "imagePath",
|
|
60388
|
+
type: "string",
|
|
60389
|
+
required: true,
|
|
60390
|
+
description: "Path to the source image."
|
|
60391
|
+
},
|
|
60392
|
+
{
|
|
60393
|
+
name: "rig",
|
|
60394
|
+
type: "string",
|
|
60395
|
+
required: true,
|
|
60396
|
+
description: "Rig type to build (e.g. 'humanoid', 'quadruped')."
|
|
60397
|
+
}
|
|
60398
|
+
],
|
|
60399
|
+
responseShape: {
|
|
60400
|
+
bundlePath: "string",
|
|
60401
|
+
boneCount: "number",
|
|
60402
|
+
vertexCount: "number",
|
|
60403
|
+
triangleCount: "number",
|
|
60404
|
+
clips: "string[]"
|
|
60405
|
+
}
|
|
60406
|
+
},
|
|
60407
|
+
{
|
|
60408
|
+
name: "render",
|
|
60409
|
+
description: "Render a rigged mesh bundle to output files via the local rigger service.",
|
|
60410
|
+
params: [
|
|
60411
|
+
{
|
|
60412
|
+
name: "imagePath",
|
|
60413
|
+
type: "string",
|
|
60414
|
+
required: true,
|
|
60415
|
+
description: "Path to the source image."
|
|
60416
|
+
},
|
|
60417
|
+
{
|
|
60418
|
+
name: "rig",
|
|
60419
|
+
type: "string",
|
|
60420
|
+
required: true,
|
|
60421
|
+
description: "Rig type."
|
|
60422
|
+
},
|
|
60423
|
+
{
|
|
60424
|
+
name: "preset",
|
|
60425
|
+
type: "string",
|
|
60426
|
+
required: true,
|
|
60427
|
+
description: "Render preset name."
|
|
60428
|
+
},
|
|
60429
|
+
{
|
|
60430
|
+
name: "outDir",
|
|
60431
|
+
type: "string",
|
|
60432
|
+
required: true,
|
|
60433
|
+
description: "Output directory for rendered files."
|
|
60434
|
+
}
|
|
60435
|
+
],
|
|
60436
|
+
responseShape: {}
|
|
60437
|
+
}
|
|
60438
|
+
]
|
|
59911
60439
|
}
|
|
59912
60440
|
},
|
|
59913
60441
|
categories: [
|
|
@@ -59927,7 +60455,7 @@ var integrators_registry_default = {
|
|
|
59927
60455
|
// src/patterns/component-mapping.json
|
|
59928
60456
|
var component_mapping_default = {
|
|
59929
60457
|
version: "1.0.0",
|
|
59930
|
-
exportedAt: "2026-09-
|
|
60458
|
+
exportedAt: "2026-09-10T08:51:20.514Z",
|
|
59931
60459
|
mappings: {
|
|
59932
60460
|
"page-header": {
|
|
59933
60461
|
component: "PageHeader",
|
|
@@ -61246,6 +61774,11 @@ var component_mapping_default = {
|
|
|
61246
61774
|
importPath: "@/components/game/atoms/DrawSprite",
|
|
61247
61775
|
category: "game"
|
|
61248
61776
|
},
|
|
61777
|
+
"draw-skinned-mesh": {
|
|
61778
|
+
component: "DrawSkinnedMesh",
|
|
61779
|
+
importPath: "@/components/game/atoms/DrawSkinnedMesh",
|
|
61780
|
+
category: "game"
|
|
61781
|
+
},
|
|
61249
61782
|
"draw-text": {
|
|
61250
61783
|
component: "DrawText",
|
|
61251
61784
|
importPath: "@/components/game/atoms/DrawText",
|
|
@@ -61372,7 +61905,7 @@ var component_mapping_default = {
|
|
|
61372
61905
|
// src/patterns/event-contracts.json
|
|
61373
61906
|
var event_contracts_default = {
|
|
61374
61907
|
version: "1.0.0",
|
|
61375
|
-
exportedAt: "2026-09-
|
|
61908
|
+
exportedAt: "2026-09-10T08:51:20.514Z",
|
|
61376
61909
|
contracts: {
|
|
61377
61910
|
form: {
|
|
61378
61911
|
emits: [
|
|
@@ -62639,6 +63172,7 @@ var PATTERN_TYPES = [
|
|
|
62639
63172
|
"draw-mesh",
|
|
62640
63173
|
"draw-shape",
|
|
62641
63174
|
"draw-shape-layer",
|
|
63175
|
+
"draw-skinned-mesh",
|
|
62642
63176
|
"draw-sprite",
|
|
62643
63177
|
"draw-sprite-layer",
|
|
62644
63178
|
"draw-text",
|
|
@@ -62855,6 +63389,9 @@ function isMainSlotRenderUi(effect) {
|
|
|
62855
63389
|
return Array.isArray(effect) && effect[0] === "render-ui" && effect[1] === "main";
|
|
62856
63390
|
}
|
|
62857
63391
|
|
|
63392
|
+
// src/patterns/self-overlay.ts
|
|
63393
|
+
var SELF_OVERLAY_PATTERN_TYPES = /* @__PURE__ */ new Set(["modal", "confirm-dialog"]);
|
|
63394
|
+
|
|
62858
63395
|
// src/patterns/helpers/prompt-helpers.ts
|
|
62859
63396
|
function getPatternsGroupedByCategory() {
|
|
62860
63397
|
const patterns = patterns_registry_default.patterns || {};
|
|
@@ -67771,6 +68308,28 @@ function mergeEntityFrame(current, orderedWrites) {
|
|
|
67771
68308
|
}
|
|
67772
68309
|
return next;
|
|
67773
68310
|
}
|
|
68311
|
+
function resolveEntityView(input) {
|
|
68312
|
+
const { frame, row, id, allowedFrameKeys } = input;
|
|
68313
|
+
const view = {};
|
|
68314
|
+
if (frame) {
|
|
68315
|
+
for (const key of allowedFrameKeys) {
|
|
68316
|
+
if (key === "id") continue;
|
|
68317
|
+
if (Object.prototype.hasOwnProperty.call(frame, key)) {
|
|
68318
|
+
view[key] = frame[key];
|
|
68319
|
+
}
|
|
68320
|
+
}
|
|
68321
|
+
}
|
|
68322
|
+
Object.assign(view, row ?? {});
|
|
68323
|
+
if (id !== void 0) view.id = id;
|
|
68324
|
+
return view;
|
|
68325
|
+
}
|
|
68326
|
+
function omitFrameFields(row, frameKeys) {
|
|
68327
|
+
const next = { ...row };
|
|
68328
|
+
for (const key of frameKeys) {
|
|
68329
|
+
delete next[key];
|
|
68330
|
+
}
|
|
68331
|
+
return next;
|
|
68332
|
+
}
|
|
67774
68333
|
|
|
67775
68334
|
// src/i18n/orb-notation.json
|
|
67776
68335
|
var orb_notation_default = {
|
|
@@ -67959,6 +68518,7 @@ var en_default = {
|
|
|
67959
68518
|
persistent: "persistent",
|
|
67960
68519
|
runtime: "runtime",
|
|
67961
68520
|
shared: "shared",
|
|
68521
|
+
local: "local",
|
|
67962
68522
|
identity: "identity",
|
|
67963
68523
|
instance: "instance",
|
|
67964
68524
|
collection: "collection"
|
|
@@ -68266,6 +68826,7 @@ var en_default = {
|
|
|
68266
68826
|
shadows: "shadows",
|
|
68267
68827
|
shape: "shape",
|
|
68268
68828
|
shared: "shared",
|
|
68829
|
+
local: "local",
|
|
68269
68830
|
singleton: "singleton",
|
|
68270
68831
|
site: "site",
|
|
68271
68832
|
slots: "slots",
|
|
@@ -68390,6 +68951,7 @@ var ar_default = {
|
|
|
68390
68951
|
persistent: "\u062F\u0627\u0626\u0645",
|
|
68391
68952
|
runtime: "\u0648\u0642\u062A_\u0627\u0644\u062A\u0634\u063A\u064A\u0644",
|
|
68392
68953
|
shared: "\u0645\u0634\u062A\u0631\u0643",
|
|
68954
|
+
local: "\u0645\u062D\u0644\u064A",
|
|
68393
68955
|
identity: "\u0647\u0648\u064A\u0629",
|
|
68394
68956
|
instance: "\u0646\u0633\u062E\u0629",
|
|
68395
68957
|
collection: "\u0645\u062C\u0645\u0648\u0639\u0629"
|
|
@@ -68697,6 +69259,7 @@ var ar_default = {
|
|
|
68697
69259
|
shadows: "\u0638\u0644\u0627\u0644",
|
|
68698
69260
|
shape: "\u0634\u0643\u0644",
|
|
68699
69261
|
shared: "\u0645\u0634\u062A\u0631\u0643",
|
|
69262
|
+
local: "\u0645\u062D\u0644\u064A",
|
|
68700
69263
|
singleton: "\u0648\u062D\u064A\u062F",
|
|
68701
69264
|
site: "\u0645\u0648\u0642\u0639_\u0627\u0644\u0648\u064A\u0628",
|
|
68702
69265
|
slots: "\u0641\u062A\u062D\u0627\u062A",
|
|
@@ -68821,6 +69384,7 @@ var sl_default = {
|
|
|
68821
69384
|
persistent: "trajno",
|
|
68822
69385
|
runtime: "izvajanje",
|
|
68823
69386
|
shared: "skupno",
|
|
69387
|
+
local: "lokalno",
|
|
68824
69388
|
identity: "identiteta",
|
|
68825
69389
|
instance: "primerek",
|
|
68826
69390
|
collection: "zbirka"
|
|
@@ -69128,6 +69692,7 @@ var sl_default = {
|
|
|
69128
69692
|
shadows: "sence",
|
|
69129
69693
|
shape: "oblika",
|
|
69130
69694
|
shared: "skupno",
|
|
69695
|
+
local: "lokalno",
|
|
69131
69696
|
singleton: "edinec",
|
|
69132
69697
|
site: "mesto",
|
|
69133
69698
|
slots: "reze",
|
|
@@ -69977,6 +70542,6 @@ function reportIdenticalToEnglish(input) {
|
|
|
69977
70542
|
return problems;
|
|
69978
70543
|
}
|
|
69979
70544
|
|
|
69980
|
-
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, AudioManifestSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, COMPONENT_MAPPING, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_UNIT_ANIMATION_ROWS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EVENT_CONTRACTS, 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, I18N_SECTIONS, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LANGUAGE_CODES, LOLO_FIRST_TOKEN_KEYWORDS, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, MANIFEST_ASSET_LICENSES, MANIFEST_CANVAS_AFFINITIES, MANIFEST_ENTRY_KINDS, MANIFEST_SOURCE_CATALOGS, ManifestAssetLicenseSchema, ManifestCanvasAffinitySchema, ManifestEntryKindSchema, ManifestEntrySchema, ManifestFrameSpecSchema, ManifestSourceCatalogSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, ORB_NOTATION_KEYS, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalRefObjectSchema, OrbitalRefStringSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, PayloadTypeWhenSchema, 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, SPRITE_SHEET_LAYOUT, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SoundEntrySchema, 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, aliasMap, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyListenPayloadMapping, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, assertNoUnsatisfiableEnum, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, checkI18nCoverage, classifyWorkflow, clearSchemaCache, collectBindings, collectCallsiteCaptureChildren, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, collectTraitConfigRefAdjacency, collectTraitEmbedAdjacency, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, containsEntityBinding, containsPayloadBinding, contractFieldName, coreTables, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, defaultUnitAtlas, deref, deriveCollection, deriveExpectations, deriveId, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, entityAccessPolicies, entityAccessTable, event_contracts_default as eventContracts, eventKeyPropsOf, eventListPropsOf, expectedEntityName, extractPayloadFieldRef, findCompatiblePatterns, findPersonaInRoster, findService, fingerprintNode, formatRecommendationsForPrompt, gatherTensorLastDim, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getNestedValue, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternFieldsContract, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, getVocabulary, hasService, hasSignificantPageReduction, idKindOf, idPrefix, inferTsType, insertChildAtPath, integrators_registry_default as integratorsRegistry, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isContentBodyPattern, isContentBodyPatternType, isContentMainWriter, isDestructiveChange, isDrawHostPattern, isDrawablePattern, isEffect, isEmailValue, isEntityAwarePattern, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMainSlotRenderUi, 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, isTensorValue, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, isValueInputPattern, languageOfLoloFirstToken, languageOfOrbTopLevelKeys, ledgerCurName, ledgerRename, ledgerResolveName, lexLolo, localizeLoloSource, localizeMap, localizeOrbValue, manifestToAssetCatalog, mapTensorLastDim, maskSecretConfigValues, matchAssetQuery, mergeEntityFrame, mintId, navigate, navigateBack, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext,
|
|
70545
|
+
export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, AudioManifestSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, COMPONENT_MAPPING, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_UNIT_ANIMATION_ROWS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EVENT_CONTRACTS, 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, FieldValueSchema, FileValueSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, I18N_SECTIONS, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LANGUAGE_CODES, LOLO_FIRST_TOKEN_KEYWORDS, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, MANIFEST_ASSET_LICENSES, MANIFEST_CANVAS_AFFINITIES, MANIFEST_ENTRY_KINDS, MANIFEST_SOURCE_CATALOGS, ManifestAssetLicenseSchema, ManifestCanvasAffinitySchema, ManifestEntryKindSchema, ManifestEntrySchema, ManifestFrameSpecSchema, ManifestSourceCatalogSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, ORB_NOTATION_KEYS, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalRefObjectSchema, OrbitalRefStringSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, PayloadTypeWhenSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SELF_OVERLAY_PATTERN_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SHEET_PROJECTIONS, SPRITE_DIRECTIONS, SPRITE_SHEET_LAYOUT, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SheetProjectionSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SoundEntrySchema, 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, aliasMap, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyListenPayloadMapping, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, assertNoUnsatisfiableEnum, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, checkI18nCoverage, classifyWorkflow, clearSchemaCache, collectBindings, collectCallsiteCaptureChildren, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, collectTraitConfigRefAdjacency, collectTraitEmbedAdjacency, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, containsEntityBinding, containsPayloadBinding, contractFieldName, coreTables, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, defaultUnitAtlas, deref, deriveCollection, deriveExpectations, deriveId, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, entityAccessPolicies, entityAccessTable, event_contracts_default as eventContracts, eventKeyPropsOf, eventListPropsOf, expectedEntityName, extractPayloadFieldRef, findCompatiblePatterns, findPersonaInRoster, findService, fingerprintNode, formatRecommendationsForPrompt, gatherTensorLastDim, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getNestedValue, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternFieldsContract, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, getVocabulary, hasService, hasSignificantPageReduction, idKindOf, idPrefix, inferTsType, insertChildAtPath, integrators_registry_default as integratorsRegistry, isBinding, isCallSiteConfigDeclaration, isCircuitEvent, isContentBodyPattern, isContentBodyPatternType, isContentMainWriter, isDestructiveChange, isDrawHostPattern, isDrawablePattern, isEffect, isEmailValue, isEntityAwarePattern, isEntityCall, isEntityId, isEntityReference, isEntityReferenceAny, isEventId, isEventPayloadValue, isFieldValue, isFileValue, isImportedTraitRef, isInlineTrait, isJsonArray, isJsonObject, isJsonPrimitive, isKnownValidationErrorCode, isMainSlotRenderUi, 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, isTensorValue, isThemeId, isThemeReference, isTraitFieldRef, isTraitId, isUrlValue, isUuidValue, isValidBinding, isValidPatternType, isValueInputPattern, languageOfLoloFirstToken, languageOfOrbTopLevelKeys, ledgerCurName, ledgerRename, ledgerResolveName, lexLolo, localizeLoloSource, localizeMap, localizeOrbValue, manifestToAssetCatalog, mapTensorLastDim, maskSecretConfigValues, matchAssetQuery, mergeEntityFrame, mintId, navigate, navigateBack, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, omitFrameFields, overrideDeclaredKnobs, parseAssetKey, parseAssetQuery, parseBinding, parseEntityRef, parseI18nTables, parseImportedTraitRef, parseOperatorTables, parseOrbitalRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, recommendPatterns, reduceToOwners, ref, registry, rehydrateKnobDefs, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, reportIdenticalToEnglish, requiresConfirmation, resolveConfigRefEventName, resolveContentOwners, resolveDefaultViewer, resolveEntityView, resolvePageContentOwner, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, signatureToParamsSchema, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, traitReferencesCallsitePayload, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
|
|
69981
70546
|
//# sourceMappingURL=index.js.map
|
|
69982
70547
|
//# sourceMappingURL=index.js.map
|