@almadar/core 10.90.0 → 10.92.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.
Files changed (38) hide show
  1. package/dist/builders.d.ts +3 -3
  2. package/dist/builders.js +4 -2
  3. package/dist/builders.js.map +1 -1
  4. package/dist/{effect-7jQQxiIt.d.ts → effect-DGa2ixo7.d.ts} +13 -1
  5. package/dist/{entityAccess-CpHfCQA3.d.ts → entityAccess-CXennIKj.d.ts} +1 -1
  6. package/dist/factory/index.d.ts +4 -4
  7. package/dist/factory/index.js +437 -101
  8. package/dist/factory/index.js.map +1 -1
  9. package/dist/factory-runtime/index.d.ts +3 -3
  10. package/dist/factory-runtime/index.js +8 -3
  11. package/dist/factory-runtime/index.js.map +1 -1
  12. package/dist/i18n/index.js +6 -0
  13. package/dist/i18n/index.js.map +1 -1
  14. package/dist/{index-BresfHJy.d.ts → index-BFortVj8.d.ts} +39 -10
  15. package/dist/index.d.ts +11 -72
  16. package/dist/index.js +829 -209
  17. package/dist/index.js.map +1 -1
  18. package/dist/mock/index.d.ts +11 -5
  19. package/dist/mock/index.js +3 -2
  20. package/dist/mock/index.js.map +1 -1
  21. package/dist/patterns/component-mapping.json +1 -1
  22. package/dist/patterns/event-contracts.json +1 -1
  23. package/dist/patterns/index.d.ts +1570 -181
  24. package/dist/patterns/index.js +771 -109
  25. package/dist/patterns/index.js.map +1 -1
  26. package/dist/patterns/integrators-registry.json +333 -6
  27. package/dist/patterns/patterns-registry.json +436 -101
  28. package/dist/patterns/registry.json +436 -101
  29. package/dist/patterns/services-registry.json +400 -68
  30. package/dist/{schema-C52juBr8.d.ts → schema-DIL07Bmv.d.ts} +25 -25
  31. package/dist/state-machine/index.js +19 -4
  32. package/dist/state-machine/index.js.map +1 -1
  33. package/dist/{trait-CFiL1YUN.d.ts → trait-DHb48lyx.d.ts} +10 -1
  34. package/dist/types/index.d.ts +5 -5
  35. package/dist/types/index.js +32 -3
  36. package/dist/types/index.js.map +1 -1
  37. package/dist/{types-BgC8ETnl.d.ts → types-F5EPwMor.d.ts} +2 -2
  38. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -317,7 +317,8 @@ var EntityFieldSchema = z.lazy(() => {
317
317
  properties: z.record(EntityFieldSchema).optional(),
318
318
  intrinsic: z.boolean().optional(),
319
319
  description: z.string().optional(),
320
- synonyms: z.string().optional()
320
+ synonyms: z.string().optional(),
321
+ mergedFrom: z.string().optional()
321
322
  };
322
323
  function scalarVariant(t) {
323
324
  return z.object({
@@ -1104,6 +1105,9 @@ function maskSecretConfigValues(config, values) {
1104
1105
  }
1105
1106
  return masked;
1106
1107
  }
1108
+ function canonicalizeUnboundTraitOverride(fieldType, value) {
1109
+ return fieldType === "trait" && value === "none" ? null : value;
1110
+ }
1107
1111
  function overrideDeclaredKnobs(declared, overrides) {
1108
1112
  const out = { ...declared };
1109
1113
  for (const key of Object.keys(overrides)) {
@@ -1113,7 +1117,7 @@ function overrideDeclaredKnobs(declared, overrides) {
1113
1117
  `overrideDeclaredKnobs: config override "${key}" is not a declared knob (ORB_O_CONFIG_UNKNOWN_KEY). Declared: ${Object.keys(declared).join(", ") || "(none)"}`
1114
1118
  );
1115
1119
  }
1116
- out[key] = { ...field, default: overrides[key] };
1120
+ out[key] = { ...field, default: canonicalizeUnboundTraitOverride(field.type, overrides[key]) };
1117
1121
  }
1118
1122
  return out;
1119
1123
  }
@@ -1137,7 +1141,8 @@ var ConfigFieldDeclarationSchema = z.object({
1137
1141
  synonyms: z.string().optional(),
1138
1142
  items: ConfigFieldItemsDeclarationSchema.optional(),
1139
1143
  properties: z.lazy(() => z.record(TraitEntityFieldSchema)).optional(),
1140
- forwardedFrom: z.string().optional()
1144
+ forwardedFrom: z.string().optional(),
1145
+ payloadFor: z.string().optional()
1141
1146
  });
1142
1147
  var DeclaredTraitConfigSchema = z.record(
1143
1148
  ConfigFieldDeclarationSchema
@@ -2579,7 +2584,7 @@ function getInteractionModelForDomain(domain) {
2579
2584
  // src/patterns/patterns-registry.json
2580
2585
  var patterns_registry_default = {
2581
2586
  version: "1.0.0",
2582
- exportedAt: "2026-09-10T08:51:20.514Z",
2587
+ exportedAt: "2026-09-12T18:14:02.248Z",
2583
2588
  patterns: {
2584
2589
  "entity-table": {
2585
2590
  type: "entity-table",
@@ -2588,6 +2593,7 @@ var patterns_registry_default = {
2588
2593
  tier: "organisms",
2589
2594
  family: "core",
2590
2595
  description: "Data table with columns and sorting",
2596
+ fieldsContract: "display",
2591
2597
  suggestedFor: [
2592
2598
  "data-dense views",
2593
2599
  "comparisons",
@@ -3056,6 +3062,48 @@ var patterns_registry_default = {
3056
3062
  "card-rows"
3057
3063
  ],
3058
3064
  default: "dense"
3065
+ },
3066
+ relationsData: {
3067
+ types: [
3068
+ "object"
3069
+ ],
3070
+ description: "Relation display data: { fieldName: [{value, label}] } \u2014 injected server-side by the runtime (relation-option injection) or bound by compiled codegen; resolves stored foreign ids to display names for a column whose field is relation-typed. Same contract DetailPanel takes.",
3071
+ mapValue: {
3072
+ types: [
3073
+ "array"
3074
+ ],
3075
+ items: {
3076
+ types: [
3077
+ "object"
3078
+ ],
3079
+ properties: {
3080
+ value: {
3081
+ types: [
3082
+ "string"
3083
+ ]
3084
+ },
3085
+ label: {
3086
+ types: [
3087
+ "string"
3088
+ ]
3089
+ },
3090
+ description: {
3091
+ types: [
3092
+ "string"
3093
+ ]
3094
+ },
3095
+ disabled: {
3096
+ types: [
3097
+ "boolean"
3098
+ ]
3099
+ }
3100
+ },
3101
+ required: [
3102
+ "value",
3103
+ "label"
3104
+ ]
3105
+ }
3106
+ }
3059
3107
  }
3060
3108
  }
3061
3109
  },
@@ -3286,7 +3334,6 @@ var patterns_registry_default = {
3286
3334
  "function"
3287
3335
  ],
3288
3336
  description: "Render function for each item. In .lolo: renderItem: (fn item <Component \u2026={@item.field}/>), binding per-item fields via @item.field.",
3289
- kind: "callback",
3290
3337
  callbackArgs: [
3291
3338
  {
3292
3339
  name: "item",
@@ -6880,7 +6927,10 @@ var patterns_registry_default = {
6880
6927
  "1:1",
6881
6928
  "16:9",
6882
6929
  "5:7",
6883
- "8:1"
6930
+ "8:1",
6931
+ "4:1",
6932
+ "5:3",
6933
+ "1:2"
6884
6934
  ]
6885
6935
  },
6886
6936
  atlas: {
@@ -7040,7 +7090,10 @@ var patterns_registry_default = {
7040
7090
  "1:1",
7041
7091
  "16:9",
7042
7092
  "5:7",
7043
- "8:1"
7093
+ "8:1",
7094
+ "4:1",
7095
+ "5:3",
7096
+ "1:2"
7044
7097
  ]
7045
7098
  },
7046
7099
  atlas: {
@@ -10074,6 +10127,7 @@ var patterns_registry_default = {
10074
10127
  button: {
10075
10128
  type: "button",
10076
10129
  category: "component",
10130
+ sourceFile: "components/core/atoms/Button.tsx",
10077
10131
  tier: "atoms",
10078
10132
  family: "core",
10079
10133
  description: "Clickable button that emits events",
@@ -10218,7 +10272,10 @@ var patterns_registry_default = {
10218
10272
  "1:1",
10219
10273
  "16:9",
10220
10274
  "5:7",
10221
- "8:1"
10275
+ "8:1",
10276
+ "4:1",
10277
+ "5:3",
10278
+ "1:2"
10222
10279
  ]
10223
10280
  },
10224
10281
  atlas: {
@@ -10260,7 +10317,8 @@ var patterns_registry_default = {
10260
10317
  "object"
10261
10318
  ],
10262
10319
  description: "Payload to include with the action event",
10263
- payloadFor: "action"
10320
+ payloadFor: "action",
10321
+ eventPayloadBrand: true
10264
10322
  },
10265
10323
  label: {
10266
10324
  types: [
@@ -10285,6 +10343,7 @@ var patterns_registry_default = {
10285
10343
  badge: {
10286
10344
  type: "badge",
10287
10345
  category: "component",
10346
+ sourceFile: "components/core/atoms/Badge.tsx",
10288
10347
  tier: "atoms",
10289
10348
  family: "core",
10290
10349
  description: "Small label for status or count",
@@ -10416,7 +10475,10 @@ var patterns_registry_default = {
10416
10475
  "1:1",
10417
10476
  "16:9",
10418
10477
  "5:7",
10419
- "8:1"
10478
+ "8:1",
10479
+ "4:1",
10480
+ "5:3",
10481
+ "1:2"
10420
10482
  ]
10421
10483
  },
10422
10484
  atlas: {
@@ -10916,6 +10978,7 @@ var patterns_registry_default = {
10916
10978
  input: {
10917
10979
  type: "input",
10918
10980
  category: "component",
10981
+ sourceFile: "components/core/atoms/Input.tsx",
10919
10982
  tier: "atoms",
10920
10983
  family: "core",
10921
10984
  description: "Text input field",
@@ -11043,9 +11106,7 @@ var patterns_registry_default = {
11043
11106
  "function",
11044
11107
  "string"
11045
11108
  ],
11046
- description: "Callback or declarative event key when clear button is clicked",
11047
- kind: "event-ref",
11048
- emitPayloadSchema: []
11109
+ description: "Callback or declarative event key when clear button is clicked"
11049
11110
  },
11050
11111
  options: {
11051
11112
  types: [
@@ -11090,16 +11151,9 @@ var patterns_registry_default = {
11090
11151
  kind: "event-ref",
11091
11152
  emitPayloadSchema: [
11092
11153
  {
11093
- name: "value",
11094
- type: "string",
11095
- required: true,
11096
- typeWhen: [
11097
- {
11098
- knob: "inputType",
11099
- equals: "number",
11100
- type: "number"
11101
- }
11102
- ]
11154
+ name: "_payload",
11155
+ type: "object",
11156
+ required: false
11103
11157
  }
11104
11158
  ]
11105
11159
  }
@@ -11169,6 +11223,7 @@ var patterns_registry_default = {
11169
11223
  select: {
11170
11224
  type: "select",
11171
11225
  category: "component",
11226
+ sourceFile: "components/core/atoms/Select.tsx",
11172
11227
  tier: "atoms",
11173
11228
  family: "core",
11174
11229
  description: "Dropdown select input",
@@ -11358,7 +11413,26 @@ var patterns_registry_default = {
11358
11413
  "function",
11359
11414
  "string"
11360
11415
  ],
11361
- description: "Value-based change: a React callback (internal use) OR a declarative event key that emits `{ value }` on the bus (render-ui / lolo authoring). Mirrors the `onChange` handler|event convention so it's an event-emitting prop, not a bare callback."
11416
+ description: "Value-based change: a React callback (internal use) OR a declarative event key that emits `{ value }` on the bus (render-ui / lolo authoring). Mirrors the `onChange` handler|event convention so it's an event-emitting prop, not a bare callback.",
11417
+ kind: "event-ref",
11418
+ emitPayloadSchema: [
11419
+ {
11420
+ name: "value",
11421
+ type: "string",
11422
+ required: true,
11423
+ schema: {
11424
+ types: [
11425
+ "string",
11426
+ "array"
11427
+ ],
11428
+ items: {
11429
+ types: [
11430
+ "string"
11431
+ ]
11432
+ }
11433
+ }
11434
+ }
11435
+ ]
11362
11436
  }
11363
11437
  }
11364
11438
  },
@@ -12305,6 +12379,7 @@ var patterns_registry_default = {
12305
12379
  "repeatable-form-section": {
12306
12380
  type: "repeatable-form-section",
12307
12381
  category: "form",
12382
+ sourceFile: "components/core/molecules/RepeatableFormSection.tsx",
12308
12383
  tier: "molecules",
12309
12384
  family: "core",
12310
12385
  description: "RepeatableFormSection \u2014 a form section that repeats a fixed group of fields, letting the user add or remove entries.",
@@ -12368,7 +12443,6 @@ var patterns_registry_default = {
12368
12443
  ],
12369
12444
  description: "Render function for each item. In .lolo: renderItem: (fn item <Component \u2026={@item.field}/>), binding per-item fields via @item.field.",
12370
12445
  required: true,
12371
- kind: "callback",
12372
12446
  callbackArgs: [
12373
12447
  {
12374
12448
  name: "item",
@@ -13913,6 +13987,7 @@ var patterns_registry_default = {
13913
13987
  "input-group": {
13914
13988
  type: "input-group",
13915
13989
  category: "form",
13990
+ sourceFile: "components/core/molecules/InputGroup.tsx",
13916
13991
  tier: "molecules",
13917
13992
  family: "core",
13918
13993
  description: "InputGroup Molecule Component A component for grouping input with addons (icons, buttons, text). Uses Input, Button, Icon, and Typography atoms.",
@@ -14033,9 +14108,7 @@ var patterns_registry_default = {
14033
14108
  "function",
14034
14109
  "string"
14035
14110
  ],
14036
- description: "Callback or declarative event key when clear button is clicked",
14037
- kind: "event-ref",
14038
- emitPayloadSchema: []
14111
+ description: "Callback or declarative event key when clear button is clicked"
14039
14112
  },
14040
14113
  options: {
14041
14114
  types: [
@@ -14079,16 +14152,9 @@ var patterns_registry_default = {
14079
14152
  kind: "event-ref",
14080
14153
  emitPayloadSchema: [
14081
14154
  {
14082
- name: "value",
14083
- type: "string",
14084
- required: true,
14085
- typeWhen: [
14086
- {
14087
- knob: "inputType",
14088
- equals: "number",
14089
- type: "number"
14090
- }
14091
- ]
14155
+ name: "_payload",
14156
+ type: "object",
14157
+ required: false
14092
14158
  }
14093
14159
  ]
14094
14160
  },
@@ -16388,6 +16454,7 @@ var patterns_registry_default = {
16388
16454
  "game-shell": {
16389
16455
  type: "game-shell",
16390
16456
  category: "game",
16457
+ sourceFile: "components/game/templates/GameShell.tsx",
16391
16458
  tier: "templates",
16392
16459
  family: "game",
16393
16460
  description: 'GameShell A full-screen layout wrapper for game applications. Replaces DashboardLayout for game clients \u2014 no sidebar nav, just full-viewport rendering with an optional HUD overlay bar. Used as a React Router layout route element: <Route element={<GameShell appName="TraitWars" />}> <Route index element={<WorldMapPage />} /> ... </Route>',
@@ -16513,7 +16580,10 @@ var patterns_registry_default = {
16513
16580
  "1:1",
16514
16581
  "16:9",
16515
16582
  "5:7",
16516
- "8:1"
16583
+ "8:1",
16584
+ "4:1",
16585
+ "5:3",
16586
+ "1:2"
16517
16587
  ]
16518
16588
  },
16519
16589
  atlas: {
@@ -16608,7 +16678,10 @@ var patterns_registry_default = {
16608
16678
  "1:1",
16609
16679
  "16:9",
16610
16680
  "5:7",
16611
- "8:1"
16681
+ "8:1",
16682
+ "4:1",
16683
+ "5:3",
16684
+ "1:2"
16612
16685
  ]
16613
16686
  },
16614
16687
  atlas: {
@@ -19965,6 +20038,7 @@ var patterns_registry_default = {
19965
20038
  "state-machine-view": {
19966
20039
  type: "state-machine-view",
19967
20040
  category: "display",
20041
+ sourceFile: "components/core/organisms/StateMachineView.tsx",
19968
20042
  tier: "organisms",
19969
20043
  family: "core",
19970
20044
  description: "StateMachineView component",
@@ -20032,7 +20106,6 @@ var patterns_registry_default = {
20032
20106
  "function"
20033
20107
  ],
20034
20108
  description: "Custom state node renderer \u2014 when provided, replaces the default circle nodes",
20035
- kind: "callback",
20036
20109
  callbackArgs: [
20037
20110
  {
20038
20111
  name: "state",
@@ -20416,6 +20489,7 @@ var patterns_registry_default = {
20416
20489
  "calendar-grid": {
20417
20490
  type: "calendar-grid",
20418
20491
  category: "display",
20492
+ sourceFile: "components/core/molecules/CalendarGrid.tsx",
20419
20493
  tier: "molecules",
20420
20494
  family: "core",
20421
20495
  description: "CalendarGrid component",
@@ -20553,7 +20627,8 @@ var patterns_registry_default = {
20553
20627
  "object"
20554
20628
  ],
20555
20629
  description: "Additional payload for long-press events",
20556
- payloadFor: "longPressEvent"
20630
+ payloadFor: "longPressEvent",
20631
+ eventPayloadBrand: true
20557
20632
  },
20558
20633
  swipeLeftEvent: {
20559
20634
  types: [
@@ -20615,7 +20690,6 @@ var patterns_registry_default = {
20615
20690
  "function"
20616
20691
  ],
20617
20692
  description: "Render function for one event chip's content. Receives the row and its index in the materialised events array. The grid keeps ownership of placement, colour and the click target; this replaces only what is drawn INSIDE the chip, so a host can show a time + instructor + badge stack instead of the default single label.",
20618
- kind: "callback",
20619
20693
  callbackArgs: [
20620
20694
  {
20621
20695
  name: "item",
@@ -20633,7 +20707,6 @@ var patterns_registry_default = {
20633
20707
  "function"
20634
20708
  ],
20635
20709
  description: 'Per-event render function (schema-level alias for the children render prop). In `.orb`: `["fn", "item", { pattern tree with @item.field bindings }]`. In `.lolo`: `renderItem: (fn item <Component \u2026={@item.field}/>)` \u2014 the same contract `data-list` / `data-grid` / `carousel` already use.',
20636
- kind: "callback",
20637
20710
  callbackArgs: [
20638
20711
  {
20639
20712
  name: "item",
@@ -21179,6 +21252,7 @@ var patterns_registry_default = {
21179
21252
  "progress-dots": {
21180
21253
  type: "progress-dots",
21181
21254
  category: "component",
21255
+ sourceFile: "components/core/molecules/ProgressDots.tsx",
21182
21256
  tier: "molecules",
21183
21257
  family: "core",
21184
21258
  description: "ProgressDots component",
@@ -21208,7 +21282,6 @@ var patterns_registry_default = {
21208
21282
  "function"
21209
21283
  ],
21210
21284
  description: "Custom state resolver per dot index",
21211
- kind: "callback",
21212
21285
  callbackArgs: [
21213
21286
  {
21214
21287
  name: "index",
@@ -21258,6 +21331,7 @@ var patterns_registry_default = {
21258
21331
  family: "core",
21259
21332
  description: "DataGrid \u2014 structured records grid rendering rows over configurable columns, with sort, select, and drag-reorder.",
21260
21333
  capabilities: "admin table, records grid, user list, CRUD list, manage-records view, spreadsheet-style data grid, sortable columns",
21334
+ fieldsContract: "display",
21261
21335
  suggestedFor: [
21262
21336
  "data",
21263
21337
  "grid",
@@ -21664,7 +21738,6 @@ var patterns_registry_default = {
21664
21738
  "function"
21665
21739
  ],
21666
21740
  description: "Render prop for custom per-card content. When provided, `fields` are ignored; `itemActions` render as a footer beneath the custom content.",
21667
- kind: "callback",
21668
21741
  callbackArgs: [
21669
21742
  {
21670
21743
  name: "item",
@@ -21682,7 +21755,6 @@ var patterns_registry_default = {
21682
21755
  "function"
21683
21756
  ],
21684
21757
  description: 'Per-item render function (schema-level alias for children render prop). In .orb schemas: ["fn", "item", { pattern tree with @item.field bindings }] The compiler converts this to the children render prop. In .lolo, author the per-item renderer as renderItem: (fn item <Component \u2026={@item.field}/>), binding per-item fields via @item.field.',
21685
- kind: "callback",
21686
21758
  callbackArgs: [
21687
21759
  {
21688
21760
  name: "item",
@@ -21715,6 +21787,48 @@ var patterns_registry_default = {
21715
21787
  "card-rows"
21716
21788
  ],
21717
21789
  default: "dense"
21790
+ },
21791
+ relationsData: {
21792
+ types: [
21793
+ "object"
21794
+ ],
21795
+ description: "Relation display data: { fieldName: [{value, label}] } \u2014 injected server-side by the runtime (relation-option injection) or bound by compiled codegen; resolves stored foreign ids to display names for a field whose type is relation. Same contract DetailPanel takes.",
21796
+ mapValue: {
21797
+ types: [
21798
+ "array"
21799
+ ],
21800
+ items: {
21801
+ types: [
21802
+ "object"
21803
+ ],
21804
+ properties: {
21805
+ value: {
21806
+ types: [
21807
+ "string"
21808
+ ]
21809
+ },
21810
+ label: {
21811
+ types: [
21812
+ "string"
21813
+ ]
21814
+ },
21815
+ description: {
21816
+ types: [
21817
+ "string"
21818
+ ]
21819
+ },
21820
+ disabled: {
21821
+ types: [
21822
+ "boolean"
21823
+ ]
21824
+ }
21825
+ },
21826
+ required: [
21827
+ "value",
21828
+ "label"
21829
+ ]
21830
+ }
21831
+ }
21718
21832
  }
21719
21833
  }
21720
21834
  },
@@ -21725,6 +21839,7 @@ var patterns_registry_default = {
21725
21839
  tier: "molecules",
21726
21840
  family: "core",
21727
21841
  description: "DataList component",
21842
+ fieldsContract: "display",
21728
21843
  suggestedFor: [
21729
21844
  "data",
21730
21845
  "list",
@@ -22208,7 +22323,6 @@ var patterns_registry_default = {
22208
22323
  "function"
22209
22324
  ],
22210
22325
  description: "Render prop for custom per-item content. When provided, `fields` and `itemActions` are ignored.",
22211
- kind: "callback",
22212
22326
  callbackArgs: [
22213
22327
  {
22214
22328
  name: "item",
@@ -22226,7 +22340,6 @@ var patterns_registry_default = {
22226
22340
  "function"
22227
22341
  ],
22228
22342
  description: 'Per-item render function (schema-level alias for children render prop). In .orb schemas: ["fn", "item", { pattern tree with @item.field bindings }] The compiler converts this to the children render prop. In .lolo, author the per-item renderer as renderItem: (fn item <Component \u2026={@item.field}/>), binding per-item fields via @item.field.',
22229
- kind: "callback",
22230
22343
  callbackArgs: [
22231
22344
  {
22232
22345
  name: "item",
@@ -22275,6 +22388,48 @@ var patterns_registry_default = {
22275
22388
  "card-rows"
22276
22389
  ],
22277
22390
  default: "dense"
22391
+ },
22392
+ relationsData: {
22393
+ types: [
22394
+ "object"
22395
+ ],
22396
+ description: "Relation display data: { fieldName: [{value, label}] } \u2014 injected server-side by the runtime (relation-option injection) or bound by compiled codegen; resolves stored foreign ids to display names for a field whose type is relation. Same contract DetailPanel takes.",
22397
+ mapValue: {
22398
+ types: [
22399
+ "array"
22400
+ ],
22401
+ items: {
22402
+ types: [
22403
+ "object"
22404
+ ],
22405
+ properties: {
22406
+ value: {
22407
+ types: [
22408
+ "string"
22409
+ ]
22410
+ },
22411
+ label: {
22412
+ types: [
22413
+ "string"
22414
+ ]
22415
+ },
22416
+ description: {
22417
+ types: [
22418
+ "string"
22419
+ ]
22420
+ },
22421
+ disabled: {
22422
+ types: [
22423
+ "boolean"
22424
+ ]
22425
+ }
22426
+ },
22427
+ required: [
22428
+ "value",
22429
+ "label"
22430
+ ]
22431
+ }
22432
+ }
22278
22433
  }
22279
22434
  }
22280
22435
  },
@@ -22585,6 +22740,7 @@ var patterns_registry_default = {
22585
22740
  "range-slider": {
22586
22741
  type: "range-slider",
22587
22742
  category: "component",
22743
+ sourceFile: "components/core/atoms/RangeSlider.tsx",
22588
22744
  tier: "atoms",
22589
22745
  family: "core",
22590
22746
  description: "RangeSlider component",
@@ -22687,7 +22843,8 @@ var patterns_registry_default = {
22687
22843
  "object"
22688
22844
  ],
22689
22845
  description: "Payload to include with the action event",
22690
- payloadFor: "action"
22846
+ payloadFor: "action",
22847
+ eventPayloadBrand: true
22691
22848
  },
22692
22849
  onChange: {
22693
22850
  types: [
@@ -22707,7 +22864,6 @@ var patterns_registry_default = {
22707
22864
  "function"
22708
22865
  ],
22709
22866
  description: "Format function for tooltip display",
22710
- kind: "callback",
22711
22867
  callbackArgs: [
22712
22868
  {
22713
22869
  name: "value",
@@ -23557,7 +23713,6 @@ var patterns_registry_default = {
23557
23713
  "function"
23558
23714
  ],
23559
23715
  description: "Render function for each slide. In .lolo: renderItem: (fn item <Component \u2026={@item.field}/>), binding per-item fields via @item.field.",
23560
- kind: "callback",
23561
23716
  callbackArgs: [
23562
23717
  {
23563
23718
  name: "item",
@@ -23597,7 +23752,6 @@ var patterns_registry_default = {
23597
23752
  "function"
23598
23753
  ],
23599
23754
  description: "Children-as-function fallback for renderItem (compiler compatibility)",
23600
- kind: "callback",
23601
23755
  callbackArgs: [
23602
23756
  {
23603
23757
  name: "item",
@@ -23755,6 +23909,7 @@ var patterns_registry_default = {
23755
23909
  "sortable-list": {
23756
23910
  type: "sortable-list",
23757
23911
  category: "display",
23912
+ sourceFile: "components/core/molecules/SortableList.tsx",
23758
23913
  tier: "molecules",
23759
23914
  family: "core",
23760
23915
  description: "SortableList \u2014 a drag-and-drop reorderable list of items.",
@@ -23782,7 +23937,6 @@ var patterns_registry_default = {
23782
23937
  ],
23783
23938
  description: "Render function for each item. In .lolo: renderItem: (fn item <Component \u2026={@item.field}/>), binding per-item fields via @item.field.",
23784
23939
  required: true,
23785
- kind: "callback",
23786
23940
  callbackArgs: [
23787
23941
  {
23788
23942
  name: "item",
@@ -23826,7 +23980,8 @@ var patterns_registry_default = {
23826
23980
  "object"
23827
23981
  ],
23828
23982
  description: "reorderPayload prop",
23829
- payloadFor: "reorderEvent"
23983
+ payloadFor: "reorderEvent",
23984
+ eventPayloadBrand: true
23830
23985
  },
23831
23986
  dragHandlePosition: {
23832
23987
  types: [
@@ -30876,6 +31031,7 @@ var patterns_registry_default = {
30876
31031
  "choice-button": {
30877
31032
  type: "choice-button",
30878
31033
  category: "game",
31034
+ sourceFile: "components/game/atoms/ChoiceButton.tsx",
30879
31035
  tier: "atoms",
30880
31036
  family: "game",
30881
31037
  description: "ChoiceButton component",
@@ -30965,7 +31121,10 @@ var patterns_registry_default = {
30965
31121
  "1:1",
30966
31122
  "16:9",
30967
31123
  "5:7",
30968
- "8:1"
31124
+ "8:1",
31125
+ "4:1",
31126
+ "5:3",
31127
+ "1:2"
30969
31128
  ]
30970
31129
  },
30971
31130
  atlas: {
@@ -31055,6 +31214,7 @@ var patterns_registry_default = {
31055
31214
  "control-button": {
31056
31215
  type: "control-button",
31057
31216
  category: "game",
31217
+ sourceFile: "components/game/atoms/ControlButton.tsx",
31058
31218
  tier: "atoms",
31059
31219
  family: "game",
31060
31220
  description: "ControlButton component",
@@ -31130,7 +31290,10 @@ var patterns_registry_default = {
31130
31290
  "1:1",
31131
31291
  "16:9",
31132
31292
  "5:7",
31133
- "8:1"
31293
+ "8:1",
31294
+ "4:1",
31295
+ "5:3",
31296
+ "1:2"
31134
31297
  ]
31135
31298
  },
31136
31299
  atlas: {
@@ -31247,6 +31410,7 @@ var patterns_registry_default = {
31247
31410
  "dialogue-bubble": {
31248
31411
  type: "dialogue-bubble",
31249
31412
  category: "game",
31413
+ sourceFile: "components/game/atoms/DialogueBubble.tsx",
31250
31414
  tier: "atoms",
31251
31415
  family: "game",
31252
31416
  description: "DialogueBubble component",
@@ -31337,7 +31501,10 @@ var patterns_registry_default = {
31337
31501
  "1:1",
31338
31502
  "16:9",
31339
31503
  "5:7",
31340
- "8:1"
31504
+ "8:1",
31505
+ "4:1",
31506
+ "5:3",
31507
+ "1:2"
31341
31508
  ]
31342
31509
  },
31343
31510
  atlas: {
@@ -31408,6 +31575,7 @@ var patterns_registry_default = {
31408
31575
  "health-bar": {
31409
31576
  type: "health-bar",
31410
31577
  category: "game",
31578
+ sourceFile: "components/game/atoms/HealthBar.tsx",
31411
31579
  tier: "atoms",
31412
31580
  family: "game",
31413
31581
  description: "HealthBar component",
@@ -31556,7 +31724,10 @@ var patterns_registry_default = {
31556
31724
  "1:1",
31557
31725
  "16:9",
31558
31726
  "5:7",
31559
- "8:1"
31727
+ "8:1",
31728
+ "4:1",
31729
+ "5:3",
31730
+ "1:2"
31560
31731
  ]
31561
31732
  },
31562
31733
  atlas: {
@@ -31651,7 +31822,10 @@ var patterns_registry_default = {
31651
31822
  "1:1",
31652
31823
  "16:9",
31653
31824
  "5:7",
31654
- "8:1"
31825
+ "8:1",
31826
+ "4:1",
31827
+ "5:3",
31828
+ "1:2"
31655
31829
  ]
31656
31830
  },
31657
31831
  atlas: {
@@ -31686,6 +31860,7 @@ var patterns_registry_default = {
31686
31860
  "score-display": {
31687
31861
  type: "score-display",
31688
31862
  category: "game",
31863
+ sourceFile: "components/game/atoms/ScoreDisplay.tsx",
31689
31864
  tier: "atoms",
31690
31865
  family: "game",
31691
31866
  description: "ScoreDisplay component",
@@ -31761,7 +31936,10 @@ var patterns_registry_default = {
31761
31936
  "1:1",
31762
31937
  "16:9",
31763
31938
  "5:7",
31764
- "8:1"
31939
+ "8:1",
31940
+ "4:1",
31941
+ "5:3",
31942
+ "1:2"
31765
31943
  ]
31766
31944
  },
31767
31945
  atlas: {
@@ -31848,6 +32026,7 @@ var patterns_registry_default = {
31848
32026
  "timer-display": {
31849
32027
  type: "timer-display",
31850
32028
  category: "game",
32029
+ sourceFile: "components/game/atoms/TimerDisplay.tsx",
31851
32030
  tier: "atoms",
31852
32031
  family: "game",
31853
32032
  description: "TimerDisplay component",
@@ -31974,7 +32153,10 @@ var patterns_registry_default = {
31974
32153
  "1:1",
31975
32154
  "16:9",
31976
32155
  "5:7",
31977
- "8:1"
32156
+ "8:1",
32157
+ "4:1",
32158
+ "5:3",
32159
+ "1:2"
31978
32160
  ]
31979
32161
  },
31980
32162
  atlas: {
@@ -33283,6 +33465,7 @@ var patterns_registry_default = {
33283
33465
  "doc-search": {
33284
33466
  type: "doc-search",
33285
33467
  category: "filter",
33468
+ sourceFile: "components/core/molecules/DocSearch.tsx",
33286
33469
  tier: "molecules",
33287
33470
  family: "core",
33288
33471
  description: "DocSearch component",
@@ -33304,7 +33487,6 @@ var patterns_registry_default = {
33304
33487
  "function"
33305
33488
  ],
33306
33489
  description: "Callback invoked with the search query, returns results",
33307
- kind: "callback",
33308
33490
  callbackArgs: [
33309
33491
  {
33310
33492
  name: "query",
@@ -34244,6 +34426,7 @@ var patterns_registry_default = {
34244
34426
  "game-hud": {
34245
34427
  type: "game-hud",
34246
34428
  category: "game",
34429
+ sourceFile: "components/game/molecules/GameHud.tsx",
34247
34430
  tier: "molecules",
34248
34431
  family: "game",
34249
34432
  description: "GameHud component",
@@ -34334,7 +34517,10 @@ var patterns_registry_default = {
34334
34517
  "1:1",
34335
34518
  "16:9",
34336
34519
  "5:7",
34337
- "8:1"
34520
+ "8:1",
34521
+ "4:1",
34522
+ "5:3",
34523
+ "1:2"
34338
34524
  ]
34339
34525
  },
34340
34526
  atlas: {
@@ -34428,7 +34614,10 @@ var patterns_registry_default = {
34428
34614
  "1:1",
34429
34615
  "16:9",
34430
34616
  "5:7",
34431
- "8:1"
34617
+ "8:1",
34618
+ "4:1",
34619
+ "5:3",
34620
+ "1:2"
34432
34621
  ]
34433
34622
  },
34434
34623
  atlas: {
@@ -34585,7 +34774,10 @@ var patterns_registry_default = {
34585
34774
  "1:1",
34586
34775
  "16:9",
34587
34776
  "5:7",
34588
- "8:1"
34777
+ "8:1",
34778
+ "4:1",
34779
+ "5:3",
34780
+ "1:2"
34589
34781
  ]
34590
34782
  },
34591
34783
  atlas: {
@@ -34679,7 +34871,10 @@ var patterns_registry_default = {
34679
34871
  "1:1",
34680
34872
  "16:9",
34681
34873
  "5:7",
34682
- "8:1"
34874
+ "8:1",
34875
+ "4:1",
34876
+ "5:3",
34877
+ "1:2"
34683
34878
  ]
34684
34879
  },
34685
34880
  atlas: {
@@ -34868,7 +35063,10 @@ var patterns_registry_default = {
34868
35063
  "1:1",
34869
35064
  "16:9",
34870
35065
  "5:7",
34871
- "8:1"
35066
+ "8:1",
35067
+ "4:1",
35068
+ "5:3",
35069
+ "1:2"
34872
35070
  ]
34873
35071
  },
34874
35072
  atlas: {
@@ -35215,7 +35413,10 @@ var patterns_registry_default = {
35215
35413
  "1:1",
35216
35414
  "16:9",
35217
35415
  "5:7",
35218
- "8:1"
35416
+ "8:1",
35417
+ "4:1",
35418
+ "5:3",
35419
+ "1:2"
35219
35420
  ]
35220
35421
  },
35221
35422
  atlas: {
@@ -35256,6 +35457,7 @@ var patterns_registry_default = {
35256
35457
  "stat-badge": {
35257
35458
  type: "stat-badge",
35258
35459
  category: "game",
35460
+ sourceFile: "components/game/molecules/StatBadge.tsx",
35259
35461
  tier: "molecules",
35260
35462
  family: "game",
35261
35463
  description: "StatBadge component",
@@ -35331,7 +35533,10 @@ var patterns_registry_default = {
35331
35533
  "1:1",
35332
35534
  "16:9",
35333
35535
  "5:7",
35334
- "8:1"
35536
+ "8:1",
35537
+ "4:1",
35538
+ "5:3",
35539
+ "1:2"
35335
35540
  ]
35336
35541
  },
35337
35542
  atlas: {
@@ -35426,7 +35631,10 @@ var patterns_registry_default = {
35426
35631
  "1:1",
35427
35632
  "16:9",
35428
35633
  "5:7",
35429
- "8:1"
35634
+ "8:1",
35635
+ "4:1",
35636
+ "5:3",
35637
+ "1:2"
35430
35638
  ]
35431
35639
  },
35432
35640
  atlas: {
@@ -35952,6 +36160,7 @@ var patterns_registry_default = {
35952
36160
  "game-audio-toggle": {
35953
36161
  type: "game-audio-toggle",
35954
36162
  category: "game",
36163
+ sourceFile: "components/game/atoms/GameAudioToggle.tsx",
35955
36164
  tier: "atoms",
35956
36165
  family: "game",
35957
36166
  description: "GameAudioToggle component",
@@ -36083,7 +36292,10 @@ var patterns_registry_default = {
36083
36292
  "1:1",
36084
36293
  "16:9",
36085
36294
  "5:7",
36086
- "8:1"
36295
+ "8:1",
36296
+ "4:1",
36297
+ "5:3",
36298
+ "1:2"
36087
36299
  ]
36088
36300
  },
36089
36301
  atlas: {
@@ -36178,7 +36390,10 @@ var patterns_registry_default = {
36178
36390
  "1:1",
36179
36391
  "16:9",
36180
36392
  "5:7",
36181
- "8:1"
36393
+ "8:1",
36394
+ "4:1",
36395
+ "5:3",
36396
+ "1:2"
36182
36397
  ]
36183
36398
  },
36184
36399
  atlas: {
@@ -36227,6 +36442,7 @@ var patterns_registry_default = {
36227
36442
  "trait-slot": {
36228
36443
  type: "trait-slot",
36229
36444
  category: "game",
36445
+ sourceFile: "components/game/molecules/TraitSlot.tsx",
36230
36446
  tier: "molecules",
36231
36447
  family: "game",
36232
36448
  description: "Event Contract: Emits: UI:CLICK Emits: UI:REMOVE",
@@ -36339,7 +36555,10 @@ var patterns_registry_default = {
36339
36555
  "1:1",
36340
36556
  "16:9",
36341
36557
  "5:7",
36342
- "8:1"
36558
+ "8:1",
36559
+ "4:1",
36560
+ "5:3",
36561
+ "1:2"
36343
36562
  ]
36344
36563
  },
36345
36564
  atlas: {
@@ -36582,7 +36801,10 @@ var patterns_registry_default = {
36582
36801
  "1:1",
36583
36802
  "16:9",
36584
36803
  "5:7",
36585
- "8:1"
36804
+ "8:1",
36805
+ "4:1",
36806
+ "5:3",
36807
+ "1:2"
36586
36808
  ]
36587
36809
  },
36588
36810
  atlas: {
@@ -36759,7 +36981,10 @@ var patterns_registry_default = {
36759
36981
  "1:1",
36760
36982
  "16:9",
36761
36983
  "5:7",
36762
- "8:1"
36984
+ "8:1",
36985
+ "4:1",
36986
+ "5:3",
36987
+ "1:2"
36763
36988
  ]
36764
36989
  },
36765
36990
  atlas: {
@@ -36985,7 +37210,10 @@ var patterns_registry_default = {
36985
37210
  "1:1",
36986
37211
  "16:9",
36987
37212
  "5:7",
36988
- "8:1"
37213
+ "8:1",
37214
+ "4:1",
37215
+ "5:3",
37216
+ "1:2"
36989
37217
  ]
36990
37218
  },
36991
37219
  atlas: {
@@ -37180,6 +37408,7 @@ var patterns_registry_default = {
37180
37408
  "action-palette": {
37181
37409
  type: "action-palette",
37182
37410
  category: "game",
37411
+ sourceFile: "components/game/molecules/ActionPalette.tsx",
37183
37412
  tier: "molecules",
37184
37413
  family: "game",
37185
37414
  description: "ActionPalette Component Grid of draggable ActionTile components for the Sequencer tier. Kids pick from these to build their sequence.",
@@ -37290,7 +37519,10 @@ var patterns_registry_default = {
37290
37519
  "1:1",
37291
37520
  "16:9",
37292
37521
  "5:7",
37293
- "8:1"
37522
+ "8:1",
37523
+ "4:1",
37524
+ "5:3",
37525
+ "1:2"
37294
37526
  ]
37295
37527
  },
37296
37528
  atlas: {
@@ -37478,6 +37710,7 @@ var patterns_registry_default = {
37478
37710
  "action-tile": {
37479
37711
  type: "action-tile",
37480
37712
  category: "game",
37713
+ sourceFile: "components/game/molecules/ActionTile.tsx",
37481
37714
  tier: "molecules",
37482
37715
  family: "game",
37483
37716
  description: "ActionTile Component A draggable action tile for the Sequencer tier (ages 5-8). Kids drag these from the ActionPalette into SequenceBar slots. Sets SlotItemData on dataTransfer for TraitSlot compatibility.",
@@ -37690,7 +37923,10 @@ var patterns_registry_default = {
37690
37923
  "1:1",
37691
37924
  "16:9",
37692
37925
  "5:7",
37693
- "8:1"
37926
+ "8:1",
37927
+ "4:1",
37928
+ "5:3",
37929
+ "1:2"
37694
37930
  ]
37695
37931
  },
37696
37932
  atlas: {
@@ -37853,6 +38089,7 @@ var patterns_registry_default = {
37853
38089
  "sequence-bar": {
37854
38090
  type: "sequence-bar",
37855
38091
  category: "game",
38092
+ sourceFile: "components/game/molecules/SequenceBar.tsx",
37856
38093
  tier: "molecules",
37857
38094
  family: "game",
37858
38095
  description: "SequenceBar Component A row of TraitSlot components forming the action sequence for the Sequencer tier (ages 5-8). Kids drag ActionTiles from the palette into these slots to build their sequence.",
@@ -37963,7 +38200,10 @@ var patterns_registry_default = {
37963
38200
  "1:1",
37964
38201
  "16:9",
37965
38202
  "5:7",
37966
- "8:1"
38203
+ "8:1",
38204
+ "4:1",
38205
+ "5:3",
38206
+ "1:2"
37967
38207
  ]
37968
38208
  },
37969
38209
  atlas: {
@@ -38191,7 +38431,10 @@ var patterns_registry_default = {
38191
38431
  "1:1",
38192
38432
  "16:9",
38193
38433
  "5:7",
38194
- "8:1"
38434
+ "8:1",
38435
+ "4:1",
38436
+ "5:3",
38437
+ "1:2"
38195
38438
  ]
38196
38439
  },
38197
38440
  atlas: {
@@ -39432,6 +39675,7 @@ var patterns_registry_default = {
39432
39675
  family: "core",
39433
39676
  description: "TableView \u2014 sortable, selectable data table rendering rows over configurable columns, with inline row actions and grouping.",
39434
39677
  capabilities: "admin console table, records list, CRUD data table, user list, manage-users grid, sortable columns, row selection with bulk actions, grouped list view",
39678
+ fieldsContract: "display",
39435
39679
  suggestedFor: [
39436
39680
  "table",
39437
39681
  "view",
@@ -39888,7 +40132,6 @@ var patterns_registry_default = {
39888
40132
  "function"
39889
40133
  ],
39890
40134
  description: "Custom per-row render. When provided, the whole row content is delegated to this function (columns are ignored for the body; the header still renders). Mirrors DataList's children render prop.",
39891
- kind: "callback",
39892
40135
  callbackArgs: [
39893
40136
  {
39894
40137
  name: "item",
@@ -39906,7 +40149,6 @@ var patterns_registry_default = {
39906
40149
  "function"
39907
40150
  ],
39908
40151
  description: 'Per-row render function (schema alias). In .orb: ["fn","item",{...}]. The compiler converts this to the children render prop. In .lolo, author the per-row renderer as renderItem: (fn item <Component \u2026={@item.field}/>), binding per-item fields via @item.field.',
39909
- kind: "callback",
39910
40152
  callbackArgs: [
39911
40153
  {
39912
40154
  name: "item",
@@ -39932,6 +40174,48 @@ var patterns_registry_default = {
39932
40174
  "bordered"
39933
40175
  ],
39934
40176
  default: "dense"
40177
+ },
40178
+ relationsData: {
40179
+ types: [
40180
+ "object"
40181
+ ],
40182
+ description: "Relation display data: { fieldName: [{value, label}] } \u2014 injected server-side by the runtime (relation-option injection) or bound by compiled codegen; resolves stored foreign ids to display names for a column whose field is relation-typed. Same contract DetailPanel takes.",
40183
+ mapValue: {
40184
+ types: [
40185
+ "array"
40186
+ ],
40187
+ items: {
40188
+ types: [
40189
+ "object"
40190
+ ],
40191
+ properties: {
40192
+ value: {
40193
+ types: [
40194
+ "string"
40195
+ ]
40196
+ },
40197
+ label: {
40198
+ types: [
40199
+ "string"
40200
+ ]
40201
+ },
40202
+ description: {
40203
+ types: [
40204
+ "string"
40205
+ ]
40206
+ },
40207
+ disabled: {
40208
+ types: [
40209
+ "boolean"
40210
+ ]
40211
+ }
40212
+ },
40213
+ required: [
40214
+ "value",
40215
+ "label"
40216
+ ]
40217
+ }
40218
+ }
39935
40219
  }
39936
40220
  }
39937
40221
  },
@@ -40513,6 +40797,7 @@ var patterns_registry_default = {
40513
40797
  "code-runner-panel": {
40514
40798
  type: "code-runner-panel",
40515
40799
  category: "display",
40800
+ sourceFile: "components/core/organisms/CodeRunnerPanel.tsx",
40516
40801
  tier: "organisms",
40517
40802
  family: "core",
40518
40803
  description: "CodeRunnerPanel component",
@@ -40550,7 +40835,6 @@ var patterns_registry_default = {
40550
40835
  "function"
40551
40836
  ],
40552
40837
  description: "Simulate executing the code. Omit to render a read-only block. Real execution is a separate future track \u2014 this callback supplies deterministic simulated output for UI feedback.",
40553
- kind: "callback",
40554
40838
  callbackArgs: [
40555
40839
  {
40556
40840
  name: "code",
@@ -40577,6 +40861,7 @@ var patterns_registry_default = {
40577
40861
  "segment-renderer": {
40578
40862
  type: "segment-renderer",
40579
40863
  category: "display",
40864
+ sourceFile: "components/core/organisms/SegmentRenderer.tsx",
40580
40865
  tier: "organisms",
40581
40866
  family: "core",
40582
40867
  description: "SegmentRenderer component",
@@ -40668,7 +40953,6 @@ var patterns_registry_default = {
40668
40953
  "function"
40669
40954
  ],
40670
40955
  description: "Simulate executing runnable code blocks. Omit to render runnable blocks as read-only. Real execution is a future track.",
40671
- kind: "callback",
40672
40956
  callbackArgs: [
40673
40957
  {
40674
40958
  name: "code",
@@ -40686,7 +40970,6 @@ var patterns_registry_default = {
40686
40970
  "function"
40687
40971
  ],
40688
40972
  description: "Optional render slot for `visualization` segment types. When not provided, visualization segments are silently skipped. Callers can wire this to any custom component or orbital generator.",
40689
- kind: "callback",
40690
40973
  callbackArgs: [
40691
40974
  {
40692
40975
  name: "type",
@@ -41240,6 +41523,7 @@ var patterns_registry_default = {
41240
41523
  "canvas-2d": {
41241
41524
  type: "canvas-2d",
41242
41525
  category: "game",
41526
+ sourceFile: "components/game/molecules/Canvas2D.tsx",
41243
41527
  tier: "molecules",
41244
41528
  family: "game",
41245
41529
  description: "Canvas2D component",
@@ -41386,7 +41670,10 @@ var patterns_registry_default = {
41386
41670
  "1:1",
41387
41671
  "16:9",
41388
41672
  "5:7",
41389
- "8:1"
41673
+ "8:1",
41674
+ "4:1",
41675
+ "5:3",
41676
+ "1:2"
41390
41677
  ]
41391
41678
  },
41392
41679
  atlas: {
@@ -41481,10 +41768,12 @@ var patterns_registry_default = {
41481
41768
  "object"
41482
41769
  ],
41483
41770
  description: "Maps a keydown `e.code` \u2192 the board's SEMANTIC event (device-agnostic input).",
41771
+ kind: "event-map",
41484
41772
  mapValue: {
41485
41773
  types: [
41486
41774
  "string"
41487
- ]
41775
+ ],
41776
+ kind: "event"
41488
41777
  }
41489
41778
  },
41490
41779
  keyUpMap: {
@@ -41492,10 +41781,12 @@ var patterns_registry_default = {
41492
41781
  "object"
41493
41782
  ],
41494
41783
  description: "Maps a keyup `e.code` \u2192 the board's SEMANTIC event.",
41784
+ kind: "event-map",
41495
41785
  mapValue: {
41496
41786
  types: [
41497
41787
  "string"
41498
- ]
41788
+ ],
41789
+ kind: "event"
41499
41790
  }
41500
41791
  },
41501
41792
  editable: {
@@ -41698,6 +41989,7 @@ var patterns_registry_default = {
41698
41989
  "control-grid": {
41699
41990
  type: "control-grid",
41700
41991
  category: "game",
41992
+ sourceFile: "components/game/molecules/ControlGrid.tsx",
41701
41993
  tier: "molecules",
41702
41994
  family: "game",
41703
41995
  description: "ControlGrid component",
@@ -41809,7 +42101,10 @@ var patterns_registry_default = {
41809
42101
  "1:1",
41810
42102
  "16:9",
41811
42103
  "5:7",
41812
- "8:1"
42104
+ "8:1",
42105
+ "4:1",
42106
+ "5:3",
42107
+ "1:2"
41813
42108
  ]
41814
42109
  },
41815
42110
  atlas: {
@@ -41952,10 +42247,12 @@ var patterns_registry_default = {
41952
42247
  "object"
41953
42248
  ],
41954
42249
  description: 'Per-direction PRESS \u2192 the board\'s SEMANTIC event (kind="dpad"), e.g. `{ left: "LEFT", right: "RIGHT", up: "JUMP" }`. Lets the d-pad emit the SAME intent events as the keyboard so the FSM stays device-agnostic.',
42250
+ kind: "event-map",
41955
42251
  mapValue: {
41956
42252
  types: [
41957
42253
  "string"
41958
- ]
42254
+ ],
42255
+ kind: "event"
41959
42256
  }
41960
42257
  },
41961
42258
  directionReleaseEvents: {
@@ -41963,10 +42260,12 @@ var patterns_registry_default = {
41963
42260
  "object"
41964
42261
  ],
41965
42262
  description: 'Per-direction RELEASE \u2192 semantic event, e.g. `{ left: "STOP", right: "STOP" }`. Omit a direction to ignore its release.',
42263
+ kind: "event-map",
41966
42264
  mapValue: {
41967
42265
  types: [
41968
42266
  "string"
41969
- ]
42267
+ ],
42268
+ kind: "event"
41970
42269
  }
41971
42270
  },
41972
42271
  directionAssets: {
@@ -42038,7 +42337,10 @@ var patterns_registry_default = {
42038
42337
  "1:1",
42039
42338
  "16:9",
42040
42339
  "5:7",
42041
- "8:1"
42340
+ "8:1",
42341
+ "4:1",
42342
+ "5:3",
42343
+ "1:2"
42042
42344
  ]
42043
42345
  },
42044
42346
  atlas: {
@@ -42109,6 +42411,7 @@ var patterns_registry_default = {
42109
42411
  "game-icon": {
42110
42412
  type: "game-icon",
42111
42413
  category: "game",
42414
+ sourceFile: "components/core/atoms/GameIcon.tsx",
42112
42415
  tier: "atoms",
42113
42416
  family: "core",
42114
42417
  description: "GameIcon component",
@@ -42184,7 +42487,10 @@ var patterns_registry_default = {
42184
42487
  "1:1",
42185
42488
  "16:9",
42186
42489
  "5:7",
42187
- "8:1"
42490
+ "8:1",
42491
+ "4:1",
42492
+ "5:3",
42493
+ "1:2"
42188
42494
  ]
42189
42495
  },
42190
42496
  atlas: {
@@ -45908,6 +46214,7 @@ var patterns_registry_default = {
45908
46214
  "math-canvas": {
45909
46215
  type: "math-canvas",
45910
46216
  category: "learning",
46217
+ sourceFile: "components/learning/molecules/MathCanvas.tsx",
45911
46218
  tier: "molecules",
45912
46219
  family: "learning",
45913
46220
  description: "MathCanvas component",
@@ -46939,10 +47246,12 @@ var patterns_registry_default = {
46939
47246
  "object"
46940
47247
  ],
46941
47248
  description: "Maps a keydown `e.code` \u2192 the board's SEMANTIC event (device-agnostic input), emitted as `UI:{event}` \u2014 same contract as the game canvas keyMap.",
47249
+ kind: "event-map",
46942
47250
  mapValue: {
46943
47251
  types: [
46944
47252
  "string"
46945
- ]
47253
+ ],
47254
+ kind: "event"
46946
47255
  }
46947
47256
  },
46948
47257
  keyUpMap: {
@@ -46950,10 +47259,12 @@ var patterns_registry_default = {
46950
47259
  "object"
46951
47260
  ],
46952
47261
  description: "Maps a keyup `e.code` \u2192 the board's SEMANTIC event.",
47262
+ kind: "event-map",
46953
47263
  mapValue: {
46954
47264
  types: [
46955
47265
  "string"
46956
- ]
47266
+ ],
47267
+ kind: "event"
46957
47268
  }
46958
47269
  },
46959
47270
  isLoading: {
@@ -50482,6 +50793,7 @@ var patterns_registry_default = {
50482
50793
  "draw-sprite": {
50483
50794
  type: "draw-sprite",
50484
50795
  category: "game",
50796
+ sourceFile: "components/game/atoms/DrawSprite.tsx",
50485
50797
  tier: "atoms",
50486
50798
  family: "game",
50487
50799
  description: "DrawSprite component",
@@ -50603,7 +50915,10 @@ var patterns_registry_default = {
50603
50915
  "1:1",
50604
50916
  "16:9",
50605
50917
  "5:7",
50606
- "8:1"
50918
+ "8:1",
50919
+ "4:1",
50920
+ "5:3",
50921
+ "1:2"
50607
50922
  ]
50608
50923
  },
50609
50924
  atlas: {
@@ -51587,6 +51902,7 @@ var patterns_registry_default = {
51587
51902
  "draw-sprite-layer": {
51588
51903
  type: "draw-sprite-layer",
51589
51904
  category: "game",
51905
+ sourceFile: "components/game/molecules/DrawSpriteLayer.tsx",
51590
51906
  tier: "molecules",
51591
51907
  family: "game",
51592
51908
  description: "DrawSpriteLayer component",
@@ -51729,7 +52045,10 @@ var patterns_registry_default = {
51729
52045
  "1:1",
51730
52046
  "16:9",
51731
52047
  "5:7",
51732
- "8:1"
52048
+ "8:1",
52049
+ "4:1",
52050
+ "5:3",
52051
+ "1:2"
51733
52052
  ]
51734
52053
  },
51735
52054
  atlas: {
@@ -52035,6 +52354,7 @@ var patterns_registry_default = {
52035
52354
  canvas: {
52036
52355
  type: "canvas",
52037
52356
  category: "game",
52357
+ sourceFile: "components/game/molecules/Canvas.tsx",
52038
52358
  tier: "molecules",
52039
52359
  family: "game",
52040
52360
  description: "Canvas component",
@@ -52274,7 +52594,10 @@ var patterns_registry_default = {
52274
52594
  "1:1",
52275
52595
  "16:9",
52276
52596
  "5:7",
52277
- "8:1"
52597
+ "8:1",
52598
+ "4:1",
52599
+ "5:3",
52600
+ "1:2"
52278
52601
  ]
52279
52602
  },
52280
52603
  atlas: {
@@ -52691,10 +53014,12 @@ var patterns_registry_default = {
52691
53014
  "object"
52692
53015
  ],
52693
53016
  description: "keyMap prop",
53017
+ kind: "event-map",
52694
53018
  mapValue: {
52695
53019
  types: [
52696
53020
  "string"
52697
- ]
53021
+ ],
53022
+ kind: "event"
52698
53023
  }
52699
53024
  },
52700
53025
  keyUpMap: {
@@ -52702,10 +53027,12 @@ var patterns_registry_default = {
52702
53027
  "object"
52703
53028
  ],
52704
53029
  description: "keyUpMap prop",
53030
+ kind: "event-map",
52705
53031
  mapValue: {
52706
53032
  types: [
52707
53033
  "string"
52708
- ]
53034
+ ],
53035
+ kind: "event"
52709
53036
  }
52710
53037
  },
52711
53038
  editable: {
@@ -54707,6 +55034,7 @@ var patterns_registry_default = {
54707
55034
  "draw-fx-layer": {
54708
55035
  type: "draw-fx-layer",
54709
55036
  category: "game",
55037
+ sourceFile: "components/game/molecules/DrawFxLayer.tsx",
54710
55038
  tier: "molecules",
54711
55039
  family: "game",
54712
55040
  description: "DrawFxLayer component",
@@ -55082,7 +55410,10 @@ var patterns_registry_default = {
55082
55410
  "1:1",
55083
55411
  "16:9",
55084
55412
  "5:7",
55085
- "8:1"
55413
+ "8:1",
55414
+ "4:1",
55415
+ "5:3",
55416
+ "1:2"
55086
55417
  ]
55087
55418
  },
55088
55419
  atlas: {
@@ -56500,7 +56831,10 @@ var patterns_registry_default = {
56500
56831
  "1:1",
56501
56832
  "16:9",
56502
56833
  "5:7",
56503
- "8:1"
56834
+ "8:1",
56835
+ "4:1",
56836
+ "5:3",
56837
+ "1:2"
56504
56838
  ]
56505
56839
  },
56506
56840
  atlas: {
@@ -56632,7 +56966,7 @@ var patterns_registry_default = {
56632
56966
  types: [
56633
56967
  "array"
56634
56968
  ],
56635
- description: "The skeleton (bind pose; FK chain via `parent` names).",
56969
+ description: "The skeleton (bind pose; FK chain via `parent` names). Falls back to the rigbundle's `bones` when empty.",
56636
56970
  required: true,
56637
56971
  items: {
56638
56972
  types: [
@@ -56715,6 +57049,12 @@ var patterns_registry_default = {
56715
57049
  "frames"
56716
57050
  ]
56717
57051
  },
57052
+ clipName: {
57053
+ types: [
57054
+ "string"
57055
+ ],
57056
+ description: "Named clip inside the rigbundle at `meshUrl` (`clips[clipName].frames`); used when `clip` is absent. Empty/unknown = no clip."
57057
+ },
56718
57058
  frame: {
56719
57059
  types: [
56720
57060
  "number"
@@ -56782,7 +57122,7 @@ var patterns_registry_default = {
56782
57122
  // src/patterns/integrators-registry.json
56783
57123
  var integrators_registry_default = {
56784
57124
  version: "1.0.0",
56785
- exportedAt: "2026-09-10T08:46:50.227Z",
57125
+ exportedAt: "2026-09-12T17:27:32.966Z",
56786
57126
  integrators: {
56787
57127
  github: {
56788
57128
  name: "github",
@@ -60391,9 +60731,9 @@ var integrators_registry_default = {
60391
60731
  },
60392
60732
  {
60393
60733
  name: "rig",
60394
- type: "string",
60734
+ type: "object",
60395
60735
  required: true,
60396
- description: "Rig type to build (e.g. 'humanoid', 'quadruped')."
60736
+ description: "The rig definition (parts, boxes, pivots, \u2026) as JSON."
60397
60737
  }
60398
60738
  ],
60399
60739
  responseShape: {
@@ -60416,9 +60756,9 @@ var integrators_registry_default = {
60416
60756
  },
60417
60757
  {
60418
60758
  name: "rig",
60419
- type: "string",
60759
+ type: "object",
60420
60760
  required: true,
60421
- description: "Rig type."
60761
+ description: "The rig definition (parts, boxes, pivots, \u2026) as JSON."
60422
60762
  },
60423
60763
  {
60424
60764
  name: "preset",
@@ -60431,9 +60771,336 @@ var integrators_registry_default = {
60431
60771
  type: "string",
60432
60772
  required: true,
60433
60773
  description: "Output directory for rendered files."
60774
+ },
60775
+ {
60776
+ name: "mode",
60777
+ type: "string",
60778
+ required: false,
60779
+ description: "Render path: 'mesh' (skinned, deforming) or 'cutout' (rigid per-part layers). Defaults to 'mesh'."
60780
+ },
60781
+ {
60782
+ name: "supersample",
60783
+ type: "number",
60784
+ required: false,
60785
+ description: "Supersampling factor for the cutout path. Defaults to 1."
60434
60786
  }
60435
60787
  ],
60436
- responseShape: {}
60788
+ responseShape: {
60789
+ outdir: "string",
60790
+ frames: "number",
60791
+ framePaths: "string[]",
60792
+ sheet: "string",
60793
+ gif: "string",
60794
+ atlas: "string"
60795
+ }
60796
+ },
60797
+ {
60798
+ name: "listPresets",
60799
+ description: "List the available animation presets (name, fps, frame count, bone roles) from the local rigger service.",
60800
+ params: [],
60801
+ responseShape: {
60802
+ presets: {
60803
+ type: "array",
60804
+ items: {
60805
+ type: "object",
60806
+ properties: {
60807
+ name: {
60808
+ type: "string",
60809
+ required: true
60810
+ },
60811
+ path: {
60812
+ type: "string",
60813
+ required: true
60814
+ },
60815
+ fps: {
60816
+ type: "number",
60817
+ required: true
60818
+ },
60819
+ frames: {
60820
+ type: "number",
60821
+ required: true
60822
+ },
60823
+ bones: {
60824
+ type: "object[]",
60825
+ required: true
60826
+ }
60827
+ }
60828
+ }
60829
+ }
60830
+ }
60831
+ },
60832
+ {
60833
+ name: "loadRig",
60834
+ description: "Load a rig file, resolving `cloneOf` parts to concrete box/pivot geometry.",
60835
+ params: [
60836
+ {
60837
+ name: "rigPath",
60838
+ type: "string",
60839
+ required: true,
60840
+ description: "Path to the rig JSON file."
60841
+ }
60842
+ ],
60843
+ responseShape: {
60844
+ rig: "object",
60845
+ resolved: "object"
60846
+ }
60847
+ },
60848
+ {
60849
+ name: "saveRig",
60850
+ description: "Save a rig file; the server validates it and rejects a malformed part.",
60851
+ params: [
60852
+ {
60853
+ name: "rigPath",
60854
+ type: "string",
60855
+ required: true,
60856
+ description: "Path to write the rig JSON file."
60857
+ },
60858
+ {
60859
+ name: "rig",
60860
+ type: "object",
60861
+ required: true,
60862
+ description: "The rig definition (parts, boxes, pivots, \u2026) as JSON."
60863
+ }
60864
+ ],
60865
+ responseShape: {
60866
+ rigPath: "string",
60867
+ parts: "number"
60868
+ }
60869
+ },
60870
+ {
60871
+ name: "ownership",
60872
+ description: "Render the per-part pixel ownership map for a rig over a source image.",
60873
+ params: [
60874
+ {
60875
+ name: "imagePath",
60876
+ type: "string",
60877
+ required: true,
60878
+ description: "Path to the source image."
60879
+ },
60880
+ {
60881
+ name: "rig",
60882
+ type: "object",
60883
+ required: true,
60884
+ description: "The rig definition (parts, boxes, pivots, \u2026) as JSON."
60885
+ },
60886
+ {
60887
+ name: "outPath",
60888
+ type: "string",
60889
+ required: true,
60890
+ description: "Path to write the ownership-map PNG."
60891
+ }
60892
+ ],
60893
+ responseShape: {
60894
+ outPath: "string",
60895
+ legend: {
60896
+ type: "array",
60897
+ items: {
60898
+ type: "object",
60899
+ properties: {
60900
+ name: {
60901
+ type: "string",
60902
+ required: true
60903
+ },
60904
+ color: {
60905
+ type: "string",
60906
+ required: true
60907
+ }
60908
+ }
60909
+ }
60910
+ }
60911
+ }
60912
+ },
60913
+ {
60914
+ name: "buildLayers",
60915
+ description: "Build per-part cutout layer images (name, box, z-order, pivot) from a source image and rig.",
60916
+ params: [
60917
+ {
60918
+ name: "imagePath",
60919
+ type: "string",
60920
+ required: true,
60921
+ description: "Path to the source image."
60922
+ },
60923
+ {
60924
+ name: "rig",
60925
+ type: "object",
60926
+ required: true,
60927
+ description: "The rig definition (parts, boxes, pivots, \u2026) as JSON."
60928
+ },
60929
+ {
60930
+ name: "outDir",
60931
+ type: "string",
60932
+ required: true,
60933
+ description: "Output directory for the layer images."
60934
+ }
60935
+ ],
60936
+ responseShape: {
60937
+ layers: {
60938
+ type: "array",
60939
+ items: {
60940
+ type: "object",
60941
+ properties: {
60942
+ name: {
60943
+ type: "string",
60944
+ required: true
60945
+ },
60946
+ path: {
60947
+ type: "string",
60948
+ required: true
60949
+ },
60950
+ x: {
60951
+ type: "number",
60952
+ required: true
60953
+ },
60954
+ y: {
60955
+ type: "number",
60956
+ required: true
60957
+ },
60958
+ w: {
60959
+ type: "number",
60960
+ required: true
60961
+ },
60962
+ h: {
60963
+ type: "number",
60964
+ required: true
60965
+ },
60966
+ z: {
60967
+ type: "number",
60968
+ required: true
60969
+ },
60970
+ pivot: {
60971
+ type: "[number, number]",
60972
+ required: true
60973
+ },
60974
+ isRest: {
60975
+ type: "boolean",
60976
+ required: true
60977
+ }
60978
+ }
60979
+ }
60980
+ }
60981
+ }
60982
+ },
60983
+ {
60984
+ name: "pose",
60985
+ description: "Sample a pose/animation preset into per-frame, per-part transforms for a rig.",
60986
+ params: [
60987
+ {
60988
+ name: "imagePath",
60989
+ type: "string",
60990
+ required: true,
60991
+ description: "Path to the source image."
60992
+ },
60993
+ {
60994
+ name: "rig",
60995
+ type: "object",
60996
+ required: true,
60997
+ description: "The rig definition (parts, boxes, pivots, \u2026) as JSON."
60998
+ },
60999
+ {
61000
+ name: "roles",
61001
+ type: "object",
61002
+ required: true,
61003
+ description: "Map of part name to preset bone role.",
61004
+ mapValue: {
61005
+ type: "string"
61006
+ }
61007
+ },
61008
+ {
61009
+ name: "preset",
61010
+ type: "string",
61011
+ required: false,
61012
+ description: "Animation preset name."
61013
+ },
61014
+ {
61015
+ name: "overrides",
61016
+ type: "object",
61017
+ required: false,
61018
+ description: "Per-part motion overrides applied over the preset."
61019
+ }
61020
+ ],
61021
+ responseShape: {
61022
+ fps: "number",
61023
+ frames: {
61024
+ type: "array",
61025
+ items: {
61026
+ type: "object",
61027
+ mapValue: {
61028
+ type: "object",
61029
+ properties: {
61030
+ angle: {
61031
+ type: "number",
61032
+ required: true
61033
+ },
61034
+ bx: {
61035
+ type: "number",
61036
+ required: true
61037
+ },
61038
+ by: {
61039
+ type: "number",
61040
+ required: true
61041
+ }
61042
+ }
61043
+ }
61044
+ }
61045
+ }
61046
+ }
61047
+ },
61048
+ {
61049
+ name: "generate",
61050
+ description: "Generate one image on the local image server (text-to-image, or a Kontext edit conditioned on `sourcePath`).",
61051
+ params: [
61052
+ {
61053
+ name: "model",
61054
+ type: "'z-image-turbo' | 'kontext'",
61055
+ required: true,
61056
+ description: "Generation model: 'z-image-turbo' (text-to-image) or 'kontext' (edit; requires sourcePath)."
61057
+ },
61058
+ {
61059
+ name: "prompt",
61060
+ type: "string",
61061
+ required: true,
61062
+ description: "The generation/edit prompt."
61063
+ },
61064
+ {
61065
+ name: "seed",
61066
+ type: "number",
61067
+ required: false,
61068
+ description: "Random seed; omit for a fresh one each call."
61069
+ },
61070
+ {
61071
+ name: "size",
61072
+ type: "string",
61073
+ required: false,
61074
+ description: "Output image size, e.g. '1024x1024'. Defaults to '1024x1024'."
61075
+ },
61076
+ {
61077
+ name: "steps",
61078
+ type: "number",
61079
+ required: false,
61080
+ description: "Diffusion step count."
61081
+ },
61082
+ {
61083
+ name: "sourcePath",
61084
+ type: "string",
61085
+ required: false,
61086
+ description: "Path to the source image to edit; REQUIRED for 'kontext'."
61087
+ },
61088
+ {
61089
+ name: "outDir",
61090
+ type: "string",
61091
+ required: true,
61092
+ description: "Output directory the generated PNG is written under."
61093
+ }
61094
+ ],
61095
+ responseShape: {
61096
+ outPath: "string",
61097
+ model: "string",
61098
+ prompt: "string",
61099
+ seed: "number | null",
61100
+ size: "string",
61101
+ sourcePath: "string | null",
61102
+ elapsedMs: "number"
61103
+ }
60437
61104
  }
60438
61105
  ]
60439
61106
  }
@@ -60455,7 +61122,7 @@ var integrators_registry_default = {
60455
61122
  // src/patterns/component-mapping.json
60456
61123
  var component_mapping_default = {
60457
61124
  version: "1.0.0",
60458
- exportedAt: "2026-09-10T08:51:20.514Z",
61125
+ exportedAt: "2026-09-12T18:14:02.248Z",
60459
61126
  mappings: {
60460
61127
  "page-header": {
60461
61128
  component: "PageHeader",
@@ -61905,7 +62572,7 @@ var component_mapping_default = {
61905
62572
  // src/patterns/event-contracts.json
61906
62573
  var event_contracts_default = {
61907
62574
  version: "1.0.0",
61908
- exportedAt: "2026-09-10T08:51:20.514Z",
62575
+ exportedAt: "2026-09-12T18:14:02.248Z",
61909
62576
  contracts: {
61910
62577
  form: {
61911
62578
  emits: [
@@ -64006,6 +64673,14 @@ var KNOWN_VALIDATION_ERROR_CODES = {
64006
64673
  ORB_BINDING_TRAIT_UNKNOWN: "ORB_BINDING_TRAIT_UNKNOWN",
64007
64674
  ORB_BINDING_UNKNOWN_ENTITY: "ORB_BINDING_UNKNOWN_ENTITY",
64008
64675
  ORB_BINDING_UNKNOWN_ROOT: "ORB_BINDING_UNKNOWN_ROOT",
64676
+ // Closed circuit (`ORB_CIRCUIT_*`, `phases/validation/closed_circuit.rs`).
64677
+ // Pre-existing gap: most other ORB_CIRCUIT_* codes the compiler already
64678
+ // emits (e.g. ORB_CIRCUIT_FAILURE_ARM_MISSING, ORB_CIRCUIT_DEAD_BODILESS_ACTION)
64679
+ // are not yet documented here — out of this task's scope, ledgered for a
64680
+ // follow-up sweep.
64681
+ ORB_CIRCUIT_VIEWER_STRANDED: "ORB_CIRCUIT_VIEWER_STRANDED",
64682
+ // Embed / composition (`@trait.X`, `phases/embed_graph.rs`)
64683
+ ORB_EMBED_CONFIG_FORWARD_MULTI_REFERRER: "ORB_EMBED_CONFIG_FORWARD_MULTI_REFERRER",
64009
64684
  // Entity / field
64010
64685
  ORB_E_DUPLICATE_FIELD: "ORB_E_DUPLICATE_FIELD",
64011
64686
  ORB_E_EMPTY_ENUM_VALUES: "ORB_E_EMPTY_ENUM_VALUES",
@@ -64016,6 +64691,9 @@ var KNOWN_VALIDATION_ERROR_CODES = {
64016
64691
  ORB_E_MISSING_COLLECTION: "ORB_E_MISSING_COLLECTION",
64017
64692
  ORB_E_MISSING_NAME: "ORB_E_MISSING_NAME",
64018
64693
  ORB_E_NO_FIELDS: "ORB_E_NO_FIELDS",
64694
+ // Entity ownership / access (`owner_fields_from_schema`,
64695
+ // `phases/validation/entity_access.rs`)
64696
+ ORB_ENTITY_OWNER_COLUMN_UNSCOPED: "ORB_ENTITY_OWNER_COLUMN_UNSCOPED",
64019
64697
  // Effect / emit
64020
64698
  ORB_EFF_CALL_SERVICE_MISSING_ACTION: "ORB_EFF_CALL_SERVICE_MISSING_ACTION",
64021
64699
  ORB_EFF_CALL_SERVICE_MISSING_HANDLERS: "ORB_EFF_CALL_SERVICE_MISSING_HANDLERS",
@@ -64046,6 +64724,8 @@ var KNOWN_VALIDATION_ERROR_CODES = {
64046
64724
  // Orbital
64047
64725
  ORB_O_MISSING_PAGES: "ORB_O_MISSING_PAGES",
64048
64726
  // Page
64727
+ ORB_PAGE_SECOND_CONTENT_BODY: "ORB_PAGE_SECOND_CONTENT_BODY",
64728
+ ORB_PAGE_UNREACHABLE: "ORB_PAGE_UNREACHABLE",
64049
64729
  ORB_P_DUPLICATE_PATH: "ORB_P_DUPLICATE_PATH",
64050
64730
  ORB_P_EMPTY_TRAITS: "ORB_P_EMPTY_TRAITS",
64051
64731
  ORB_P_INVALID_PATH: "ORB_P_INVALID_PATH",
@@ -64061,6 +64741,14 @@ var KNOWN_VALIDATION_ERROR_CODES = {
64061
64741
  ORB_QUERY_UNKNOWN_SINGLETON: "ORB_QUERY_UNKNOWN_SINGLETON",
64062
64742
  ORB_QUERY_UNSUPPORTED_PATTERN: "ORB_QUERY_UNSUPPORTED_PATTERN",
64063
64743
  ORB_QUERY_UNUSED_SINGLETON: "ORB_QUERY_UNUSED_SINGLETON",
64744
+ // Render config vs. linked-entity data shape (`config_type.rs`)
64745
+ ORB_RENDER_GROUPBY_ENUM_COLUMN_GAP: "ORB_RENDER_GROUPBY_ENUM_COLUMN_GAP",
64746
+ // A render-ui embeds `@config.<knob>` where `<knob>` is a `trait`-typed
64747
+ // config field whose resolved value is `none` (unbound), unguarded by an
64748
+ // `(if @config.<knob> ...)` wrapping it in the same effect list — an
64749
+ // unbound trait knob's embed renders nothing (`trait_validator.rs`,
64750
+ // owner ruling 2026-09-13: a `trait`-typed config knob may be `none`).
64751
+ ORB_RENDER_UNBOUND_TRAIT_KNOB_EMBEDDED: "ORB_RENDER_UNBOUND_TRAIT_KNOB_EMBEDDED",
64064
64752
  // Render-UI binding + prop validation
64065
64753
  ORB_RUI_BINDING_TYPE_MISMATCH: "ORB_RUI_BINDING_TYPE_MISMATCH",
64066
64754
  ORB_RUI_ELEMENT_SHAPE_MISMATCH: "ORB_RUI_ELEMENT_SHAPE_MISMATCH",
@@ -64079,6 +64767,8 @@ var KNOWN_VALIDATION_ERROR_CODES = {
64079
64767
  ORB_S_EMPTY_VERSION: "ORB_S_EMPTY_VERSION",
64080
64768
  ORB_S_MISSING_NAME: "ORB_S_MISSING_NAME",
64081
64769
  ORB_S_NO_ORBITALS: "ORB_S_NO_ORBITALS",
64770
+ // Theme (app-level vs. per-orbital config pin, `theme.rs`)
64771
+ ORB_THEME_PIN_CONTRADICTS_APP: "ORB_THEME_PIN_CONTRADICTS_APP",
64082
64772
  // UI slots
64083
64773
  ORB_SLOT_CONTENTION: "ORB_SLOT_CONTENTION",
64084
64774
  ORB_SLOT_CONTENTION_RUNTIME: "ORB_SLOT_CONTENTION_RUNTIME",
@@ -64142,6 +64832,7 @@ var KNOWN_VALIDATION_ERROR_CODES = {
64142
64832
  ORB_X_DUPLICATE_ENTITY: "ORB_X_DUPLICATE_ENTITY",
64143
64833
  ORB_X_EVENT_COLLISION: "ORB_X_EVENT_COLLISION",
64144
64834
  ORB_X_INTERNAL_EVENT_EXPOSED: "ORB_X_INTERNAL_EVENT_EXPOSED",
64835
+ ORB_X_LISTEN_SOURCE_NEVER_PRODUCES: "ORB_X_LISTEN_SOURCE_NEVER_PRODUCES",
64145
64836
  ORB_X_LISTEN_SOURCE_UNRESOLVED: "ORB_X_LISTEN_SOURCE_UNRESOLVED",
64146
64837
  ORB_X_MISSING_ORBITAL_NAME: "ORB_X_MISSING_ORBITAL_NAME",
64147
64838
  ORB_X_ORPHAN_LISTENER: "ORB_X_ORPHAN_LISTENER",
@@ -64854,98 +65545,6 @@ function getNestedValue(obj, path) {
64854
65545
  return value;
64855
65546
  }
64856
65547
 
64857
- // src/page-content-owner.ts
64858
- function writesContentMain(effects) {
64859
- const scan = (node) => {
64860
- if (!Array.isArray(node)) return false;
64861
- if (isMainSlotRenderUi(node)) return isContentBodyPattern(node[2]);
64862
- return node.some(scan);
64863
- };
64864
- return (effects ?? []).some(scan);
64865
- }
64866
- function isContentMainWriter(trait) {
64867
- return (trait.stateMachine?.transitions ?? []).some((transition) => writesContentMain(transition.effects)) || (trait.ticks ?? []).some((tick) => writesContentMain(tick.effects)) || writesContentMain(trait.initialEffects);
64868
- }
64869
- function reduceToOwners(candidates, configAdjacency, embedAdjacency) {
64870
- const reach = (start, adjacency) => {
64871
- const out = /* @__PURE__ */ new Set();
64872
- const walk = [start];
64873
- const seen = /* @__PURE__ */ new Set();
64874
- while (walk.length > 0) {
64875
- const from = walk.shift();
64876
- if (from === void 0 || seen.has(from)) continue;
64877
- seen.add(from);
64878
- for (const target of adjacency.get(from) ?? []) {
64879
- out.add(target);
64880
- walk.push(target);
64881
- }
64882
- }
64883
- return out;
64884
- };
64885
- const members = [...candidates];
64886
- const dropped = /* @__PURE__ */ new Set();
64887
- for (const a of members) {
64888
- const designates = reach(a, configAdjacency);
64889
- const contains = reach(a, embedAdjacency);
64890
- for (const b of members) {
64891
- if (a === b) continue;
64892
- if (designates.has(b)) dropped.add(a);
64893
- else if (contains.has(b)) dropped.add(b);
64894
- }
64895
- }
64896
- return members.filter((name) => !dropped.has(name));
64897
- }
64898
- function resolvePageContentOwner(page, traits, configAdjacency, embedAdjacency = configAdjacency) {
64899
- const declared = [];
64900
- for (const ref2 of page.traits ?? []) {
64901
- const name = typeof ref2 === "string" ? ref2 : ref2.ref;
64902
- if (typeof name === "string" && name.length > 0) declared.push(name);
64903
- }
64904
- if (declared.length === 0) return { kind: "none" };
64905
- const onPage = new Set(declared);
64906
- const channel = /* @__PURE__ */ new Set();
64907
- const seen = /* @__PURE__ */ new Set();
64908
- const queue = declared.filter((name) => onPage.has(name));
64909
- while (queue.length > 0) {
64910
- const from = queue.shift();
64911
- if (from === void 0 || seen.has(from)) continue;
64912
- seen.add(from);
64913
- for (const target of configAdjacency.get(from) ?? []) {
64914
- const trait = traits.get(target);
64915
- if (trait === void 0) continue;
64916
- if (isContentMainWriter(trait)) channel.add(target);
64917
- queue.push(target);
64918
- }
64919
- }
64920
- const terminal = reduceToOwners(channel, configAdjacency, embedAdjacency);
64921
- if (terminal.length === 1) {
64922
- const [only] = terminal;
64923
- if (only !== void 0) return { kind: "channel", trait: only };
64924
- }
64925
- if (terminal.length > 1) return { kind: "ambiguous", candidates: terminal.sort() };
64926
- const writers = declared.filter((name) => {
64927
- const trait = traits.get(name);
64928
- return trait !== void 0 && isContentMainWriter(trait);
64929
- });
64930
- const distinct = reduceToOwners(new Set(writers), configAdjacency, embedAdjacency);
64931
- if (distinct.length === 0) return { kind: "none" };
64932
- if (distinct.length === 1) {
64933
- const [only] = distinct;
64934
- if (only !== void 0) return { kind: "sole-writer", trait: only };
64935
- }
64936
- return { kind: "ambiguous", candidates: distinct.sort() };
64937
- }
64938
- function resolveContentOwners(orbital, traits, configAdjacency) {
64939
- const out = /* @__PURE__ */ new Map();
64940
- for (const ref2 of orbital.pages ?? []) {
64941
- if (isPageReference(ref2)) continue;
64942
- const path = ref2.path;
64943
- if (typeof path !== "string" || path.length === 0) continue;
64944
- out.set(path, resolvePageContentOwner(ref2, traits, configAdjacency));
64945
- }
64946
- return out;
64947
- }
64948
-
64949
65548
  // src/listen-payload-mapping.ts
64950
65549
  function applyListenPayloadMapping(payloadMapping, payload, evaluate) {
64951
65550
  if (!payloadMapping || !payload) return payload;
@@ -67381,6 +67980,13 @@ function nestedPayload(path, leaf) {
67381
67980
  function isPayloadObject(v) {
67382
67981
  return typeof v === "object" && v !== null && !Array.isArray(v) && !(v instanceof Date);
67383
67982
  }
67983
+ function extractArrayLenPath(ref2) {
67984
+ if (!Array.isArray(ref2) || ref2.length !== 2 || ref2[0] !== "array/len") return null;
67985
+ return extractPayloadFieldPath(ref2[1]);
67986
+ }
67987
+ function arrayOfLength(n) {
67988
+ return Array.from({ length: Math.max(0, n) }, (_, i) => ({ id: `mock-test-id-${i}` }));
67989
+ }
67384
67990
  var SYNTHESIZED_GUARD_OPERATORS = /* @__PURE__ */ new Set([
67385
67991
  "not-nil",
67386
67992
  "not_nil",
@@ -67605,23 +68211,31 @@ function buildGuardPayloads(guard) {
67605
68211
  if (objectGetPayload) return objectGetPayload;
67606
68212
  }
67607
68213
  if (op === "gt" || op === ">") {
67608
- const path = extractPayloadFieldPath(guard[1]);
68214
+ const arrayPath = extractArrayLenPath(guard[1]);
67609
68215
  const n = typeof guard[2] === "number" ? guard[2] : 0;
68216
+ if (arrayPath) return { pass: nestedPayload(arrayPath, arrayOfLength(n + 1)), fail: nestedPayload(arrayPath, arrayOfLength(n)) };
68217
+ const path = extractPayloadFieldPath(guard[1]);
67610
68218
  if (path) return { pass: nestedPayload(path, n + 1), fail: nestedPayload(path, n - 1) };
67611
68219
  }
67612
68220
  if (op === "gte" || op === ">=") {
67613
- const path = extractPayloadFieldPath(guard[1]);
68221
+ const arrayPath = extractArrayLenPath(guard[1]);
67614
68222
  const n = typeof guard[2] === "number" ? guard[2] : 0;
68223
+ if (arrayPath) return { pass: nestedPayload(arrayPath, arrayOfLength(n)), fail: nestedPayload(arrayPath, arrayOfLength(n - 1)) };
68224
+ const path = extractPayloadFieldPath(guard[1]);
67615
68225
  if (path) return { pass: nestedPayload(path, n), fail: nestedPayload(path, n - 1) };
67616
68226
  }
67617
68227
  if (op === "lt" || op === "<") {
67618
- const path = extractPayloadFieldPath(guard[1]);
68228
+ const arrayPath = extractArrayLenPath(guard[1]);
67619
68229
  const n = typeof guard[2] === "number" ? guard[2] : 0;
68230
+ if (arrayPath) return { pass: nestedPayload(arrayPath, arrayOfLength(n - 1)), fail: nestedPayload(arrayPath, arrayOfLength(n + 1)) };
68231
+ const path = extractPayloadFieldPath(guard[1]);
67620
68232
  if (path) return { pass: nestedPayload(path, n - 1), fail: nestedPayload(path, n + 1) };
67621
68233
  }
67622
68234
  if (op === "lte" || op === "<=") {
67623
- const path = extractPayloadFieldPath(guard[1]);
68235
+ const arrayPath = extractArrayLenPath(guard[1]);
67624
68236
  const n = typeof guard[2] === "number" ? guard[2] : 0;
68237
+ if (arrayPath) return { pass: nestedPayload(arrayPath, arrayOfLength(n)), fail: nestedPayload(arrayPath, arrayOfLength(n + 1)) };
68238
+ const path = extractPayloadFieldPath(guard[1]);
67625
68239
  if (path) return { pass: nestedPayload(path, n), fail: nestedPayload(path, n + 1) };
67626
68240
  }
67627
68241
  if (op === "and") {
@@ -68758,6 +69372,7 @@ var en_default = {
68758
69372
  location: "location",
68759
69373
  max: "max",
68760
69374
  maxAttempts: "maxAttempts",
69375
+ mergedFrom: "mergedFrom",
68761
69376
  min: "min",
68762
69377
  motion: "motion",
68763
69378
  mounts: "mounts",
@@ -68782,6 +69397,7 @@ var en_default = {
68782
69397
  patternPath: "patternPath",
68783
69398
  payload: "payload",
68784
69399
  payloadEntity: "payloadEntity",
69400
+ payloadFor: "payloadFor",
68785
69401
  payloadMapping: "payloadMapping",
68786
69402
  payloadSchema: "payloadSchema",
68787
69403
  persistence: "persistence",
@@ -69191,6 +69807,7 @@ var ar_default = {
69191
69807
  location: "\u0645\u0648\u0642\u0639",
69192
69808
  max: "\u0623\u0642\u0635\u0649",
69193
69809
  maxAttempts: "\u0623\u0642\u0635\u0649_\u0639\u062F\u062F_\u0645\u062D\u0627\u0648\u0644\u0627\u062A",
69810
+ mergedFrom: "\u0645\u062F\u0645\u062C_\u0645\u0646",
69194
69811
  min: "\u0623\u062F\u0646\u0649",
69195
69812
  motion: "\u062D\u0631\u0643\u0629",
69196
69813
  mounts: "\u062A\u0631\u0643\u064A\u0628\u0627\u062A",
@@ -69215,6 +69832,7 @@ var ar_default = {
69215
69832
  patternPath: "\u0645\u0633\u0627\u0631_\u0627\u0644\u0646\u0645\u0637",
69216
69833
  payload: "\u062D\u0645\u0648\u0644\u0629",
69217
69834
  payloadEntity: "\u0643\u064A\u0627\u0646_\u0627\u0644\u062D\u0645\u0648\u0644\u0629",
69835
+ payloadFor: "\u062D\u0645\u0648\u0644\u0629_\u0644\u0623\u062C\u0644",
69218
69836
  payloadMapping: "\u062A\u062E\u0637\u064A\u0637_\u0627\u0644\u062D\u0645\u0648\u0644\u0629",
69219
69837
  payloadSchema: "\u0645\u062E\u0637\u0637_\u0627\u0644\u062D\u0645\u0648\u0644\u0629",
69220
69838
  persistence: "\u0627\u0633\u062A\u0645\u0631\u0627\u0631\u064A\u0629",
@@ -69624,6 +70242,7 @@ var sl_default = {
69624
70242
  location: "lokacija",
69625
70243
  max: "najvec",
69626
70244
  maxAttempts: "najvecPoskusov",
70245
+ mergedFrom: "zdruzenoIz",
69627
70246
  min: "najmanj",
69628
70247
  motion: "gibanje",
69629
70248
  mounts: "priklopi",
@@ -69648,6 +70267,7 @@ var sl_default = {
69648
70267
  patternPath: "potVzorca",
69649
70268
  payload: "podatki",
69650
70269
  payloadEntity: "podatkiEntiteta",
70270
+ payloadFor: "podatkiZa",
69651
70271
  payloadMapping: "podatkiPreslikava",
69652
70272
  payloadSchema: "podatkiShema",
69653
70273
  persistence: "trajnost",
@@ -70542,6 +71162,6 @@ function reportIdenticalToEnglish(input) {
70542
71162
  return problems;
70543
71163
  }
70544
71164
 
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 };
71165
+ 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, 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, ref, registry, rehydrateKnobDefs, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, reportIdenticalToEnglish, requiresConfirmation, resolveConfigRefEventName, resolveDefaultViewer, resolveEntityView, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, signatureToParamsSchema, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, traitReferencesCallsitePayload, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
70546
71166
  //# sourceMappingURL=index.js.map
70547
71167
  //# sourceMappingURL=index.js.map