@almadar/core 10.45.0 → 10.47.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -600,6 +600,13 @@ var OrbitalEntitySchema = z.object({
600
600
  create_policy: SExprSchema.optional(),
601
601
  update_policy: SExprSchema.optional(),
602
602
  delete_policy: SExprSchema.optional(),
603
+ // Snake_case for the same cross-language reason as the four policies above.
604
+ access_waivers: z.object({
605
+ read: z.string().optional(),
606
+ create: z.string().optional(),
607
+ update: z.string().optional(),
608
+ delete: z.string().optional()
609
+ }).optional(),
603
610
  collection: z.string().optional(),
604
611
  fields: z.array(EntityFieldSchema).min(1, "At least one field is required"),
605
612
  instances: z.array(z.record(JsonValueSchema)).optional(),
@@ -2160,7 +2167,7 @@ function getInteractionModelForDomain(domain) {
2160
2167
  // src/patterns/patterns-registry.json
2161
2168
  var patterns_registry_default = {
2162
2169
  version: "1.0.0",
2163
- exportedAt: "2026-07-30T11:18:57.838Z",
2170
+ exportedAt: "2026-07-31T07:15:07.239Z",
2164
2171
  patterns: {
2165
2172
  "entity-table": {
2166
2173
  type: "entity-table",
@@ -37335,6 +37342,12 @@ var patterns_registry_default = {
37335
37342
  "string"
37336
37343
  ],
37337
37344
  description: "Solid backdrop colour (drawn when no `backgroundImage`)."
37345
+ },
37346
+ children: {
37347
+ types: [
37348
+ "node"
37349
+ ],
37350
+ description: "Declarative JSX drawable children (`<DrawShape .../>` composed in paint order). When `drawables` is empty, each child registers its descriptor via the drawable registry context and the host paints them."
37338
37351
  }
37339
37352
  },
37340
37353
  drawable: true,
@@ -41489,7 +41502,7 @@ var patterns_registry_default = {
41489
41502
  types: [
41490
41503
  "number"
41491
41504
  ],
41492
- description: "Fine nudge from the anchor point in world units."
41505
+ description: "Fine nudge in world units \u2014 applies to every shape kind except `cell` (rect/ellipse from their anchor point; poly/path from the projected top-left)."
41493
41506
  },
41494
41507
  offsetY: {
41495
41508
  types: [
@@ -41520,6 +41533,103 @@ var patterns_registry_default = {
41520
41533
  ],
41521
41534
  description: "fill prop"
41522
41535
  },
41536
+ gradient: {
41537
+ types: [
41538
+ "object"
41539
+ ],
41540
+ description: "Gradient fill in world units; overrides `fill` when present.",
41541
+ properties: {
41542
+ kind: {
41543
+ types: [
41544
+ "string"
41545
+ ],
41546
+ enumValues: [
41547
+ "linear",
41548
+ "radial",
41549
+ "conic"
41550
+ ]
41551
+ },
41552
+ from: {
41553
+ types: [
41554
+ "object"
41555
+ ]
41556
+ },
41557
+ to: {
41558
+ types: [
41559
+ "object"
41560
+ ]
41561
+ },
41562
+ center: {
41563
+ types: [
41564
+ "object"
41565
+ ]
41566
+ },
41567
+ radius: {
41568
+ types: [
41569
+ "number"
41570
+ ]
41571
+ },
41572
+ angle: {
41573
+ types: [
41574
+ "number"
41575
+ ]
41576
+ },
41577
+ stops: {
41578
+ types: [
41579
+ "array"
41580
+ ],
41581
+ items: {
41582
+ types: [
41583
+ "object"
41584
+ ]
41585
+ }
41586
+ }
41587
+ },
41588
+ propertyRequired: [
41589
+ "kind",
41590
+ "stops"
41591
+ ]
41592
+ },
41593
+ fillPattern: {
41594
+ types: [
41595
+ "object"
41596
+ ],
41597
+ description: "Repeating texture painted over the fill (grain / tiling image).",
41598
+ properties: {
41599
+ kind: {
41600
+ types: [
41601
+ "string"
41602
+ ],
41603
+ enumValues: [
41604
+ "noise",
41605
+ "image"
41606
+ ]
41607
+ },
41608
+ url: {
41609
+ types: [
41610
+ "string"
41611
+ ]
41612
+ },
41613
+ scale: {
41614
+ types: [
41615
+ "number"
41616
+ ]
41617
+ },
41618
+ alpha: {
41619
+ types: [
41620
+ "number"
41621
+ ]
41622
+ },
41623
+ color: {
41624
+ types: [
41625
+ "string"
41626
+ ]
41627
+ }
41628
+ },
41629
+ propertyRequired: [
41630
+ "kind"
41631
+ ]
41632
+ },
41523
41633
  stroke: {
41524
41634
  types: [
41525
41635
  "string"
@@ -41532,6 +41642,277 @@ var patterns_registry_default = {
41532
41642
  ],
41533
41643
  description: "strokeWidth prop"
41534
41644
  },
41645
+ strokeGradient: {
41646
+ types: [
41647
+ "object"
41648
+ ],
41649
+ description: "Gradient stroke in world units; overrides `stroke` when present.",
41650
+ properties: {
41651
+ kind: {
41652
+ types: [
41653
+ "string"
41654
+ ],
41655
+ enumValues: [
41656
+ "linear",
41657
+ "radial",
41658
+ "conic"
41659
+ ]
41660
+ },
41661
+ from: {
41662
+ types: [
41663
+ "object"
41664
+ ]
41665
+ },
41666
+ to: {
41667
+ types: [
41668
+ "object"
41669
+ ]
41670
+ },
41671
+ center: {
41672
+ types: [
41673
+ "object"
41674
+ ]
41675
+ },
41676
+ radius: {
41677
+ types: [
41678
+ "number"
41679
+ ]
41680
+ },
41681
+ angle: {
41682
+ types: [
41683
+ "number"
41684
+ ]
41685
+ },
41686
+ stops: {
41687
+ types: [
41688
+ "array"
41689
+ ],
41690
+ items: {
41691
+ types: [
41692
+ "object"
41693
+ ]
41694
+ }
41695
+ }
41696
+ },
41697
+ propertyRequired: [
41698
+ "kind",
41699
+ "stops"
41700
+ ]
41701
+ },
41702
+ strokeDash: {
41703
+ types: [
41704
+ "array"
41705
+ ],
41706
+ description: "Dash pattern in painter-px (constant under group scale, like `strokeWidth`).",
41707
+ items: {
41708
+ types: [
41709
+ "number"
41710
+ ]
41711
+ }
41712
+ },
41713
+ strokeDashOffset: {
41714
+ types: [
41715
+ "number"
41716
+ ],
41717
+ description: "Dash phase offset in painter-px; animatable (marching ants)."
41718
+ },
41719
+ blendMode: {
41720
+ types: [
41721
+ "string"
41722
+ ],
41723
+ description: "Composite/blend mode for this shape's draws (`lighter`, `multiply`, `screen`, \u2026).",
41724
+ enumValues: [
41725
+ "source-over",
41726
+ "lighter",
41727
+ "multiply",
41728
+ "screen",
41729
+ "overlay",
41730
+ "darken",
41731
+ "lighten",
41732
+ "color-dodge",
41733
+ "color-burn",
41734
+ "hard-light",
41735
+ "soft-light",
41736
+ "difference",
41737
+ "exclusion",
41738
+ "hue",
41739
+ "saturation",
41740
+ "color",
41741
+ "luminosity",
41742
+ "source-atop",
41743
+ "destination-over",
41744
+ "destination-out",
41745
+ "xor"
41746
+ ]
41747
+ },
41748
+ blur: {
41749
+ types: [
41750
+ "number"
41751
+ ],
41752
+ description: "Gaussian blur in painter-px. Expensive \u2014 forces an intermediate raster; use sparingly."
41753
+ },
41754
+ rotate: {
41755
+ types: [
41756
+ "number"
41757
+ ],
41758
+ description: "Rotation in radians (painter units, same as `draw-group`), about `pivot`."
41759
+ },
41760
+ pivot: {
41761
+ types: [
41762
+ "object"
41763
+ ],
41764
+ description: "Rotation pivot in world units relative to the cell's projected top-left; default `{x:0.5, y:0.5}` (cell center)."
41765
+ },
41766
+ shadow: {
41767
+ types: [
41768
+ "object"
41769
+ ],
41770
+ description: "Soft glow / drop-shadow behind the shape; `blur` in world units.",
41771
+ properties: {
41772
+ color: {
41773
+ types: [
41774
+ "string"
41775
+ ]
41776
+ },
41777
+ blur: {
41778
+ types: [
41779
+ "number"
41780
+ ]
41781
+ }
41782
+ },
41783
+ propertyRequired: [
41784
+ "color",
41785
+ "blur"
41786
+ ]
41787
+ },
41788
+ animation: {
41789
+ types: [
41790
+ "object"
41791
+ ],
41792
+ description: "Keyframe animation over this shape's props; the host runs a paint clock while present.",
41793
+ properties: {
41794
+ durationMs: {
41795
+ types: [
41796
+ "number"
41797
+ ]
41798
+ },
41799
+ loop: {
41800
+ types: [
41801
+ "boolean"
41802
+ ]
41803
+ },
41804
+ keyframes: {
41805
+ types: [
41806
+ "array"
41807
+ ],
41808
+ items: {
41809
+ types: [
41810
+ "object"
41811
+ ],
41812
+ properties: {
41813
+ at: {
41814
+ types: [
41815
+ "number"
41816
+ ]
41817
+ },
41818
+ offsetX: {
41819
+ types: [
41820
+ "number"
41821
+ ]
41822
+ },
41823
+ offsetY: {
41824
+ types: [
41825
+ "number"
41826
+ ]
41827
+ },
41828
+ rotate: {
41829
+ types: [
41830
+ "number"
41831
+ ]
41832
+ },
41833
+ opacity: {
41834
+ types: [
41835
+ "number"
41836
+ ]
41837
+ },
41838
+ radiusX: {
41839
+ types: [
41840
+ "number"
41841
+ ]
41842
+ },
41843
+ radiusY: {
41844
+ types: [
41845
+ "number"
41846
+ ]
41847
+ },
41848
+ width: {
41849
+ types: [
41850
+ "number"
41851
+ ]
41852
+ },
41853
+ height: {
41854
+ types: [
41855
+ "number"
41856
+ ]
41857
+ },
41858
+ strokeWidth: {
41859
+ types: [
41860
+ "number"
41861
+ ]
41862
+ },
41863
+ strokeDashOffset: {
41864
+ types: [
41865
+ "number"
41866
+ ]
41867
+ },
41868
+ blur: {
41869
+ types: [
41870
+ "number"
41871
+ ]
41872
+ },
41873
+ fill: {
41874
+ types: [
41875
+ "string"
41876
+ ]
41877
+ },
41878
+ stroke: {
41879
+ types: [
41880
+ "string"
41881
+ ]
41882
+ },
41883
+ shadow: {
41884
+ types: [
41885
+ "object"
41886
+ ],
41887
+ properties: {
41888
+ color: {
41889
+ types: [
41890
+ "string"
41891
+ ]
41892
+ },
41893
+ blur: {
41894
+ types: [
41895
+ "number"
41896
+ ]
41897
+ }
41898
+ },
41899
+ required: [
41900
+ "color",
41901
+ "blur"
41902
+ ]
41903
+ }
41904
+ },
41905
+ required: [
41906
+ "at"
41907
+ ]
41908
+ }
41909
+ }
41910
+ },
41911
+ propertyRequired: [
41912
+ "durationMs",
41913
+ "keyframes"
41914
+ ]
41915
+ },
41535
41916
  opacity: {
41536
41917
  types: [
41537
41918
  "number"
@@ -42000,6 +42381,101 @@ var patterns_registry_default = {
42000
42381
  "string"
42001
42382
  ]
42002
42383
  },
42384
+ gradient: {
42385
+ types: [
42386
+ "object"
42387
+ ],
42388
+ properties: {
42389
+ kind: {
42390
+ types: [
42391
+ "string"
42392
+ ],
42393
+ enumValues: [
42394
+ "linear",
42395
+ "radial",
42396
+ "conic"
42397
+ ]
42398
+ },
42399
+ from: {
42400
+ types: [
42401
+ "object"
42402
+ ]
42403
+ },
42404
+ to: {
42405
+ types: [
42406
+ "object"
42407
+ ]
42408
+ },
42409
+ center: {
42410
+ types: [
42411
+ "object"
42412
+ ]
42413
+ },
42414
+ radius: {
42415
+ types: [
42416
+ "number"
42417
+ ]
42418
+ },
42419
+ angle: {
42420
+ types: [
42421
+ "number"
42422
+ ]
42423
+ },
42424
+ stops: {
42425
+ types: [
42426
+ "array"
42427
+ ],
42428
+ items: {
42429
+ types: [
42430
+ "object"
42431
+ ]
42432
+ }
42433
+ }
42434
+ },
42435
+ required: [
42436
+ "kind",
42437
+ "stops"
42438
+ ]
42439
+ },
42440
+ fillPattern: {
42441
+ types: [
42442
+ "object"
42443
+ ],
42444
+ properties: {
42445
+ kind: {
42446
+ types: [
42447
+ "string"
42448
+ ],
42449
+ enumValues: [
42450
+ "noise",
42451
+ "image"
42452
+ ]
42453
+ },
42454
+ url: {
42455
+ types: [
42456
+ "string"
42457
+ ]
42458
+ },
42459
+ scale: {
42460
+ types: [
42461
+ "number"
42462
+ ]
42463
+ },
42464
+ alpha: {
42465
+ types: [
42466
+ "number"
42467
+ ]
42468
+ },
42469
+ color: {
42470
+ types: [
42471
+ "string"
42472
+ ]
42473
+ }
42474
+ },
42475
+ required: [
42476
+ "kind"
42477
+ ]
42478
+ },
42003
42479
  stroke: {
42004
42480
  types: [
42005
42481
  "string"
@@ -42010,6 +42486,268 @@ var patterns_registry_default = {
42010
42486
  "number"
42011
42487
  ]
42012
42488
  },
42489
+ strokeGradient: {
42490
+ types: [
42491
+ "object"
42492
+ ],
42493
+ properties: {
42494
+ kind: {
42495
+ types: [
42496
+ "string"
42497
+ ],
42498
+ enumValues: [
42499
+ "linear",
42500
+ "radial",
42501
+ "conic"
42502
+ ]
42503
+ },
42504
+ from: {
42505
+ types: [
42506
+ "object"
42507
+ ]
42508
+ },
42509
+ to: {
42510
+ types: [
42511
+ "object"
42512
+ ]
42513
+ },
42514
+ center: {
42515
+ types: [
42516
+ "object"
42517
+ ]
42518
+ },
42519
+ radius: {
42520
+ types: [
42521
+ "number"
42522
+ ]
42523
+ },
42524
+ angle: {
42525
+ types: [
42526
+ "number"
42527
+ ]
42528
+ },
42529
+ stops: {
42530
+ types: [
42531
+ "array"
42532
+ ],
42533
+ items: {
42534
+ types: [
42535
+ "object"
42536
+ ]
42537
+ }
42538
+ }
42539
+ },
42540
+ required: [
42541
+ "kind",
42542
+ "stops"
42543
+ ]
42544
+ },
42545
+ strokeDash: {
42546
+ types: [
42547
+ "array"
42548
+ ],
42549
+ items: {
42550
+ types: [
42551
+ "number"
42552
+ ]
42553
+ }
42554
+ },
42555
+ strokeDashOffset: {
42556
+ types: [
42557
+ "number"
42558
+ ]
42559
+ },
42560
+ blendMode: {
42561
+ types: [
42562
+ "string"
42563
+ ],
42564
+ enumValues: [
42565
+ "source-over",
42566
+ "lighter",
42567
+ "multiply",
42568
+ "screen",
42569
+ "overlay",
42570
+ "darken",
42571
+ "lighten",
42572
+ "color-dodge",
42573
+ "color-burn",
42574
+ "hard-light",
42575
+ "soft-light",
42576
+ "difference",
42577
+ "exclusion",
42578
+ "hue",
42579
+ "saturation",
42580
+ "color",
42581
+ "luminosity",
42582
+ "source-atop",
42583
+ "destination-over",
42584
+ "destination-out",
42585
+ "xor"
42586
+ ]
42587
+ },
42588
+ blur: {
42589
+ types: [
42590
+ "number"
42591
+ ]
42592
+ },
42593
+ rotate: {
42594
+ types: [
42595
+ "number"
42596
+ ]
42597
+ },
42598
+ pivot: {
42599
+ types: [
42600
+ "object"
42601
+ ]
42602
+ },
42603
+ shadow: {
42604
+ types: [
42605
+ "object"
42606
+ ],
42607
+ properties: {
42608
+ color: {
42609
+ types: [
42610
+ "string"
42611
+ ]
42612
+ },
42613
+ blur: {
42614
+ types: [
42615
+ "number"
42616
+ ]
42617
+ }
42618
+ },
42619
+ required: [
42620
+ "color",
42621
+ "blur"
42622
+ ]
42623
+ },
42624
+ animation: {
42625
+ types: [
42626
+ "object"
42627
+ ],
42628
+ properties: {
42629
+ durationMs: {
42630
+ types: [
42631
+ "number"
42632
+ ]
42633
+ },
42634
+ loop: {
42635
+ types: [
42636
+ "boolean"
42637
+ ]
42638
+ },
42639
+ keyframes: {
42640
+ types: [
42641
+ "array"
42642
+ ],
42643
+ items: {
42644
+ types: [
42645
+ "object"
42646
+ ],
42647
+ properties: {
42648
+ at: {
42649
+ types: [
42650
+ "number"
42651
+ ]
42652
+ },
42653
+ offsetX: {
42654
+ types: [
42655
+ "number"
42656
+ ]
42657
+ },
42658
+ offsetY: {
42659
+ types: [
42660
+ "number"
42661
+ ]
42662
+ },
42663
+ rotate: {
42664
+ types: [
42665
+ "number"
42666
+ ]
42667
+ },
42668
+ opacity: {
42669
+ types: [
42670
+ "number"
42671
+ ]
42672
+ },
42673
+ radiusX: {
42674
+ types: [
42675
+ "number"
42676
+ ]
42677
+ },
42678
+ radiusY: {
42679
+ types: [
42680
+ "number"
42681
+ ]
42682
+ },
42683
+ width: {
42684
+ types: [
42685
+ "number"
42686
+ ]
42687
+ },
42688
+ height: {
42689
+ types: [
42690
+ "number"
42691
+ ]
42692
+ },
42693
+ strokeWidth: {
42694
+ types: [
42695
+ "number"
42696
+ ]
42697
+ },
42698
+ strokeDashOffset: {
42699
+ types: [
42700
+ "number"
42701
+ ]
42702
+ },
42703
+ blur: {
42704
+ types: [
42705
+ "number"
42706
+ ]
42707
+ },
42708
+ fill: {
42709
+ types: [
42710
+ "string"
42711
+ ]
42712
+ },
42713
+ stroke: {
42714
+ types: [
42715
+ "string"
42716
+ ]
42717
+ },
42718
+ shadow: {
42719
+ types: [
42720
+ "object"
42721
+ ],
42722
+ properties: {
42723
+ color: {
42724
+ types: [
42725
+ "string"
42726
+ ]
42727
+ },
42728
+ blur: {
42729
+ types: [
42730
+ "number"
42731
+ ]
42732
+ }
42733
+ },
42734
+ required: [
42735
+ "color",
42736
+ "blur"
42737
+ ]
42738
+ }
42739
+ },
42740
+ required: [
42741
+ "at"
42742
+ ]
42743
+ }
42744
+ }
42745
+ },
42746
+ required: [
42747
+ "durationMs",
42748
+ "keyframes"
42749
+ ]
42750
+ },
42013
42751
  opacity: {
42014
42752
  types: [
42015
42753
  "number"
@@ -42728,6 +43466,12 @@ var patterns_registry_default = {
42728
43466
  "string"
42729
43467
  ]
42730
43468
  }
43469
+ },
43470
+ children: {
43471
+ types: [
43472
+ "node"
43473
+ ],
43474
+ description: "Declarative JSX drawable children (`<DrawShape .../>` composed in paint order). Forwarded to the 2D host, which collects them via drawable registry context."
42731
43475
  }
42732
43476
  },
42733
43477
  drawHost: true
@@ -43227,6 +43971,12 @@ var patterns_registry_default = {
43227
43971
  ],
43228
43972
  description: "0..1 opacity."
43229
43973
  },
43974
+ clip: {
43975
+ types: [
43976
+ "string"
43977
+ ],
43978
+ description: "Clip the group's items to an SVG path (`d` syntax) in world units relative to the group origin \u2014 masked reveals, meters, portraits."
43979
+ },
43230
43980
  items: {
43231
43981
  types: [
43232
43982
  "array"
@@ -44218,7 +44968,7 @@ var integrators_registry_default = {
44218
44968
  // src/patterns/component-mapping.json
44219
44969
  var component_mapping_default = {
44220
44970
  version: "1.0.0",
44221
- exportedAt: "2026-07-30T11:18:57.838Z",
44971
+ exportedAt: "2026-07-31T07:15:07.239Z",
44222
44972
  mappings: {
44223
44973
  "page-header": {
44224
44974
  component: "PageHeader",
@@ -45608,7 +46358,7 @@ var component_mapping_default = {
45608
46358
  // src/patterns/event-contracts.json
45609
46359
  var event_contracts_default = {
45610
46360
  version: "1.0.0",
45611
- exportedAt: "2026-07-30T11:18:57.838Z",
46361
+ exportedAt: "2026-07-31T07:15:07.239Z",
45612
46362
  contracts: {
45613
46363
  form: {
45614
46364
  emits: [
@@ -50619,6 +51369,35 @@ function buildPayloadForEdge(transition, guardCase) {
50619
51369
  return {};
50620
51370
  }
50621
51371
 
51372
+ // src/access/entityAccess.ts
51373
+ function inlineEntities(schema) {
51374
+ const out = [];
51375
+ for (const orbital of schema.orbitals ?? []) {
51376
+ const refs = [orbital.entity, ...orbital.auxiliaryEntities ?? []];
51377
+ for (const ref2 of refs) {
51378
+ if (typeof ref2 === "object" && ref2 !== null && "fields" in ref2) {
51379
+ out.push(ref2);
51380
+ }
51381
+ }
51382
+ }
51383
+ return out;
51384
+ }
51385
+ function entityAccessTable(schema) {
51386
+ const table = /* @__PURE__ */ new Map();
51387
+ for (const def of inlineEntities(schema)) {
51388
+ table.set(def.name, {
51389
+ read: def.read_policy,
51390
+ create: def.create_policy,
51391
+ update: def.update_policy,
51392
+ delete: def.delete_policy
51393
+ });
51394
+ }
51395
+ return table;
51396
+ }
51397
+ function entityAccessPolicies(schema, entityName) {
51398
+ return entityAccessTable(schema).get(entityName);
51399
+ }
51400
+
50622
51401
  // src/shared-entity/merge.ts
50623
51402
  function mergeEntityFrame(current, orderedWrites) {
50624
51403
  if (orderedWrites.length === 0) return current;
@@ -50629,6 +51408,6 @@ function mergeEntityFrame(current, orderedWrites) {
50629
51408
  return next;
50630
51409
  }
50631
51410
 
50632
- export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, COMPONENT_MAPPING, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EVENT_CONTRACTS, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SPRITE_DIRECTIONS, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyListenPayloadMapping, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, classifyWorkflow, clearSchemaCache, collectBindings, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, collectTraitConfigRefAdjacency, collectTraitEmbedAdjacency, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, containsEntityBinding, containsPayloadBinding, contractFieldName, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, deref, deriveCollection, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, event_contracts_default as eventContracts, extractPayloadFieldRef, findCompatiblePatterns, findPersonaInRoster, findService, fingerprintNode, formatRecommendationsForPrompt, gatherTensorLastDim, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, 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, 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, ledgerCurName, ledgerRename, ledgerResolveName, mapTensorLastDim, mergeEntityFrame, mintId, navigate, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, recommendPatterns, ref, registry, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, requiresConfirmation, resolveConfigRefEventName, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
51411
+ export { AGENT_DOMAIN_CATEGORIES, ALLOWED_CUSTOM_COMPONENTS, ANIMATION_NAMES, ANONYMOUS_USER, ASSET_ASPECTS, ASSET_DIMENSIONS, AgentDomainCategorySchema, AnimationDefSchema, AnimationNameSchema, AssetAspectSchema, AssetCatalogEntrySchema, AssetCatalogSchema, AssetDimensionSchema, AssetSchema, BINDING_CONTEXT_RULES, BINDING_DOCS, BINDING_ROOTS, BindingSchema, CAMERA_MODES, COMPONENT_MAPPING, CONFIG_REF_EVENT_PATTERN, CORE_BINDINGS, CameraModeSchema, CameraSchema, ColorSliceSchema, ColorTokensSchema, ComputedEventContractSchema, ComputedEventListenerSchema, ConfigFieldDeclarationSchema, ConfigProvenanceRecordSchema, CustomPatternDefinitionSchema, CustomPatternMapSchema, DEFAULT_INTERACTION_MODELS, DEFAULT_VIEWER, DEV_TOKEN_PREFIX, DeclaredTraitConfigSchema, DensitySliceSchema, DensityTokensSchema, DesignPreferencesSchema, DesignTokensSchema, DomainCategorySchema, DomainContextSchema, DomainVocabularySchema, ENTITY_ROLES, EVENT_CONTRACTS, EffectSchema, ElevationSliceSchema, ElevationTokensSchema, EntityCallSchema, EntityFieldContractSchema, EntityFieldSchema, EntityIdSchema, EntityPersistenceSchema, EntityRefSchema, EntityRefStringSchema, EntityRoleSchema, EntitySchema, EntitySemanticRoleSchema, EventIdSchema, EventListenerSchema, EventPayloadFieldSchema, EventSchema, EventScopeSchema, EventSemanticRoleSchema, EventSourceSchema, ExpressionSchema, FIELD_TYPES, FieldSchema, FieldTypeSchema, GameSubCategorySchema, GeometrySliceSchema, GeometryTokensSchema, GuardSchema, INTEGRATORS_REGISTRY, IconFamilySchema, IconographySliceSchema, IconographyTokensSchema, IdentityLedgerSchema, IllustrationSliceSchema, IllustrationStyleSchema, IllustrationTokensSchema, InteractionModelSchema, KNOWN_VALIDATION_ERROR_CODES, LedgerEntrySchema, LedgerKindSchema, ListenSourceSchema, McpServiceDefSchema, MotionDurationKeySchema, MotionDurationPaletteSchema, MotionEasingKeySchema, MotionEasingPaletteSchema, MotionIntentMapSchema, MotionIntentSchema, MotionSliceSchema, MotionTokensSchema, NodeClassificationSchema, OrbitalConfigSchema, OrbitalDefinitionSchema, OrbitalEntitySchema, OrbitalIdSchema, OrbitalPageSchema, OrbitalPageStrictSchema, OrbitalSchemaSchema, OrbitalTraitRefSchema, OrbitalUnitSchema, OrbitalSchema as OrbitalZodSchema, PATTERN_REGISTRY, PATTERN_TYPES, PageIdSchema, PageRefObjectSchema, PageRefSchema, PageRefStringSchema, PageSchema, PageTraitRefSchema, PaletteEntryIdSchema, PatternTypeSchema, PayloadFieldSchema, REFERENCE_CONFIG_TYPES, RENDER_BINDING_MARKER, RelatedLinkSchema, RelationConfigSchema, RequiredFieldSchema, RestAuthConfigSchema, RestServiceDefSchema, SECRET_CONFIG_TYPES, SEMANTIC_STRING_TYPES, SERVICE_TYPES, SExprAtomSchema, SExprDataSchema, SExprSchema, SPRITE_DIRECTIONS, ScenePosSchema, SchemaMetadataSchema, SemanticAssetRefSchema, ServiceDefinitionSchema, ServiceIdSchema, ServiceRefObjectSchema, ServiceRefSchema, ServiceRefStringSchema, ServiceTypeSchema, SkinSpecSchema, SocketEventsSchema, SocketServiceDefSchema, SpacingScaleSchema, SpriteDirectionSchema, SpriteSheetAtlasSchema, StateMachineSchema, StateSchema, StateSemanticRoleSchema, SubTextureSchema, SuggestedGuardSchema, TextureAtlasSchema, ThemeDefinitionSchema, ThemeIdSchema, ThemeRefSchema, ThemeRefStringSchema, ThemeTokensSchema, ThemeVariantSchema, TickIntervalSchema, TilesheetSchema, TraitCategorySchema, TraitConfigSchema, TraitConfigValueSchema, TraitDataEntitySchema, TraitEntityFieldSchema, TraitEventContractSchema, TraitEventListenerSchema, TraitFieldRefSchema, TraitIdSchema, TraitRefSchema, TraitReferenceSchema, TraitSchema, TraitTickSchema, TraitUIBindingSchema, TransitionSchema, TypeIntentMapSchema, TypeIntentSchema, TypeScaleEntrySchema, TypeScaleSchema, TypeScaleTokensSchema, TypeSizeKeySchema, TypeSliceSchema, TypeSlotSchema, TypeWeightSchema, UISlotSchema, UI_SLOTS, UXHintsSchema, UseDeclarationSchema, UserPersonaSchema, VISUAL_STYLES, ViewTypeSchema, VisualStyleSchema, answerToMutations, answersToMutations, applyEventWiring, applyFactoryCallPlanMutation, applyListenPayloadMapping, applyRenderOverlay, asEntityId, asEventId, asOrbitalId, asPageId, asPaletteEntryId, asServiceId, asThemeId, asTraitId, atomic, buildEdgeCoveringWalk, buildGuardPayloads, buildRecommendationContext, buildReplayPaths, buildResolvedTraitConfigs, buildStateGraph, callService, categorizeRemovals, classifyWorkflow, clearSchemaCache, collectBindings, collectEmbeddedTraitReferrers, collectReachableStates, collectRenderUiPatternTypes, collectTraitConfigRefAdjacency, collectTraitEmbedAdjacency, component_mapping_default as componentMapping, composeBehaviors, configRefEventKnob, constTruth, containsEntityBinding, containsPayloadBinding, contractFieldName, createAssetKey, createEmptyResolvedPage, createEmptyResolvedTrait, createLazyService, createResolvedField, createTypedEventBus, decodeDevIdentityToken, deref, deriveCollection, deriveInputType, describeTensorMismatch, despawn, detectLayoutStrategy, detectPageContentReduction, diffFactoryCalls, diffOrbitalSchemas, diffSchemaSemantics, diffSchemas, doEffects, emit, encodeDevIdentityToken, entityAccessPolicies, entityAccessTable, event_contracts_default as eventContracts, extractPayloadFieldRef, findCompatiblePatterns, findPersonaInRoster, findService, fingerprintNode, formatRecommendationsForPrompt, gatherTensorLastDim, generatePatternDescription, generateQuestions, getAllPatternTypes, getArgs, getBindingExamples, getComponentForPattern, getDefaultAnimationsForRole, getEmittedEvents, getEntity, getEntityCardinality, getInteractionModelForDomain, getOperator, getOrbAllowedPatterns, getOrbAllowedPatternsCompact, getOrbAllowedPatternsFiltered, getOrbAllowedPatternsSlim, getPage, getPages, getPatternActionsRef, getPatternDefinition, getPatternMetadata, getPatternPropsCompact, getPatternsGroupedByCategory, getRemovals, getSchemaCacheStats, getServiceNames, getTrait, getTraitConfig, getTraitName, 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, 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, ledgerCurName, ledgerRename, ledgerResolveName, mapTensorLastDim, mergeEntityFrame, mintId, navigate, navigatePatternPath, normalizeCallSiteConfigToValues, normalizeTraitRef, normalizeUserContext, notify, parseAssetKey, parseBinding, parseEntityRef, parseImportedTraitRef, parseOrbitalSchema, parsePageRef, parseServiceRef, patterns_registry_default as patternsRegistry, persist, persistenceModeAllowsOverrides, personaFromIdentityRow, recommendPatterns, ref, registry, removeChildAtPath, renderUI, renderUiPatternTypesOf, replaceChildAtPath, requiresConfirmation, resolveConfigRefEventName, resolvePersonaSpec, safeParseOrbitalSchema, schemaToIR, set, setPropAtPath, sexpr, spawn, summarizeOrbital, summarizeSchema, swap, tensorLastDimSize, tensorShape, toBindingRoot, traitDeclaresConfigForward, translateOverlaysToParams, validateAssetAnimations, validateBindingInContext, validateContract, walkSExpr, walkStatePairs, watch, widenTier };
50633
51412
  //# sourceMappingURL=index.js.map
50634
51413
  //# sourceMappingURL=index.js.map