@almadar/std 16.205.0 → 16.206.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 (492) hide show
  1. package/behaviors/lolo/ml/organisms/std-escalating-decision.lolo +3 -3
  2. package/behaviors/lolo/ui/core/atoms/std-modal-editor.lolo +265 -13
  3. package/behaviors/lolo/ui/core/molecules/ui-code-block.lolo +5 -5
  4. package/behaviors/lolo/ui/core/molecules/ui-floating-toolbar.lolo +1 -1
  5. package/behaviors/lolo/ui/core/molecules/ui-menu.lolo +2 -1
  6. package/behaviors/lolo/ui/game/atoms/std-area-fill.lolo +8 -3
  7. package/behaviors/lolo/ui/game/atoms/std-choice-gate.lolo +7 -3
  8. package/behaviors/lolo/ui/game/atoms/std-coef-pad.lolo +8 -3
  9. package/behaviors/lolo/ui/game/atoms/std-gate-lock.lolo +8 -3
  10. package/behaviors/lolo/ui/game/atoms/std-loop-lock.lolo +7 -3
  11. package/behaviors/lolo/ui/game/atoms/std-pad-lock.lolo +10 -3
  12. package/behaviors/lolo/ui/game/atoms/std-patrol-hazard.lolo +9 -3
  13. package/behaviors/lolo/ui/game/atoms/std-pickup.lolo +29 -5
  14. package/behaviors/lolo/ui/game/atoms/std-platformer-body.lolo +36 -14
  15. package/behaviors/lolo/ui/game/atoms/std-velocity-gate.lolo +7 -3
  16. package/behaviors/lolo/ui/learning/atoms/std-learn-slope-probe.lolo +12 -6
  17. package/behaviors/registry/agent/atoms/std-agent-completion.orb +27 -0
  18. package/behaviors/registry/agent/atoms/std-agent-context.orb +47 -0
  19. package/behaviors/registry/agent/atoms/std-agent-fix-loop.orb +57 -1
  20. package/behaviors/registry/agent/atoms/std-agent-memory.orb +88 -1
  21. package/behaviors/registry/agent/atoms/std-agent-planner.orb +58 -1
  22. package/behaviors/registry/agent/atoms/std-agent-session.orb +95 -1
  23. package/behaviors/registry/agent/atoms/std-agent-tool-call.orb +66 -1
  24. package/behaviors/registry/agent/atoms/std-agent-tool-loop.orb +74 -1
  25. package/behaviors/registry/agent/atoms/std-agent-trace.orb +38 -0
  26. package/behaviors/registry/agent/organisms/std-agent-builder.orb +70 -1
  27. package/behaviors/registry/agent/organisms/std-agent-rabit.orb +239 -2
  28. package/behaviors/registry/infra/atoms/std-anim-tick.orb +24 -0
  29. package/behaviors/registry/infra/atoms/std-approval-gate.orb +73 -20
  30. package/behaviors/registry/infra/atoms/std-audit-capture.orb +38 -0
  31. package/behaviors/registry/infra/atoms/std-cache-aside.orb +45 -62
  32. package/behaviors/registry/infra/atoms/std-calendar-sync.orb +113 -1
  33. package/behaviors/registry/infra/atoms/std-cascade-on-delete.orb +32 -0
  34. package/behaviors/registry/infra/atoms/std-circuit-breaker.orb +38 -32
  35. package/behaviors/registry/infra/atoms/std-cooldown.orb +28 -0
  36. package/behaviors/registry/infra/atoms/std-cross-reference.orb +55 -1
  37. package/behaviors/registry/infra/atoms/std-data-erasure.orb +52 -16
  38. package/behaviors/registry/infra/atoms/std-game-clock.orb +20 -0
  39. package/behaviors/registry/infra/atoms/std-lifecycle.orb +34 -0
  40. package/behaviors/registry/infra/atoms/std-migration-job.orb +165 -1
  41. package/behaviors/registry/infra/atoms/std-mod-queue.orb +23 -16
  42. package/behaviors/registry/infra/atoms/std-notification-center.orb +119 -1
  43. package/behaviors/registry/infra/atoms/std-notify-on-event.orb +162 -1
  44. package/behaviors/registry/infra/atoms/std-rate-limiter.orb +32 -28
  45. package/behaviors/registry/infra/atoms/std-reminder-scheduler.orb +30 -0
  46. package/behaviors/registry/infra/atoms/std-row-access-control.orb +58 -1
  47. package/behaviors/registry/infra/atoms/std-status-lifecycle.orb +34 -1
  48. package/behaviors/registry/infra/organisms/std-status-lifecycle-control.orb +33 -2
  49. package/behaviors/registry/ml/atoms/std-data-collector.orb +18 -0
  50. package/behaviors/registry/ml/atoms/std-graph-builder.orb +41 -1
  51. package/behaviors/registry/ml/atoms/std-ml-classify.orb +67 -1
  52. package/behaviors/registry/ml/atoms/std-ml-exact-check.orb +18 -0
  53. package/behaviors/registry/ml/atoms/std-ml-infer.orb +125 -1
  54. package/behaviors/registry/ml/atoms/std-ml-label-capture.orb +34 -0
  55. package/behaviors/registry/ml/atoms/std-ml-lookup.orb +18 -0
  56. package/behaviors/registry/ml/atoms/std-ml-posterior.orb +42 -0
  57. package/behaviors/registry/ml/atoms/std-ml-similarity.orb +82 -1
  58. package/behaviors/registry/ml/atoms/std-tokenizer.orb +30 -0
  59. package/behaviors/registry/ml/atoms/std-weight-validator.orb +60 -1
  60. package/behaviors/registry/ml/organisms/std-escalating-decision.orb +122 -13
  61. package/behaviors/registry/ml/organisms/std-knowledge-tracing.orb +51 -4
  62. package/behaviors/registry/ui/avl/atoms/ui-behavior-view.orb +6 -0
  63. package/behaviors/registry/ui/avl/atoms/ui-module-card.orb +6 -0
  64. package/behaviors/registry/ui/core/atoms/std-app-layout.orb +10 -0
  65. package/behaviors/registry/ui/core/atoms/std-app-search.orb +110 -1
  66. package/behaviors/registry/ui/core/atoms/std-billable-hour.orb +119 -2
  67. package/behaviors/registry/ui/core/atoms/std-board.orb +180 -1
  68. package/behaviors/registry/ui/core/atoms/std-browse.orb +143 -6
  69. package/behaviors/registry/ui/core/atoms/std-calendar.orb +59 -1
  70. package/behaviors/registry/ui/core/atoms/std-confirmation.orb +18 -0
  71. package/behaviors/registry/ui/core/atoms/std-dashboard-grid-embedded.orb +13 -2
  72. package/behaviors/registry/ui/core/atoms/std-date-range.orb +14 -0
  73. package/behaviors/registry/ui/core/atoms/std-detail-layout.orb +13 -0
  74. package/behaviors/registry/ui/core/atoms/std-esign-flow.orb +39 -4
  75. package/behaviors/registry/ui/core/atoms/std-esign-request.orb +20 -6
  76. package/behaviors/registry/ui/core/atoms/std-event-log.orb +146 -1
  77. package/behaviors/registry/ui/core/atoms/std-export.orb +35 -4
  78. package/behaviors/registry/ui/core/atoms/std-file-store.orb +26 -0
  79. package/behaviors/registry/ui/core/atoms/std-filter.orb +57 -1
  80. package/behaviors/registry/ui/core/atoms/std-form-advanced.orb +66 -1
  81. package/behaviors/registry/ui/core/atoms/std-gallery.orb +44 -18
  82. package/behaviors/registry/ui/core/atoms/std-geosearch.orb +22 -0
  83. package/behaviors/registry/ui/core/atoms/std-graphs.orb +71 -1
  84. package/behaviors/registry/ui/core/atoms/std-image-upload-multi.orb +67 -1
  85. package/behaviors/registry/ui/core/atoms/std-import.orb +69 -4
  86. package/behaviors/registry/ui/core/atoms/std-list.orb +36 -6
  87. package/behaviors/registry/ui/core/atoms/std-modal-editor.orb +1865 -169
  88. package/behaviors/registry/ui/core/atoms/std-modal.orb +44 -1
  89. package/behaviors/registry/ui/core/atoms/std-multi-party-flow.orb +201 -1
  90. package/behaviors/registry/ui/core/atoms/std-notification-panel.orb +24 -1
  91. package/behaviors/registry/ui/core/atoms/std-pagination.orb +35 -1
  92. package/behaviors/registry/ui/core/atoms/std-rating-review.orb +159 -1
  93. package/behaviors/registry/ui/core/atoms/std-record-detail.orb +144 -1
  94. package/behaviors/registry/ui/core/atoms/std-recurrence.orb +103 -1
  95. package/behaviors/registry/ui/core/atoms/std-related.orb +14 -0
  96. package/behaviors/registry/ui/core/atoms/std-saved-search.orb +30 -0
  97. package/behaviors/registry/ui/core/atoms/std-scatter.orb +51 -1
  98. package/behaviors/registry/ui/core/atoms/std-search.orb +10 -0
  99. package/behaviors/registry/ui/core/atoms/std-selection.orb +28 -1
  100. package/behaviors/registry/ui/core/atoms/std-signature-capture.orb +18 -0
  101. package/behaviors/registry/ui/core/atoms/std-stats.orb +153 -1
  102. package/behaviors/registry/ui/core/atoms/std-step-flow.orb +154 -1
  103. package/behaviors/registry/ui/core/atoms/std-tabs.orb +41 -1
  104. package/behaviors/registry/ui/core/atoms/std-tag-strip.orb +34 -0
  105. package/behaviors/registry/ui/core/atoms/std-tag-taxonomy.orb +48 -1
  106. package/behaviors/registry/ui/core/atoms/std-thread.orb +30 -0
  107. package/behaviors/registry/ui/core/atoms/std-tree.orb +36 -1
  108. package/behaviors/registry/ui/core/atoms/std-version-history.orb +54 -0
  109. package/behaviors/registry/ui/core/atoms/std-vote.orb +22 -0
  110. package/behaviors/registry/ui/core/atoms/std-wizard.orb +130 -1
  111. package/behaviors/registry/ui/core/atoms/ui-aside.orb +6 -0
  112. package/behaviors/registry/ui/core/atoms/ui-atlas-image.orb +6 -0
  113. package/behaviors/registry/ui/core/atoms/ui-atlas-panel.orb +6 -0
  114. package/behaviors/registry/ui/core/atoms/ui-avatar.orb +6 -0
  115. package/behaviors/registry/ui/core/atoms/ui-badge.orb +6 -0
  116. package/behaviors/registry/ui/core/atoms/ui-box.orb +6 -0
  117. package/behaviors/registry/ui/core/atoms/ui-button.orb +6 -0
  118. package/behaviors/registry/ui/core/atoms/ui-card.orb +6 -0
  119. package/behaviors/registry/ui/core/atoms/ui-center.orb +6 -0
  120. package/behaviors/registry/ui/core/atoms/ui-checkbox.orb +6 -0
  121. package/behaviors/registry/ui/core/atoms/ui-conditional-wrapper.orb +6 -0
  122. package/behaviors/registry/ui/core/atoms/ui-confetti-effect.orb +6 -0
  123. package/behaviors/registry/ui/core/atoms/ui-day-cell.orb +6 -0
  124. package/behaviors/registry/ui/core/atoms/ui-dialog.orb +6 -0
  125. package/behaviors/registry/ui/core/atoms/ui-divider.orb +6 -0
  126. package/behaviors/registry/ui/core/atoms/ui-filter-pill.orb +10 -0
  127. package/behaviors/registry/ui/core/atoms/ui-flip-container.orb +6 -0
  128. package/behaviors/registry/ui/core/atoms/ui-game-icon.orb +6 -0
  129. package/behaviors/registry/ui/core/atoms/ui-hstack.orb +6 -0
  130. package/behaviors/registry/ui/core/atoms/ui-icon.orb +6 -0
  131. package/behaviors/registry/ui/core/atoms/ui-infinite-scroll-sentinel.orb +6 -0
  132. package/behaviors/registry/ui/core/atoms/ui-input.orb +10 -0
  133. package/behaviors/registry/ui/core/atoms/ui-label.orb +6 -0
  134. package/behaviors/registry/ui/core/atoms/ui-law-reference-tooltip.orb +6 -0
  135. package/behaviors/registry/ui/core/atoms/ui-overlay.orb +6 -0
  136. package/behaviors/registry/ui/core/atoms/ui-presence.orb +6 -0
  137. package/behaviors/registry/ui/core/atoms/ui-progress-bar.orb +6 -0
  138. package/behaviors/registry/ui/core/atoms/ui-radio.orb +10 -0
  139. package/behaviors/registry/ui/core/atoms/ui-range-slider.orb +10 -0
  140. package/behaviors/registry/ui/core/atoms/ui-section-header.orb +6 -0
  141. package/behaviors/registry/ui/core/atoms/ui-select.orb +6 -0
  142. package/behaviors/registry/ui/core/atoms/ui-spacer.orb +6 -0
  143. package/behaviors/registry/ui/core/atoms/ui-sparkline.orb +6 -0
  144. package/behaviors/registry/ui/core/atoms/ui-spinner.orb +6 -0
  145. package/behaviors/registry/ui/core/atoms/ui-stack.orb +6 -0
  146. package/behaviors/registry/ui/core/atoms/ui-status-dot.orb +6 -0
  147. package/behaviors/registry/ui/core/atoms/ui-svg-branch.orb +6 -0
  148. package/behaviors/registry/ui/core/atoms/ui-svg-connection.orb +6 -0
  149. package/behaviors/registry/ui/core/atoms/ui-svg-flow.orb +6 -0
  150. package/behaviors/registry/ui/core/atoms/ui-svg-grid.orb +6 -0
  151. package/behaviors/registry/ui/core/atoms/ui-svg-lobe.orb +6 -0
  152. package/behaviors/registry/ui/core/atoms/ui-svg-mesh.orb +6 -0
  153. package/behaviors/registry/ui/core/atoms/ui-svg-morph.orb +6 -0
  154. package/behaviors/registry/ui/core/atoms/ui-svg-node.orb +6 -0
  155. package/behaviors/registry/ui/core/atoms/ui-svg-pulse.orb +6 -0
  156. package/behaviors/registry/ui/core/atoms/ui-svg-ring.orb +6 -0
  157. package/behaviors/registry/ui/core/atoms/ui-svg-shield.orb +6 -0
  158. package/behaviors/registry/ui/core/atoms/ui-svg-stack.orb +6 -0
  159. package/behaviors/registry/ui/core/atoms/ui-switch.orb +10 -0
  160. package/behaviors/registry/ui/core/atoms/ui-text-highlight.orb +10 -0
  161. package/behaviors/registry/ui/core/atoms/ui-textarea.orb +6 -0
  162. package/behaviors/registry/ui/core/atoms/ui-theme-toggle.orb +6 -0
  163. package/behaviors/registry/ui/core/atoms/ui-time-slot-cell.orb +10 -0
  164. package/behaviors/registry/ui/core/atoms/ui-trait-frame.orb +6 -0
  165. package/behaviors/registry/ui/core/atoms/ui-trend-indicator.orb +6 -0
  166. package/behaviors/registry/ui/core/atoms/ui-typewriter-text.orb +6 -0
  167. package/behaviors/registry/ui/core/atoms/ui-typography.orb +6 -0
  168. package/behaviors/registry/ui/core/atoms/ui-vstack.orb +6 -0
  169. package/behaviors/registry/ui/core/molecules/std-stat-rows.orb +24 -1
  170. package/behaviors/registry/ui/core/molecules/ui-accordion.orb +6 -0
  171. package/behaviors/registry/ui/core/molecules/ui-activation-block.orb +6 -0
  172. package/behaviors/registry/ui/core/molecules/ui-alert.orb +6 -0
  173. package/behaviors/registry/ui/core/molecules/ui-bloom-quiz-block.orb +6 -0
  174. package/behaviors/registry/ui/core/molecules/ui-branching-logic-builder.orb +6 -0
  175. package/behaviors/registry/ui/core/molecules/ui-breadcrumb.orb +6 -0
  176. package/behaviors/registry/ui/core/molecules/ui-calendar-grid.orb +10 -0
  177. package/behaviors/registry/ui/core/molecules/ui-carousel.orb +6 -0
  178. package/behaviors/registry/ui/core/molecules/ui-chart-legend.orb +6 -0
  179. package/behaviors/registry/ui/core/molecules/ui-chart.orb +6 -0
  180. package/behaviors/registry/ui/core/molecules/ui-code-block.orb +38 -4
  181. package/behaviors/registry/ui/core/molecules/ui-command-palette.orb +10 -0
  182. package/behaviors/registry/ui/core/molecules/ui-confirm-dialog.orb +10 -0
  183. package/behaviors/registry/ui/core/molecules/ui-connection-block.orb +6 -0
  184. package/behaviors/registry/ui/core/molecules/ui-container.orb +6 -0
  185. package/behaviors/registry/ui/core/molecules/ui-content-renderer.orb +6 -0
  186. package/behaviors/registry/ui/core/molecules/ui-data-grid.orb +10 -0
  187. package/behaviors/registry/ui/core/molecules/ui-data-list.orb +10 -0
  188. package/behaviors/registry/ui/core/molecules/ui-date-range-picker.orb +14 -0
  189. package/behaviors/registry/ui/core/molecules/ui-date-range-selector.orb +6 -0
  190. package/behaviors/registry/ui/core/molecules/ui-doc-breadcrumb.orb +6 -0
  191. package/behaviors/registry/ui/core/molecules/ui-doc-pagination.orb +6 -0
  192. package/behaviors/registry/ui/core/molecules/ui-doc-search.orb +6 -0
  193. package/behaviors/registry/ui/core/molecules/ui-doc-sidebar.orb +6 -0
  194. package/behaviors/registry/ui/core/molecules/ui-doc-toc.orb +6 -0
  195. package/behaviors/registry/ui/core/molecules/ui-document-details.orb +10 -0
  196. package/behaviors/registry/ui/core/molecules/ui-document-panel.orb +14 -0
  197. package/behaviors/registry/ui/core/molecules/ui-document-viewer.orb +6 -0
  198. package/behaviors/registry/ui/core/molecules/ui-drawer.orb +10 -0
  199. package/behaviors/registry/ui/core/molecules/ui-edge-decoration.orb +6 -0
  200. package/behaviors/registry/ui/core/molecules/ui-emoji-picker.orb +6 -0
  201. package/behaviors/registry/ui/core/molecules/ui-empty-state.orb +6 -0
  202. package/behaviors/registry/ui/core/molecules/ui-error-boundary.orb +6 -0
  203. package/behaviors/registry/ui/core/molecules/ui-error-state.orb +6 -0
  204. package/behaviors/registry/ui/core/molecules/ui-feature-grid.orb +6 -0
  205. package/behaviors/registry/ui/core/molecules/ui-file-tree.orb +6 -0
  206. package/behaviors/registry/ui/core/molecules/ui-filter-group.orb +14 -0
  207. package/behaviors/registry/ui/core/molecules/ui-flex.orb +6 -0
  208. package/behaviors/registry/ui/core/molecules/ui-flip-card.orb +6 -0
  209. package/behaviors/registry/ui/core/molecules/ui-floating-action-button.orb +6 -0
  210. package/behaviors/registry/ui/core/molecules/ui-floating-toolbar.orb +10 -1
  211. package/behaviors/registry/ui/core/molecules/ui-form-actions.orb +10 -0
  212. package/behaviors/registry/ui/core/molecules/ui-form-field.orb +6 -0
  213. package/behaviors/registry/ui/core/molecules/ui-form-layout.orb +6 -0
  214. package/behaviors/registry/ui/core/molecules/ui-form-section-header.orb +6 -0
  215. package/behaviors/registry/ui/core/molecules/ui-fx-overlay.orb +6 -0
  216. package/behaviors/registry/ui/core/molecules/ui-gradient-divider.orb +6 -0
  217. package/behaviors/registry/ui/core/molecules/ui-graph-canvas.orb +6 -0
  218. package/behaviors/registry/ui/core/molecules/ui-graph-view.orb +6 -0
  219. package/behaviors/registry/ui/core/molecules/ui-grid.orb +6 -0
  220. package/behaviors/registry/ui/core/molecules/ui-header.orb +6 -0
  221. package/behaviors/registry/ui/core/molecules/ui-import-preview-tree.orb +6 -0
  222. package/behaviors/registry/ui/core/molecules/ui-import-progress.orb +6 -0
  223. package/behaviors/registry/ui/core/molecules/ui-import-source-picker.orb +6 -0
  224. package/behaviors/registry/ui/core/molecules/ui-input-group.orb +10 -0
  225. package/behaviors/registry/ui/core/molecules/ui-jazari-state-machine.orb +6 -0
  226. package/behaviors/registry/ui/core/molecules/ui-lightbox.orb +10 -0
  227. package/behaviors/registry/ui/core/molecules/ui-likert-scale.orb +6 -0
  228. package/behaviors/registry/ui/core/molecules/ui-line-chart.orb +6 -0
  229. package/behaviors/registry/ui/core/molecules/ui-loading-state.orb +6 -0
  230. package/behaviors/registry/ui/core/molecules/ui-map-view.orb +6 -0
  231. package/behaviors/registry/ui/core/molecules/ui-markdown-content.orb +6 -0
  232. package/behaviors/registry/ui/core/molecules/ui-matrix-question.orb +6 -0
  233. package/behaviors/registry/ui/core/molecules/ui-menu.orb +21 -0
  234. package/behaviors/registry/ui/core/molecules/ui-meter.orb +6 -0
  235. package/behaviors/registry/ui/core/molecules/ui-modal.orb +10 -0
  236. package/behaviors/registry/ui/core/molecules/ui-navigation.orb +6 -0
  237. package/behaviors/registry/ui/core/molecules/ui-notification.orb +6 -0
  238. package/behaviors/registry/ui/core/molecules/ui-number-stepper.orb +10 -0
  239. package/behaviors/registry/ui/core/molecules/ui-option-constraint-group.orb +6 -0
  240. package/behaviors/registry/ui/core/molecules/ui-orbital-visualization.orb +6 -0
  241. package/behaviors/registry/ui/core/molecules/ui-page-header.orb +6 -0
  242. package/behaviors/registry/ui/core/molecules/ui-page-transition.orb +6 -0
  243. package/behaviors/registry/ui/core/molecules/ui-pagination.orb +10 -0
  244. package/behaviors/registry/ui/core/molecules/ui-popover.orb +10 -0
  245. package/behaviors/registry/ui/core/molecules/ui-positioned-canvas.orb +10 -0
  246. package/behaviors/registry/ui/core/molecules/ui-progress-dots.orb +6 -0
  247. package/behaviors/registry/ui/core/molecules/ui-pull-to-refresh.orb +6 -0
  248. package/behaviors/registry/ui/core/molecules/ui-qr-scanner.orb +6 -0
  249. package/behaviors/registry/ui/core/molecules/ui-quiz-block.orb +6 -0
  250. package/behaviors/registry/ui/core/molecules/ui-reflection-block.orb +6 -0
  251. package/behaviors/registry/ui/core/molecules/ui-relation-select.orb +10 -0
  252. package/behaviors/registry/ui/core/molecules/ui-repeatable-form-section.orb +6 -0
  253. package/behaviors/registry/ui/core/molecules/ui-reply-tree.orb +10 -0
  254. package/behaviors/registry/ui/core/molecules/ui-rich-text-editor.orb +10 -0
  255. package/behaviors/registry/ui/core/molecules/ui-scaled-diagram.orb +6 -0
  256. package/behaviors/registry/ui/core/molecules/ui-search-input.orb +14 -0
  257. package/behaviors/registry/ui/core/molecules/ui-section.orb +6 -0
  258. package/behaviors/registry/ui/core/molecules/ui-side-panel.orb +10 -0
  259. package/behaviors/registry/ui/core/molecules/ui-sidebar.orb +10 -0
  260. package/behaviors/registry/ui/core/molecules/ui-signature-pad.orb +6 -0
  261. package/behaviors/registry/ui/core/molecules/ui-simple-grid.orb +6 -0
  262. package/behaviors/registry/ui/core/molecules/ui-skeleton.orb +6 -0
  263. package/behaviors/registry/ui/core/molecules/ui-social-proof.orb +6 -0
  264. package/behaviors/registry/ui/core/molecules/ui-sortable-list.orb +10 -0
  265. package/behaviors/registry/ui/core/molecules/ui-split.orb +6 -0
  266. package/behaviors/registry/ui/core/molecules/ui-star-rating.orb +10 -0
  267. package/behaviors/registry/ui/core/molecules/ui-stat-display.orb +6 -0
  268. package/behaviors/registry/ui/core/molecules/ui-swipeable-row.orb +6 -0
  269. package/behaviors/registry/ui/core/molecules/ui-table-view.orb +10 -0
  270. package/behaviors/registry/ui/core/molecules/ui-tabs.orb +6 -0
  271. package/behaviors/registry/ui/core/molecules/ui-tag-input.orb +6 -0
  272. package/behaviors/registry/ui/core/molecules/ui-tooltip.orb +6 -0
  273. package/behaviors/registry/ui/core/molecules/ui-upload-drop-zone.orb +6 -0
  274. package/behaviors/registry/ui/core/molecules/ui-version-diff.orb +6 -0
  275. package/behaviors/registry/ui/core/molecules/ui-violation-alert.orb +6 -0
  276. package/behaviors/registry/ui/core/molecules/ui-vote-stack.orb +6 -0
  277. package/behaviors/registry/ui/core/molecules/ui-wizard-container.orb +6 -0
  278. package/behaviors/registry/ui/core/molecules/ui-wizard-navigation.orb +14 -0
  279. package/behaviors/registry/ui/core/molecules/ui-wizard-progress.orb +6 -0
  280. package/behaviors/registry/ui/core/organisms/ui-chat-bar.orb +6 -0
  281. package/behaviors/registry/ui/core/organisms/ui-code-runner-panel.orb +6 -0
  282. package/behaviors/registry/ui/core/organisms/ui-dashboard-grid.orb +6 -0
  283. package/behaviors/registry/ui/core/organisms/ui-detail-panel.orb +10 -0
  284. package/behaviors/registry/ui/core/organisms/ui-dock-layout.orb +6 -0
  285. package/behaviors/registry/ui/core/organisms/ui-drawer-slot.orb +10 -0
  286. package/behaviors/registry/ui/core/organisms/ui-entity-cards.orb +10 -0
  287. package/behaviors/registry/ui/core/organisms/ui-entity-list.orb +10 -0
  288. package/behaviors/registry/ui/core/organisms/ui-entity-table.orb +10 -0
  289. package/behaviors/registry/ui/core/organisms/ui-form-section.orb +10 -0
  290. package/behaviors/registry/ui/core/organisms/ui-form.orb +10 -0
  291. package/behaviors/registry/ui/core/organisms/ui-master-detail-layout.orb +6 -0
  292. package/behaviors/registry/ui/core/organisms/ui-master-detail.orb +10 -0
  293. package/behaviors/registry/ui/core/organisms/ui-media-gallery.orb +10 -0
  294. package/behaviors/registry/ui/core/organisms/ui-modal-slot.orb +10 -0
  295. package/behaviors/registry/ui/core/organisms/ui-runtime-debugger.orb +6 -0
  296. package/behaviors/registry/ui/core/organisms/ui-segment-renderer.orb +6 -0
  297. package/behaviors/registry/ui/core/organisms/ui-split-pane.orb +10 -0
  298. package/behaviors/registry/ui/core/organisms/ui-stat-card.orb +10 -0
  299. package/behaviors/registry/ui/core/organisms/ui-state-machine-view.orb +6 -0
  300. package/behaviors/registry/ui/core/organisms/ui-subagent-trace-panel.orb +10 -0
  301. package/behaviors/registry/ui/core/organisms/ui-tabbed-container.orb +6 -0
  302. package/behaviors/registry/ui/core/organisms/ui-timeline.orb +10 -0
  303. package/behaviors/registry/ui/core/organisms/ui-toast-slot.orb +10 -0
  304. package/behaviors/registry/ui/core/templates/ui-counter-template.orb +10 -0
  305. package/behaviors/registry/ui/core/templates/ui-dashboard-layout.orb +6 -0
  306. package/behaviors/registry/ui/core/templates/ui-generic-app-template.orb +10 -0
  307. package/behaviors/registry/ui/game/atoms/std-arcade-flow.orb +10 -0
  308. package/behaviors/registry/ui/game/atoms/std-arcade-play.orb +89 -1
  309. package/behaviors/registry/ui/game/atoms/std-area-fill.orb +219 -4
  310. package/behaviors/registry/ui/game/atoms/std-audio-cue.orb +30 -0
  311. package/behaviors/registry/ui/game/atoms/std-camera-rig.orb +63 -0
  312. package/behaviors/registry/ui/game/atoms/std-chase-ai.orb +133 -1
  313. package/behaviors/registry/ui/game/atoms/std-choice-gate.orb +122 -3
  314. package/behaviors/registry/ui/game/atoms/std-coef-pad.orb +159 -3
  315. package/behaviors/registry/ui/game/atoms/std-curve-fog.orb +26 -1
  316. package/behaviors/registry/ui/game/atoms/std-dungeon-combat.orb +150 -1
  317. package/behaviors/registry/ui/game/atoms/std-fx-narrative.orb +18 -0
  318. package/behaviors/registry/ui/game/atoms/std-fx-particles.orb +15 -0
  319. package/behaviors/registry/ui/game/atoms/std-fx-trail.orb +40 -1
  320. package/behaviors/registry/ui/game/atoms/std-gate-lock.orb +120 -3
  321. package/behaviors/registry/ui/game/atoms/std-gather.orb +180 -1
  322. package/behaviors/registry/ui/game/atoms/std-gold.orb +10 -0
  323. package/behaviors/registry/ui/game/atoms/std-grid-tactics.orb +130 -1
  324. package/behaviors/registry/ui/game/atoms/std-hero-nav.orb +92 -1
  325. package/behaviors/registry/ui/game/atoms/std-lives.orb +38 -0
  326. package/behaviors/registry/ui/game/atoms/std-loop-lock.orb +117 -3
  327. package/behaviors/registry/ui/game/atoms/std-market-flow.orb +10 -0
  328. package/behaviors/registry/ui/game/atoms/std-mesh-asset-art.orb +10 -0
  329. package/behaviors/registry/ui/game/atoms/std-motion-body.orb +68 -1
  330. package/behaviors/registry/ui/game/atoms/std-objective-flow.orb +10 -0
  331. package/behaviors/registry/ui/game/atoms/std-objective-reach.orb +184 -1
  332. package/behaviors/registry/ui/game/atoms/std-pad-lock.orb +118 -3
  333. package/behaviors/registry/ui/game/atoms/std-patience.orb +215 -1
  334. package/behaviors/registry/ui/game/atoms/std-patrol-hazard.orb +161 -3
  335. package/behaviors/registry/ui/game/atoms/std-pickup.orb +387 -24
  336. package/behaviors/registry/ui/game/atoms/std-platformer-body.orb +505 -17
  337. package/behaviors/registry/ui/game/atoms/std-production.orb +14 -0
  338. package/behaviors/registry/ui/game/atoms/std-round-flow.orb +10 -0
  339. package/behaviors/registry/ui/game/atoms/std-score.orb +10 -0
  340. package/behaviors/registry/ui/game/atoms/std-survival-flow.orb +10 -0
  341. package/behaviors/registry/ui/game/atoms/std-svg-asset-art.orb +10 -0
  342. package/behaviors/registry/ui/game/atoms/std-tutorial-autodemo.orb +117 -1
  343. package/behaviors/registry/ui/game/atoms/std-tutorial-overlay.orb +36 -0
  344. package/behaviors/registry/ui/game/atoms/std-velocity-gate.orb +140 -3
  345. package/behaviors/registry/ui/game/atoms/std-xp.orb +22 -0
  346. package/behaviors/registry/ui/game/atoms/std-zone-card.orb +70 -1
  347. package/behaviors/registry/ui/game/atoms/ui-action-palette.orb +6 -0
  348. package/behaviors/registry/ui/game/atoms/ui-action-tile.orb +6 -0
  349. package/behaviors/registry/ui/game/atoms/ui-canvas-2d.orb +6 -0
  350. package/behaviors/registry/ui/game/atoms/ui-canvas.orb +6 -0
  351. package/behaviors/registry/ui/game/atoms/ui-choice-button.orb +6 -0
  352. package/behaviors/registry/ui/game/atoms/ui-control-button.orb +6 -0
  353. package/behaviors/registry/ui/game/atoms/ui-control-grid.orb +6 -0
  354. package/behaviors/registry/ui/game/atoms/ui-dialogue-bubble.orb +6 -0
  355. package/behaviors/registry/ui/game/atoms/ui-draw-fx-layer.orb +6 -0
  356. package/behaviors/registry/ui/game/atoms/ui-draw-group.orb +6 -0
  357. package/behaviors/registry/ui/game/atoms/ui-draw-mesh.orb +6 -0
  358. package/behaviors/registry/ui/game/atoms/ui-draw-shape-layer.orb +6 -0
  359. package/behaviors/registry/ui/game/atoms/ui-draw-shape.orb +6 -0
  360. package/behaviors/registry/ui/game/atoms/ui-draw-sprite-layer.orb +6 -0
  361. package/behaviors/registry/ui/game/atoms/ui-draw-sprite.orb +6 -0
  362. package/behaviors/registry/ui/game/atoms/ui-draw-text-layer.orb +6 -0
  363. package/behaviors/registry/ui/game/atoms/ui-draw-text.orb +6 -0
  364. package/behaviors/registry/ui/game/atoms/ui-game-audio-cue.orb +6 -0
  365. package/behaviors/registry/ui/game/atoms/ui-game-audio-toggle.orb +6 -0
  366. package/behaviors/registry/ui/game/atoms/ui-game-hud.orb +6 -0
  367. package/behaviors/registry/ui/game/atoms/ui-game-menu.orb +6 -0
  368. package/behaviors/registry/ui/game/atoms/ui-health-bar.orb +6 -0
  369. package/behaviors/registry/ui/game/atoms/ui-score-display.orb +6 -0
  370. package/behaviors/registry/ui/game/atoms/ui-sequence-bar.orb +6 -0
  371. package/behaviors/registry/ui/game/atoms/ui-stat-badge.orb +6 -0
  372. package/behaviors/registry/ui/game/atoms/ui-state-graph.orb +6 -0
  373. package/behaviors/registry/ui/game/atoms/ui-state-json-view.orb +6 -0
  374. package/behaviors/registry/ui/game/atoms/ui-timer-display.orb +84 -1
  375. package/behaviors/registry/ui/game/atoms/ui-trait-slot.orb +10 -0
  376. package/behaviors/registry/ui/game/organisms/std-arcade-board-3d.orb +567 -8
  377. package/behaviors/registry/ui/game/organisms/std-crew-board-2d.orb +545 -6
  378. package/behaviors/registry/ui/game/organisms/std-dungeon-board-2d.orb +804 -10
  379. package/behaviors/registry/ui/game/organisms/std-market-board-3d.orb +597 -8
  380. package/behaviors/registry/ui/game/organisms/std-objective-board-3d.orb +565 -8
  381. package/behaviors/registry/ui/game/organisms/std-platformer-board-2d.orb +561 -6
  382. package/behaviors/registry/ui/game/organisms/std-platformer-puzzle.orb +12 -0
  383. package/behaviors/registry/ui/game/organisms/std-survival-board-3d.orb +551 -8
  384. package/behaviors/registry/ui/game/organisms/std-tactics-board-2d.orb +667 -12
  385. package/behaviors/registry/ui/game/organisms/std-tactics-board-3d.orb +707 -8
  386. package/behaviors/registry/ui/game/organisms/std-worldmap-board-2d.orb +506 -6
  387. package/behaviors/registry/ui/game/templates/ui-game-shell.orb +115 -1
  388. package/behaviors/registry/ui/learning/atoms/std-learn-arrangement.orb +201 -1
  389. package/behaviors/registry/ui/learning/atoms/std-learn-classify.orb +325 -1
  390. package/behaviors/registry/ui/learning/atoms/std-learn-compare.orb +108 -1
  391. package/behaviors/registry/ui/learning/atoms/std-learn-coupled-sim.orb +147 -1
  392. package/behaviors/registry/ui/learning/atoms/std-learn-derivation.orb +190 -1
  393. package/behaviors/registry/ui/learning/atoms/std-learn-diagram.orb +111 -1
  394. package/behaviors/registry/ui/learning/atoms/std-learn-doser.orb +164 -1
  395. package/behaviors/registry/ui/learning/atoms/std-learn-estimate.orb +105 -1
  396. package/behaviors/registry/ui/learning/atoms/std-learn-fx-cues.orb +169 -1
  397. package/behaviors/registry/ui/learning/atoms/std-learn-goal-seek.orb +128 -1
  398. package/behaviors/registry/ui/learning/atoms/std-learn-grid-sim.orb +123 -2
  399. package/behaviors/registry/ui/learning/atoms/std-learn-hotspot.orb +178 -1
  400. package/behaviors/registry/ui/learning/atoms/std-learn-live-sim.orb +105 -1
  401. package/behaviors/registry/ui/learning/atoms/std-learn-measure.orb +145 -1
  402. package/behaviors/registry/ui/learning/atoms/std-learn-param-explorer.orb +100 -1
  403. package/behaviors/registry/ui/learning/atoms/std-learn-perturb.orb +133 -1
  404. package/behaviors/registry/ui/learning/atoms/std-learn-predict.orb +247 -1
  405. package/behaviors/registry/ui/learning/atoms/std-learn-sample-accumulator.orb +180 -1
  406. package/behaviors/registry/ui/learning/atoms/std-learn-sandbox.orb +135 -1
  407. package/behaviors/registry/ui/learning/atoms/std-learn-scatter-fit.orb +206 -1
  408. package/behaviors/registry/ui/learning/atoms/std-learn-scenario.orb +129 -1
  409. package/behaviors/registry/ui/learning/atoms/std-learn-sim-3d.orb +53 -0
  410. package/behaviors/registry/ui/learning/atoms/std-learn-slope-probe.orb +168 -8
  411. package/behaviors/registry/ui/learning/atoms/std-learn-speed-drill.orb +135 -1
  412. package/behaviors/registry/ui/learning/atoms/std-learn-stepper.orb +254 -1
  413. package/behaviors/registry/ui/learning/atoms/std-learn-tour-3d.orb +315 -1
  414. package/behaviors/registry/ui/learning/atoms/std-learn-trace-player.orb +131 -1
  415. package/behaviors/registry/ui/learning/atoms/std-learn-transport.orb +57 -0
  416. package/behaviors/registry/ui/learning/atoms/std-learn-tree.orb +214 -1
  417. package/behaviors/registry/ui/learning/atoms/ui-algo-graph-canvas.orb +6 -0
  418. package/behaviors/registry/ui/learning/atoms/ui-algorithm-canvas.orb +6 -0
  419. package/behaviors/registry/ui/learning/atoms/ui-biology-canvas.orb +6 -0
  420. package/behaviors/registry/ui/learning/atoms/ui-chemistry-canvas.orb +6 -0
  421. package/behaviors/registry/ui/learning/atoms/ui-learning-canvas.orb +6 -0
  422. package/behaviors/registry/ui/learning/atoms/ui-math-canvas.orb +6 -0
  423. package/behaviors/registry/ui/learning/atoms/ui-physics-canvas.orb +6 -0
  424. package/behaviors/registry/ui/marketing/atoms/std-marketing-article.orb +1 -2
  425. package/behaviors/registry/ui/marketing/atoms/std-marketing-cta.orb +14 -0
  426. package/behaviors/registry/ui/marketing/atoms/std-marketing-features.orb +37 -1
  427. package/behaviors/registry/ui/marketing/atoms/std-marketing-footer.orb +52 -2
  428. package/behaviors/registry/ui/marketing/atoms/std-marketing-hero.orb +14 -0
  429. package/behaviors/registry/ui/marketing/atoms/std-marketing-nav.orb +25 -1
  430. package/behaviors/registry/ui/marketing/atoms/std-marketing-pricing.orb +59 -1
  431. package/behaviors/registry/ui/marketing/atoms/std-marketing-showcase.orb +62 -1
  432. package/behaviors/registry/ui/marketing/atoms/std-marketing-split.orb +1 -2
  433. package/behaviors/registry/ui/marketing/atoms/std-marketing-stats.orb +15 -2
  434. package/behaviors/registry/ui/marketing/atoms/std-marketing-steps.orb +28 -2
  435. package/behaviors/registry/ui/marketing/atoms/std-marketing-team.orb +33 -2
  436. package/behaviors/registry/ui/marketing/atoms/ui-animated-counter.orb +6 -0
  437. package/behaviors/registry/ui/marketing/atoms/ui-animated-graphic.orb +6 -0
  438. package/behaviors/registry/ui/marketing/atoms/ui-animated-reveal.orb +6 -0
  439. package/behaviors/registry/ui/marketing/atoms/ui-article-section.orb +6 -0
  440. package/behaviors/registry/ui/marketing/atoms/ui-case-study-card.orb +6 -0
  441. package/behaviors/registry/ui/marketing/atoms/ui-community-links.orb +6 -0
  442. package/behaviors/registry/ui/marketing/atoms/ui-content-section.orb +6 -0
  443. package/behaviors/registry/ui/marketing/atoms/ui-cta-banner.orb +6 -0
  444. package/behaviors/registry/ui/marketing/atoms/ui-feature-card.orb +6 -0
  445. package/behaviors/registry/ui/marketing/atoms/ui-geometric-pattern.orb +6 -0
  446. package/behaviors/registry/ui/marketing/atoms/ui-hero-section.orb +6 -0
  447. package/behaviors/registry/ui/marketing/atoms/ui-install-box.orb +6 -0
  448. package/behaviors/registry/ui/marketing/atoms/ui-marketing-footer.orb +6 -0
  449. package/behaviors/registry/ui/marketing/atoms/ui-marketing-stat-card.orb +6 -0
  450. package/behaviors/registry/ui/marketing/atoms/ui-pattern-tile.orb +6 -0
  451. package/behaviors/registry/ui/marketing/atoms/ui-pricing-card.orb +6 -0
  452. package/behaviors/registry/ui/marketing/atoms/ui-pricing-grid.orb +6 -0
  453. package/behaviors/registry/ui/marketing/atoms/ui-pull-quote.orb +6 -0
  454. package/behaviors/registry/ui/marketing/atoms/ui-service-catalog.orb +6 -0
  455. package/behaviors/registry/ui/marketing/atoms/ui-showcase-card.orb +6 -0
  456. package/behaviors/registry/ui/marketing/atoms/ui-split-section.orb +6 -0
  457. package/behaviors/registry/ui/marketing/atoms/ui-stats-grid.orb +6 -0
  458. package/behaviors/registry/ui/marketing/atoms/ui-step-flow.orb +6 -0
  459. package/behaviors/registry/ui/marketing/atoms/ui-tag-cloud.orb +6 -0
  460. package/behaviors/registry/ui/marketing/atoms/ui-team-card.orb +6 -0
  461. package/behaviors/registry/ui/marketing/organisms/ui-book-chapter-view.orb +10 -0
  462. package/behaviors/registry/ui/marketing/organisms/ui-book-cover-page.orb +6 -0
  463. package/behaviors/registry/ui/marketing/organisms/ui-book-nav-bar.orb +6 -0
  464. package/behaviors/registry/ui/marketing/organisms/ui-book-table-of-contents.orb +10 -0
  465. package/behaviors/registry/ui/marketing/organisms/ui-book-viewer.orb +10 -0
  466. package/behaviors/registry/ui/marketing/organisms/ui-case-study-organism.orb +10 -0
  467. package/behaviors/registry/ui/marketing/organisms/ui-feature-grid-organism.orb +10 -0
  468. package/behaviors/registry/ui/marketing/organisms/ui-hero-organism.orb +10 -0
  469. package/behaviors/registry/ui/marketing/organisms/ui-pricing-organism.orb +10 -0
  470. package/behaviors/registry/ui/marketing/organisms/ui-showcase-organism.orb +10 -0
  471. package/behaviors/registry/ui/marketing/organisms/ui-stats-organism.orb +10 -0
  472. package/behaviors/registry/ui/marketing/organisms/ui-step-flow-organism.orb +10 -0
  473. package/behaviors/registry/ui/marketing/organisms/ui-team-organism.orb +10 -0
  474. package/behaviors/registry/ui/marketing/templates/ui-about-page-template.orb +10 -0
  475. package/behaviors/registry/ui/marketing/templates/ui-auth-layout.orb +6 -0
  476. package/behaviors/registry/ui/marketing/templates/ui-feature-detail-page-template.orb +10 -0
  477. package/behaviors/registry/ui/marketing/templates/ui-landing-page-template.orb +10 -0
  478. package/behaviors/registry/ui/marketing/templates/ui-pricing-page-template.orb +10 -0
  479. package/dist/behaviors/exports-reader.js +3799 -3
  480. package/dist/behaviors/functions/index.d.ts +59 -31
  481. package/dist/behaviors/functions/index.js +3799 -3
  482. package/dist/behaviors/index.js +3799 -3
  483. package/dist/behaviors/query.d.ts +6 -0
  484. package/dist/behaviors/query.js +3799 -3
  485. package/dist/behaviors-embeddings.hash.json +3 -3
  486. package/dist/behaviors-embeddings.json +25 -25
  487. package/dist/behaviors-registry.json +9320 -88
  488. package/dist/index.js +3799 -3
  489. package/dist/knob-embeddings.hash.json +3 -3
  490. package/dist/knob-embeddings.json +1 -1
  491. package/dist/registry/factory-signatures.json +1 -1
  492. package/package.json +2 -2
@@ -98,6 +98,27 @@ function stdAgentCompletionAgentCompletionOrbital(params = {}) {
98
98
  traits: [
99
99
  {
100
100
  "category": "lifecycle",
101
+ "effectRow": [
102
+ {
103
+ "kind": "emit",
104
+ "resource": "COMPLETED"
105
+ },
106
+ {
107
+ "kind": "llm/generate"
108
+ },
109
+ {
110
+ "kind": "set",
111
+ "resource": "@entity.prompt"
112
+ },
113
+ {
114
+ "kind": "set",
115
+ "resource": "@entity.response"
116
+ },
117
+ {
118
+ "kind": "set",
119
+ "resource": "@entity.status"
120
+ }
121
+ ],
101
122
  "emits": [
102
123
  {
103
124
  "event": "COMPLETED",
@@ -308,6 +329,12 @@ function stdAgentCompletionAgentCompletionOrbital(params = {}) {
308
329
  },
309
330
  {
310
331
  "category": "lifecycle",
332
+ "effectRow": [
333
+ {
334
+ "kind": "set",
335
+ "resource": "@entity.status"
336
+ }
337
+ ],
311
338
  "linkedEntity": "Completion",
312
339
  "listens": [
313
340
  {
@@ -585,6 +612,23 @@ function stdAgentContextAgentContextOrbital(params = {}) {
585
612
  traits: [
586
613
  {
587
614
  "category": "lifecycle",
615
+ "effectRow": [
616
+ {
617
+ "kind": "emit",
618
+ "resource": "COUNTED"
619
+ },
620
+ {
621
+ "kind": "llm/token-count"
622
+ },
623
+ {
624
+ "kind": "set",
625
+ "resource": "@entity.status"
626
+ },
627
+ {
628
+ "kind": "set",
629
+ "resource": "@entity.tokenCount"
630
+ }
631
+ ],
588
632
  "emits": [
589
633
  {
590
634
  "event": "COUNTED",
@@ -777,6 +821,30 @@ function stdAgentContextAgentContextOrbital(params = {}) {
777
821
  },
778
822
  {
779
823
  "category": "lifecycle",
824
+ "effectRow": [
825
+ {
826
+ "kind": "emit",
827
+ "resource": "COMPACTED"
828
+ },
829
+ {
830
+ "kind": "llm/compact"
831
+ },
832
+ {
833
+ "kind": "llm/token-count"
834
+ },
835
+ {
836
+ "kind": "set",
837
+ "resource": "@entity.afterTokens"
838
+ },
839
+ {
840
+ "kind": "set",
841
+ "resource": "@entity.beforeTokens"
842
+ },
843
+ {
844
+ "kind": "set",
845
+ "resource": "@entity.status"
846
+ }
847
+ ],
780
848
  "emits": [
781
849
  {
782
850
  "event": "COMPACTED",
@@ -1111,6 +1179,12 @@ function stdAgentContextAgentContextOrbital(params = {}) {
1111
1179
  },
1112
1180
  {
1113
1181
  "category": "lifecycle",
1182
+ "effectRow": [
1183
+ {
1184
+ "kind": "set",
1185
+ "resource": "@entity.status"
1186
+ }
1187
+ ],
1114
1188
  "linkedEntity": "ContextWindow",
1115
1189
  "listens": [
1116
1190
  {
@@ -1441,6 +1515,34 @@ function stdAgentFixLoopAgentFixLoopOrbital(params = {}) {
1441
1515
  traits: [
1442
1516
  {
1443
1517
  "category": "lifecycle",
1518
+ "effectRow": [
1519
+ {
1520
+ "kind": "emit",
1521
+ "resource": "FIX_APPLIED"
1522
+ },
1523
+ {
1524
+ "kind": "llm/generate"
1525
+ },
1526
+ {
1527
+ "kind": "set",
1528
+ "resource": "@entity.errors"
1529
+ },
1530
+ {
1531
+ "kind": "set",
1532
+ "resource": "@entity.fixPrompt"
1533
+ },
1534
+ {
1535
+ "kind": "set",
1536
+ "resource": "@entity.orbitalName"
1537
+ },
1538
+ {
1539
+ "kind": "set",
1540
+ "resource": "@entity.status"
1541
+ },
1542
+ {
1543
+ "kind": "validate/validate"
1544
+ }
1545
+ ],
1444
1546
  "emits": [
1445
1547
  {
1446
1548
  "event": "FIX_APPLIED",
@@ -1654,6 +1756,12 @@ function stdAgentFixLoopAgentFixLoopOrbital(params = {}) {
1654
1756
  },
1655
1757
  {
1656
1758
  "category": "lifecycle",
1759
+ "effectRow": [
1760
+ {
1761
+ "kind": "set",
1762
+ "resource": "@entity.status"
1763
+ }
1764
+ ],
1657
1765
  "linkedEntity": "FixLoop",
1658
1766
  "listens": [
1659
1767
  {
@@ -1966,6 +2074,39 @@ function stdAgentMemoryAgentMemoryOrbital(params = {}) {
1966
2074
  traits: [
1967
2075
  {
1968
2076
  "category": "lifecycle",
2077
+ "effectRow": [
2078
+ {
2079
+ "kind": "emit",
2080
+ "resource": "RECALLED"
2081
+ },
2082
+ {
2083
+ "kind": "memory/recall"
2084
+ },
2085
+ {
2086
+ "kind": "set",
2087
+ "resource": "@entity.category"
2088
+ },
2089
+ {
2090
+ "kind": "set",
2091
+ "resource": "@entity.content"
2092
+ },
2093
+ {
2094
+ "kind": "set",
2095
+ "resource": "@entity.memoryId"
2096
+ },
2097
+ {
2098
+ "kind": "set",
2099
+ "resource": "@entity.query"
2100
+ },
2101
+ {
2102
+ "kind": "set",
2103
+ "resource": "@entity.results"
2104
+ },
2105
+ {
2106
+ "kind": "set",
2107
+ "resource": "@entity.status"
2108
+ }
2109
+ ],
1969
2110
  "emits": [
1970
2111
  {
1971
2112
  "event": "RECALLED",
@@ -2198,6 +2339,31 @@ function stdAgentMemoryAgentMemoryOrbital(params = {}) {
2198
2339
  },
2199
2340
  {
2200
2341
  "category": "lifecycle",
2342
+ "effectRow": [
2343
+ {
2344
+ "kind": "emit",
2345
+ "resource": "STORED"
2346
+ },
2347
+ {
2348
+ "kind": "memory/store"
2349
+ },
2350
+ {
2351
+ "kind": "set",
2352
+ "resource": "@entity.category"
2353
+ },
2354
+ {
2355
+ "kind": "set",
2356
+ "resource": "@entity.content"
2357
+ },
2358
+ {
2359
+ "kind": "set",
2360
+ "resource": "@entity.memoryId"
2361
+ },
2362
+ {
2363
+ "kind": "set",
2364
+ "resource": "@entity.status"
2365
+ }
2366
+ ],
2201
2367
  "emits": [
2202
2368
  {
2203
2369
  "event": "STORED",
@@ -2436,6 +2602,12 @@ function stdAgentMemoryAgentMemoryOrbital(params = {}) {
2436
2602
  },
2437
2603
  {
2438
2604
  "category": "lifecycle",
2605
+ "effectRow": [
2606
+ {
2607
+ "kind": "set",
2608
+ "resource": "@entity.status"
2609
+ }
2610
+ ],
2439
2611
  "linkedEntity": "AgentMemory",
2440
2612
  "listens": [
2441
2613
  {
@@ -2752,6 +2924,34 @@ function stdAgentPlannerAgentPlannerOrbital(params = {}) {
2752
2924
  traits: [
2753
2925
  {
2754
2926
  "category": "lifecycle",
2927
+ "effectRow": [
2928
+ {
2929
+ "kind": "emit",
2930
+ "resource": "PLANNED"
2931
+ },
2932
+ {
2933
+ "kind": "llm/generate"
2934
+ },
2935
+ {
2936
+ "kind": "memory/recall"
2937
+ },
2938
+ {
2939
+ "kind": "set",
2940
+ "resource": "@entity.memories"
2941
+ },
2942
+ {
2943
+ "kind": "set",
2944
+ "resource": "@entity.plan"
2945
+ },
2946
+ {
2947
+ "kind": "set",
2948
+ "resource": "@entity.prompt"
2949
+ },
2950
+ {
2951
+ "kind": "set",
2952
+ "resource": "@entity.status"
2953
+ }
2954
+ ],
2755
2955
  "emits": [
2756
2956
  {
2757
2957
  "event": "PLANNED",
@@ -3063,6 +3263,12 @@ function stdAgentPlannerAgentPlannerOrbital(params = {}) {
3063
3263
  },
3064
3264
  {
3065
3265
  "category": "lifecycle",
3266
+ "effectRow": [
3267
+ {
3268
+ "kind": "set",
3269
+ "resource": "@entity.status"
3270
+ }
3271
+ ],
3066
3272
  "linkedEntity": "PlannerPlan",
3067
3273
  "listens": [
3068
3274
  {
@@ -3382,6 +3588,34 @@ function stdAgentSessionAgentSessionOrbital(params = {}) {
3382
3588
  traits: [
3383
3589
  {
3384
3590
  "category": "lifecycle",
3591
+ "effectRow": [
3592
+ {
3593
+ "kind": "emit",
3594
+ "resource": "SPEC_READ"
3595
+ },
3596
+ {
3597
+ "kind": "session/read-history"
3598
+ },
3599
+ {
3600
+ "kind": "session/read-spec"
3601
+ },
3602
+ {
3603
+ "kind": "set",
3604
+ "resource": "@entity.history"
3605
+ },
3606
+ {
3607
+ "kind": "set",
3608
+ "resource": "@entity.orbitalName"
3609
+ },
3610
+ {
3611
+ "kind": "set",
3612
+ "resource": "@entity.spec"
3613
+ },
3614
+ {
3615
+ "kind": "set",
3616
+ "resource": "@entity.status"
3617
+ }
3618
+ ],
3385
3619
  "emits": [
3386
3620
  {
3387
3621
  "event": "SPEC_READ",
@@ -3749,6 +3983,27 @@ function stdAgentSessionAgentSessionOrbital(params = {}) {
3749
3983
  },
3750
3984
  {
3751
3985
  "category": "lifecycle",
3986
+ "effectRow": [
3987
+ {
3988
+ "kind": "emit",
3989
+ "resource": "SPEC_WRITTEN"
3990
+ },
3991
+ {
3992
+ "kind": "session/write-spec"
3993
+ },
3994
+ {
3995
+ "kind": "set",
3996
+ "resource": "@entity.orbitalName"
3997
+ },
3998
+ {
3999
+ "kind": "set",
4000
+ "resource": "@entity.spec"
4001
+ },
4002
+ {
4003
+ "kind": "set",
4004
+ "resource": "@entity.status"
4005
+ }
4006
+ ],
3752
4007
  "emits": [
3753
4008
  {
3754
4009
  "event": "SPEC_WRITTEN",
@@ -3923,6 +4178,12 @@ function stdAgentSessionAgentSessionOrbital(params = {}) {
3923
4178
  },
3924
4179
  {
3925
4180
  "category": "lifecycle",
4181
+ "effectRow": [
4182
+ {
4183
+ "kind": "set",
4184
+ "resource": "@entity.status"
4185
+ }
4186
+ ],
3926
4187
  "linkedEntity": "AgentSession",
3927
4188
  "listens": [
3928
4189
  {
@@ -4273,6 +4534,27 @@ function stdAgentToolCallAgentToolCallOrbital(params = {}) {
4273
4534
  traits: [
4274
4535
  {
4275
4536
  "category": "lifecycle",
4537
+ "effectRow": [
4538
+ {
4539
+ "kind": "llm/call-tools"
4540
+ },
4541
+ {
4542
+ "kind": "set",
4543
+ "resource": "@entity.messages"
4544
+ },
4545
+ {
4546
+ "kind": "set",
4547
+ "resource": "@entity.response"
4548
+ },
4549
+ {
4550
+ "kind": "set",
4551
+ "resource": "@entity.status"
4552
+ },
4553
+ {
4554
+ "kind": "set",
4555
+ "resource": "@entity.tools"
4556
+ }
4557
+ ],
4276
4558
  "emits": [
4277
4559
  {
4278
4560
  "event": "TOOLS_CALLED",
@@ -4512,6 +4794,12 @@ function stdAgentToolCallAgentToolCallOrbital(params = {}) {
4512
4794
  },
4513
4795
  {
4514
4796
  "category": "lifecycle",
4797
+ "effectRow": [
4798
+ {
4799
+ "kind": "set",
4800
+ "resource": "@entity.status"
4801
+ }
4802
+ ],
4515
4803
  "linkedEntity": "ToolCall",
4516
4804
  "listens": [
4517
4805
  {
@@ -4828,6 +5116,35 @@ function stdAgentToolLoopAgentToolLoopOrbital(params = {}) {
4828
5116
  traits: [
4829
5117
  {
4830
5118
  "category": "lifecycle",
5119
+ "effectRow": [
5120
+ {
5121
+ "kind": "emit",
5122
+ "resource": "LOOP_STEP"
5123
+ },
5124
+ {
5125
+ "kind": "llm/call-tools"
5126
+ },
5127
+ {
5128
+ "kind": "set",
5129
+ "resource": "@entity.iterations"
5130
+ },
5131
+ {
5132
+ "kind": "set",
5133
+ "resource": "@entity.messages"
5134
+ },
5135
+ {
5136
+ "kind": "set",
5137
+ "resource": "@entity.response"
5138
+ },
5139
+ {
5140
+ "kind": "set",
5141
+ "resource": "@entity.status"
5142
+ },
5143
+ {
5144
+ "kind": "set",
5145
+ "resource": "@entity.tools"
5146
+ }
5147
+ ],
4831
5148
  "emits": [
4832
5149
  {
4833
5150
  "event": "LOOP_STEP",
@@ -5223,6 +5540,12 @@ function stdAgentToolLoopAgentToolLoopOrbital(params = {}) {
5223
5540
  },
5224
5541
  {
5225
5542
  "category": "lifecycle",
5543
+ "effectRow": [
5544
+ {
5545
+ "kind": "set",
5546
+ "resource": "@entity.status"
5547
+ }
5548
+ ],
5226
5549
  "linkedEntity": "ToolLoop",
5227
5550
  "listens": [
5228
5551
  {
@@ -5476,6 +5799,30 @@ function stdAgentTraceAgentTraceOrbital(params = {}) {
5476
5799
  traits: [
5477
5800
  {
5478
5801
  "category": "lifecycle",
5802
+ "effectRow": [
5803
+ {
5804
+ "kind": "emit",
5805
+ "resource": "TRACED"
5806
+ },
5807
+ {
5808
+ "kind": "set",
5809
+ "resource": "@entity.event"
5810
+ },
5811
+ {
5812
+ "kind": "set",
5813
+ "resource": "@entity.level"
5814
+ },
5815
+ {
5816
+ "kind": "set",
5817
+ "resource": "@entity.message"
5818
+ },
5819
+ {
5820
+ "kind": "trace/emit"
5821
+ },
5822
+ {
5823
+ "kind": "trace/log"
5824
+ }
5825
+ ],
5479
5826
  "emits": [
5480
5827
  {
5481
5828
  "event": "TRACED"
@@ -5602,6 +5949,20 @@ function stdAgentTraceAgentTraceOrbital(params = {}) {
5602
5949
  },
5603
5950
  {
5604
5951
  "category": "lifecycle",
5952
+ "effectRow": [
5953
+ {
5954
+ "kind": "set",
5955
+ "resource": "@entity.event"
5956
+ },
5957
+ {
5958
+ "kind": "set",
5959
+ "resource": "@entity.level"
5960
+ },
5961
+ {
5962
+ "kind": "set",
5963
+ "resource": "@entity.message"
5964
+ }
5965
+ ],
5605
5966
  "linkedEntity": "AgentTrace",
5606
5967
  "listens": [
5607
5968
  {
@@ -5838,6 +6199,30 @@ function stdAnimTickAnimTickOrbital(params = {}) {
5838
6199
  "type": "[string]"
5839
6200
  }
5840
6201
  },
6202
+ "effectRow": [
6203
+ {
6204
+ "kind": "set",
6205
+ "resource": "@entity.animCounter"
6206
+ },
6207
+ {
6208
+ "kind": "set",
6209
+ "resource": "@entity.animCounter",
6210
+ "site": "tick"
6211
+ },
6212
+ {
6213
+ "kind": "set",
6214
+ "resource": "@entity.frameName"
6215
+ },
6216
+ {
6217
+ "kind": "set",
6218
+ "resource": "@entity.frameName",
6219
+ "site": "tick"
6220
+ },
6221
+ {
6222
+ "kind": "ticks",
6223
+ "site": "tick"
6224
+ }
6225
+ ],
5841
6226
  "entityContract": {
5842
6227
  "provides": [
5843
6228
  "animCounter",
@@ -6299,6 +6684,16 @@ function stdAppLayoutAppLayoutOrbital(params = {}) {
6299
6684
  "type": "string"
6300
6685
  }
6301
6686
  },
6687
+ "effectRow": [
6688
+ {
6689
+ "kind": "fetch",
6690
+ "resource": "AppLayoutData"
6691
+ },
6692
+ {
6693
+ "kind": "render-ui",
6694
+ "resource": "main"
6695
+ }
6696
+ ],
6302
6697
  "emits": [
6303
6698
  {
6304
6699
  "description": "Indicates a search query has been submitted.",
@@ -6684,6 +7079,12 @@ function stdAppSearchAppSearchOrbital(params = {}) {
6684
7079
  traits: [
6685
7080
  {
6686
7081
  "category": "interaction",
7082
+ "effectRow": [
7083
+ {
7084
+ "kind": "render-ui",
7085
+ "resource": "main"
7086
+ }
7087
+ ],
6687
7088
  "linkedEntity": "AppSearchTarget",
6688
7089
  "name": "AppSearchIdleHint",
6689
7090
  "scope": "instance",
@@ -6913,6 +7314,20 @@ function stdAppSearchAppSearchOrbital(params = {}) {
6913
7314
  "type": "string"
6914
7315
  }
6915
7316
  },
7317
+ "effectRow": [
7318
+ {
7319
+ "kind": "fetch",
7320
+ "resource": "AppSearchTarget"
7321
+ },
7322
+ {
7323
+ "kind": "render-ui",
7324
+ "resource": "main"
7325
+ },
7326
+ {
7327
+ "kind": "set",
7328
+ "resource": "@entity.searchTerm"
7329
+ }
7330
+ ],
6916
7331
  "emits": [
6917
7332
  {
6918
7333
  "description": "Filtered search results loaded",
@@ -8023,6 +8438,56 @@ function stdApprovalGateApprovalGateOrbital(params = {}) {
8023
8438
  "type": "string"
8024
8439
  }
8025
8440
  },
8441
+ "effectRow": [
8442
+ {
8443
+ "kind": "emit",
8444
+ "resource": "ApprovalDenied"
8445
+ },
8446
+ {
8447
+ "kind": "emit",
8448
+ "resource": "ApprovalGranted"
8449
+ },
8450
+ {
8451
+ "kind": "fetch",
8452
+ "resource": "ApprovalRequest"
8453
+ },
8454
+ {
8455
+ "kind": "notify"
8456
+ },
8457
+ {
8458
+ "kind": "persist",
8459
+ "resource": "ApprovalRequest"
8460
+ },
8461
+ {
8462
+ "kind": "render-ui",
8463
+ "resolved": false,
8464
+ "resource": "@config.reviewSlot"
8465
+ },
8466
+ {
8467
+ "kind": "set",
8468
+ "resource": "@entity.decidedAt"
8469
+ },
8470
+ {
8471
+ "kind": "set",
8472
+ "resource": "@entity.id"
8473
+ },
8474
+ {
8475
+ "kind": "set",
8476
+ "resource": "@entity.notes"
8477
+ },
8478
+ {
8479
+ "kind": "set",
8480
+ "resource": "@entity.reviewer"
8481
+ },
8482
+ {
8483
+ "kind": "set",
8484
+ "resource": "@entity.status"
8485
+ },
8486
+ {
8487
+ "kind": "set",
8488
+ "resource": "@entity.subjectLabel"
8489
+ }
8490
+ ],
8026
8491
  "emits": [
8027
8492
  {
8028
8493
  "description": "Signals that an approval request has been approved.",
@@ -9833,6 +10298,44 @@ function stdAuditCaptureAuditCaptureOrbital(params = {}) {
9833
10298
  "type": "number"
9834
10299
  }
9835
10300
  },
10301
+ "effectRow": [
10302
+ {
10303
+ "kind": "emit",
10304
+ "resource": "AuditRecorded"
10305
+ },
10306
+ {
10307
+ "kind": "persist",
10308
+ "resource": "AuditEntry"
10309
+ },
10310
+ {
10311
+ "kind": "set",
10312
+ "resource": "@entity.action"
10313
+ },
10314
+ {
10315
+ "kind": "set",
10316
+ "resource": "@entity.actor"
10317
+ },
10318
+ {
10319
+ "kind": "set",
10320
+ "resource": "@entity.after"
10321
+ },
10322
+ {
10323
+ "kind": "set",
10324
+ "resource": "@entity.before"
10325
+ },
10326
+ {
10327
+ "kind": "set",
10328
+ "resource": "@entity.entityId"
10329
+ },
10330
+ {
10331
+ "kind": "set",
10332
+ "resource": "@entity.entityType"
10333
+ },
10334
+ {
10335
+ "kind": "set",
10336
+ "resource": "@entity.recordedAt"
10337
+ }
10338
+ ],
9836
10339
  "emits": [
9837
10340
  {
9838
10341
  "event": "AuditRecorded",
@@ -10523,6 +11026,60 @@ function stdBillableHourBillableHourOrbital(params = {}) {
10523
11026
  "type": "string"
10524
11027
  }
10525
11028
  },
11029
+ "effectRow": [
11030
+ {
11031
+ "kind": "fetch",
11032
+ "resource": "BillableHour"
11033
+ },
11034
+ {
11035
+ "kind": "render-ui",
11036
+ "resource": "main"
11037
+ },
11038
+ {
11039
+ "kind": "set",
11040
+ "resource": "@entity.description"
11041
+ },
11042
+ {
11043
+ "kind": "set",
11044
+ "resource": "@entity.hours"
11045
+ },
11046
+ {
11047
+ "kind": "set",
11048
+ "resource": "@entity.id"
11049
+ },
11050
+ {
11051
+ "kind": "set",
11052
+ "resource": "@entity.invoiceStatus"
11053
+ },
11054
+ {
11055
+ "kind": "set",
11056
+ "resource": "@entity.isBillable"
11057
+ },
11058
+ {
11059
+ "kind": "set",
11060
+ "resource": "@entity.matterId"
11061
+ },
11062
+ {
11063
+ "kind": "set",
11064
+ "resource": "@entity.projectId"
11065
+ },
11066
+ {
11067
+ "kind": "set",
11068
+ "resource": "@entity.rate"
11069
+ },
11070
+ {
11071
+ "kind": "set",
11072
+ "resource": "@entity.workDate"
11073
+ },
11074
+ {
11075
+ "kind": "set",
11076
+ "resource": "@entity.workerId"
11077
+ },
11078
+ {
11079
+ "kind": "set",
11080
+ "resource": "@entity.workerName"
11081
+ }
11082
+ ],
10526
11083
  "emits": [
10527
11084
  {
10528
11085
  "description": "Signals the display of the hours list.",
@@ -12334,6 +12891,52 @@ function stdBoardBoardOrbital(params = {}) {
12334
12891
  "type": "string"
12335
12892
  }
12336
12893
  },
12894
+ "effectRow": [
12895
+ {
12896
+ "kind": "fetch",
12897
+ "resource": "BoardView"
12898
+ },
12899
+ {
12900
+ "kind": "persist",
12901
+ "resource": "BoardView"
12902
+ },
12903
+ {
12904
+ "kind": "render-ui",
12905
+ "resource": "main"
12906
+ },
12907
+ {
12908
+ "kind": "set",
12909
+ "resource": "@entity.boards"
12910
+ },
12911
+ {
12912
+ "kind": "set",
12913
+ "resource": "@entity.currentDescription"
12914
+ },
12915
+ {
12916
+ "kind": "set",
12917
+ "resource": "@entity.currentId"
12918
+ },
12919
+ {
12920
+ "kind": "set",
12921
+ "resource": "@entity.currentNotes"
12922
+ },
12923
+ {
12924
+ "kind": "set",
12925
+ "resource": "@entity.currentRow"
12926
+ },
12927
+ {
12928
+ "kind": "set",
12929
+ "resource": "@entity.currentStage"
12930
+ },
12931
+ {
12932
+ "kind": "set",
12933
+ "resource": "@entity.currentTitle"
12934
+ },
12935
+ {
12936
+ "kind": "set",
12937
+ "resource": "@entity.errorMessage"
12938
+ }
12939
+ ],
12337
12940
  "emits": [
12338
12941
  {
12339
12942
  "description": "Indicates a card within the board has been selected.",
@@ -15334,6 +15937,16 @@ function stdBrowseBrowseItemOrbital(params = {}) {
15334
15937
  "type": "pattern"
15335
15938
  }
15336
15939
  },
15940
+ "effectRow": [
15941
+ {
15942
+ "kind": "fetch",
15943
+ "resource": "BrowseItem"
15944
+ },
15945
+ {
15946
+ "kind": "render-ui",
15947
+ "resource": "main"
15948
+ }
15949
+ ],
15337
15950
  "emits": [
15338
15951
  {
15339
15952
  "description": "Signals that a browse item has been successfully loaded.",
@@ -17117,6 +17730,20 @@ function stdCacheAsideCacheEntryOrbital(params = {}) {
17117
17730
  "type": "number"
17118
17731
  }
17119
17732
  },
17733
+ "effectRow": [
17734
+ {
17735
+ "kind": "fetch",
17736
+ "resource": "CacheEntry"
17737
+ },
17738
+ {
17739
+ "kind": "persist",
17740
+ "resource": "CacheEntry"
17741
+ },
17742
+ {
17743
+ "kind": "render-ui",
17744
+ "resource": "main"
17745
+ }
17746
+ ],
17120
17747
  "emits": [
17121
17748
  {
17122
17749
  "description": "Indicates a cache entry has been successfully retrieved.",
@@ -19068,6 +19695,24 @@ function stdCalendarCalendarEventOrbital(params = {}) {
19068
19695
  "type": "render-ui"
19069
19696
  }
19070
19697
  },
19698
+ "effectRow": [
19699
+ {
19700
+ "kind": "fetch",
19701
+ "resource": "CalendarEvent"
19702
+ },
19703
+ {
19704
+ "kind": "render-ui",
19705
+ "resource": "main"
19706
+ },
19707
+ {
19708
+ "kind": "set",
19709
+ "resource": "@entity.selectedRange"
19710
+ },
19711
+ {
19712
+ "kind": "set",
19713
+ "resource": "@entity.weekAnchor"
19714
+ }
19715
+ ],
19071
19716
  "emits": [
19072
19717
  {
19073
19718
  "description": "Indicates that calendar events have been successfully retrieved.",
@@ -20082,6 +20727,72 @@ function stdCalendarSyncCalendarSyncOrbital(params = {}) {
20082
20727
  "type": "string"
20083
20728
  }
20084
20729
  },
20730
+ "effectRow": [
20731
+ {
20732
+ "kind": "call-service",
20733
+ "resource": "calendar.createEvent"
20734
+ },
20735
+ {
20736
+ "kind": "call-service",
20737
+ "resource": "calendar.listEvents"
20738
+ },
20739
+ {
20740
+ "kind": "emit",
20741
+ "resource": "CAL_SYNCED"
20742
+ },
20743
+ {
20744
+ "kind": "emit",
20745
+ "resource": "PULL_NEXT"
20746
+ },
20747
+ {
20748
+ "kind": "fetch",
20749
+ "resolved": false,
20750
+ "resource": "@config.targetEntity"
20751
+ },
20752
+ {
20753
+ "kind": "fetch",
20754
+ "resolved": false,
20755
+ "resource": "@config.targetEntity",
20756
+ "site": "tick"
20757
+ },
20758
+ {
20759
+ "kind": "fetch",
20760
+ "resource": "CalendarEvent"
20761
+ },
20762
+ {
20763
+ "kind": "persist",
20764
+ "resolved": false,
20765
+ "resource": "@config.targetEntity"
20766
+ },
20767
+ {
20768
+ "kind": "persist",
20769
+ "resource": "CalendarEvent"
20770
+ },
20771
+ {
20772
+ "kind": "set",
20773
+ "resource": "@entity.headId"
20774
+ },
20775
+ {
20776
+ "kind": "set",
20777
+ "resource": "@entity.lastError"
20778
+ },
20779
+ {
20780
+ "kind": "set",
20781
+ "resource": "@entity.lastSyncedAt"
20782
+ },
20783
+ {
20784
+ "kind": "set",
20785
+ "resource": "@entity.pending"
20786
+ },
20787
+ {
20788
+ "kind": "set",
20789
+ "resource": "@entity.syncToken"
20790
+ },
20791
+ {
20792
+ "kind": "ticks",
20793
+ "site": "tick"
20794
+ }
20795
+ ],
20085
20796
  "emits": [
20086
20797
  {
20087
20798
  "description": "A full push+pull cycle completed; wire to std-notify-on-event or a status surface.",
@@ -21494,6 +22205,38 @@ function stdCascadeOnDeleteCascadeOnDeleteOrbital(params = {}) {
21494
22205
  "type": "entity"
21495
22206
  }
21496
22207
  },
22208
+ "effectRow": [
22209
+ {
22210
+ "kind": "emit",
22211
+ "resource": "CascadeCompleted"
22212
+ },
22213
+ {
22214
+ "kind": "emit",
22215
+ "resource": "CascadeRowDeleted"
22216
+ },
22217
+ {
22218
+ "kind": "fetch",
22219
+ "resolved": false,
22220
+ "resource": "@config.dependentEntity"
22221
+ },
22222
+ {
22223
+ "kind": "persist",
22224
+ "resolved": false,
22225
+ "resource": "@config.dependentEntity"
22226
+ },
22227
+ {
22228
+ "kind": "set",
22229
+ "resource": "@entity.headId"
22230
+ },
22231
+ {
22232
+ "kind": "set",
22233
+ "resource": "@entity.parentEntity"
22234
+ },
22235
+ {
22236
+ "kind": "set",
22237
+ "resource": "@entity.parentId"
22238
+ }
22239
+ ],
21497
22240
  "emits": [
21498
22241
  {
21499
22242
  "event": "CascadeRowDeleted",
@@ -22641,6 +23384,28 @@ function stdCircuitBreakerServiceNodeOrbital(params = {}) {
22641
23384
  ]
22642
23385
  }
22643
23386
  },
23387
+ "effectRow": [
23388
+ {
23389
+ "kind": "fetch",
23390
+ "resource": "ServiceNode"
23391
+ },
23392
+ {
23393
+ "kind": "render-ui",
23394
+ "resource": "main"
23395
+ },
23396
+ {
23397
+ "kind": "set",
23398
+ "resource": "@entity.failureCount"
23399
+ },
23400
+ {
23401
+ "kind": "set",
23402
+ "resource": "@entity.successCount"
23403
+ },
23404
+ {
23405
+ "kind": "set",
23406
+ "resource": "@entity.threshold"
23407
+ }
23408
+ ],
22644
23409
  "emits": [
22645
23410
  {
22646
23411
  "description": "Signals successful loading of a service node.",
@@ -23367,6 +24132,24 @@ function stdConfirmationConfirmActionOrbital(params = {}) {
23367
24132
  "type": "string"
23368
24133
  }
23369
24134
  },
24135
+ "effectRow": [
24136
+ {
24137
+ "kind": "fetch",
24138
+ "resource": "ConfirmAction"
24139
+ },
24140
+ {
24141
+ "kind": "render-ui",
24142
+ "resource": "modal"
24143
+ },
24144
+ {
24145
+ "kind": "set",
24146
+ "resource": "@entity.name"
24147
+ },
24148
+ {
24149
+ "kind": "set",
24150
+ "resource": "@entity.pendingId"
24151
+ }
24152
+ ],
23370
24153
  "emits": [
23371
24154
  {
23372
24155
  "description": "Indicates the user has approved the action.",
@@ -23851,6 +24634,34 @@ function stdCooldownCooldownOrbital(params = {}) {
23851
24634
  "type": "number"
23852
24635
  }
23853
24636
  },
24637
+ "effectRow": [
24638
+ {
24639
+ "kind": "emit",
24640
+ "resource": "CooldownReady"
24641
+ },
24642
+ {
24643
+ "kind": "emit",
24644
+ "resource": "EXPIRE",
24645
+ "site": "tick"
24646
+ },
24647
+ {
24648
+ "kind": "set",
24649
+ "resource": "@entity.active"
24650
+ },
24651
+ {
24652
+ "kind": "set",
24653
+ "resource": "@entity.remainingMs"
24654
+ },
24655
+ {
24656
+ "kind": "set",
24657
+ "resource": "@entity.remainingMs",
24658
+ "site": "tick"
24659
+ },
24660
+ {
24661
+ "kind": "ticks",
24662
+ "site": "tick"
24663
+ }
24664
+ ],
23854
24665
  "emits": [
23855
24666
  {
23856
24667
  "description": "Fired when the cooldown expires; wire to re-enable the ability or action.",
@@ -24190,6 +25001,28 @@ function stdCrossReferenceCrossReferenceOrbital(params = {}) {
24190
25001
  traits: [
24191
25002
  {
24192
25003
  "category": "lifecycle",
25004
+ "effectRow": [
25005
+ {
25006
+ "kind": "emit",
25007
+ "resource": "LinksLoaded"
25008
+ },
25009
+ {
25010
+ "kind": "fetch",
25011
+ "resource": "CrossRefLink"
25012
+ },
25013
+ {
25014
+ "kind": "persist",
25015
+ "resource": "CrossRefLink"
25016
+ },
25017
+ {
25018
+ "kind": "set",
25019
+ "resource": "@entity.filteredLinks"
25020
+ },
25021
+ {
25022
+ "kind": "set",
25023
+ "resource": "@entity.leftId"
25024
+ }
25025
+ ],
24193
25026
  "emits": [
24194
25027
  {
24195
25028
  "description": "Fired after a junction row is persisted.",
@@ -24746,6 +25579,12 @@ function stdDashboardGridEmbeddedDashboardGridEmbeddedOrbital(params = {}) {
24746
25579
  }),
24747
25580
  {
24748
25581
  "category": "interaction",
25582
+ "effectRow": [
25583
+ {
25584
+ "kind": "render-ui",
25585
+ "resource": "main"
25586
+ }
25587
+ ],
24749
25588
  "linkedEntity": "DashboardGridEmbeddedData",
24750
25589
  "name": "EmptyTile",
24751
25590
  "scope": "instance",
@@ -24929,6 +25768,12 @@ function stdDashboardGridEmbeddedDashboardGridEmbeddedOrbital(params = {}) {
24929
25768
  "type": "trait"
24930
25769
  }
24931
25770
  },
25771
+ "effectRow": [
25772
+ {
25773
+ "kind": "render-ui",
25774
+ "resource": "main"
25775
+ }
25776
+ ],
24932
25777
  "linkedEntity": "DashboardGridEmbeddedData",
24933
25778
  "name": "DashboardGridEmbedded",
24934
25779
  "scope": "instance",
@@ -25178,6 +26023,24 @@ function stdDataCollectorMlDataCollectorOrbital(params = {}) {
25178
26023
  "type": "int"
25179
26024
  }
25180
26025
  },
26026
+ "effectRow": [
26027
+ {
26028
+ "kind": "emit",
26029
+ "resource": "BUFFER_READY"
26030
+ },
26031
+ {
26032
+ "kind": "set",
26033
+ "resource": "@entity.buffer"
26034
+ },
26035
+ {
26036
+ "kind": "set",
26037
+ "resource": "@entity.count"
26038
+ },
26039
+ {
26040
+ "kind": "set",
26041
+ "resource": "@entity.status"
26042
+ }
26043
+ ],
25181
26044
  "emits": [
25182
26045
  {
25183
26046
  "description": "Fired when the buffer reaches config.bufferSize; carries the full accumulated buffer and its count, then the buffer resets for the next cycle.",
@@ -25873,6 +26736,50 @@ function stdDataErasureDataErasureOrbital(params = {}) {
25873
26736
  "type": "string"
25874
26737
  }
25875
26738
  },
26739
+ "effectRow": [
26740
+ {
26741
+ "kind": "emit",
26742
+ "resource": "ExecuteErasure"
26743
+ },
26744
+ {
26745
+ "kind": "fetch",
26746
+ "resource": "ErasureRequest"
26747
+ },
26748
+ {
26749
+ "kind": "fetch",
26750
+ "resource": "ErasureRequest",
26751
+ "site": "tick"
26752
+ },
26753
+ {
26754
+ "kind": "persist",
26755
+ "resource": "ErasureRequest"
26756
+ },
26757
+ {
26758
+ "kind": "render-ui",
26759
+ "resolved": false,
26760
+ "resource": "@config.reviewSlot"
26761
+ },
26762
+ {
26763
+ "kind": "set",
26764
+ "resource": "@entity.id"
26765
+ },
26766
+ {
26767
+ "kind": "set",
26768
+ "resource": "@entity.status"
26769
+ },
26770
+ {
26771
+ "kind": "set",
26772
+ "resource": "@entity.subjectId"
26773
+ },
26774
+ {
26775
+ "kind": "set",
26776
+ "resource": "@entity.targetEntity"
26777
+ },
26778
+ {
26779
+ "kind": "ticks",
26780
+ "site": "tick"
26781
+ }
26782
+ ],
25876
26783
  "emits": [
25877
26784
  {
25878
26785
  "description": "Signals a request cancellation during its processing lifecycle.",
@@ -27090,6 +27997,20 @@ function stdDateRangeDateRangeOrbital(params = {}) {
27090
27997
  "type": "string"
27091
27998
  }
27092
27999
  },
28000
+ "effectRow": [
28001
+ {
28002
+ "kind": "render-ui",
28003
+ "resource": "main"
28004
+ },
28005
+ {
28006
+ "kind": "set",
28007
+ "resource": "@entity.from"
28008
+ },
28009
+ {
28010
+ "kind": "set",
28011
+ "resource": "@entity.to"
28012
+ }
28013
+ ],
27093
28014
  "emits": [
27094
28015
  {
27095
28016
  "description": "Signals a change in the selected date range.",
@@ -27607,6 +28528,16 @@ function stdEsignFlowSignatureSessionOrbital(params = {}) {
27607
28528
  traits: [
27608
28529
  {
27609
28530
  "category": "interaction",
28531
+ "effectRow": [
28532
+ {
28533
+ "kind": "fetch",
28534
+ "resource": "SignatureSession"
28535
+ },
28536
+ {
28537
+ "kind": "render-ui",
28538
+ "resource": "main"
28539
+ }
28540
+ ],
27610
28541
  "emits": [
27611
28542
  {
27612
28543
  "description": "Indicates a new signature request has been initiated.",
@@ -28478,6 +29409,12 @@ function stdEsignFlowSignatureSessionOrbital(params = {}) {
28478
29409
  }),
28479
29410
  {
28480
29411
  "category": "lifecycle",
29412
+ "effectRow": [
29413
+ {
29414
+ "kind": "persist",
29415
+ "resource": "SignatureSession"
29416
+ }
29417
+ ],
28481
29418
  "emits": [
28482
29419
  {
28483
29420
  "description": "A new signature session has been initialized.",
@@ -28705,6 +29642,27 @@ function stdEsignFlowSignatureSessionOrbital(params = {}) {
28705
29642
  },
28706
29643
  {
28707
29644
  "category": "lifecycle",
29645
+ "effectRow": [
29646
+ {
29647
+ "kind": "call-service",
29648
+ "resource": "esign.getEnvelopeStatus"
29649
+ },
29650
+ {
29651
+ "kind": "call-service",
29652
+ "resource": "esign.sendEnvelope"
29653
+ },
29654
+ {
29655
+ "kind": "notify"
29656
+ },
29657
+ {
29658
+ "kind": "persist",
29659
+ "resource": "SignatureSession"
29660
+ },
29661
+ {
29662
+ "kind": "set",
29663
+ "resource": "@entity.id"
29664
+ }
29665
+ ],
28708
29666
  "emits": [
28709
29667
  {
28710
29668
  "description": "The provider accepted the envelope; carries its id.",
@@ -29748,6 +30706,23 @@ function stdEsignRequestESignRequestOrbital(params = {}) {
29748
30706
  "type": "string"
29749
30707
  }
29750
30708
  },
30709
+ "effectRow": [
30710
+ {
30711
+ "kind": "fetch",
30712
+ "resource": "ESignRequest"
30713
+ },
30714
+ {
30715
+ "kind": "notify"
30716
+ },
30717
+ {
30718
+ "kind": "render-ui",
30719
+ "resource": "main"
30720
+ },
30721
+ {
30722
+ "kind": "set",
30723
+ "resource": "@entity.id"
30724
+ }
30725
+ ],
29751
30726
  "emits": [
29752
30727
  {
29753
30728
  "description": "Signals a request has been sent for signature.",
@@ -30554,6 +31529,56 @@ function stdEventLogEventLogOrbital(params = {}) {
30554
31529
  "type": "string"
30555
31530
  }
30556
31531
  },
31532
+ "effectRow": [
31533
+ {
31534
+ "kind": "fetch",
31535
+ "resource": "EventLogView"
31536
+ },
31537
+ {
31538
+ "kind": "persist",
31539
+ "resource": "EventLogView"
31540
+ },
31541
+ {
31542
+ "kind": "render-ui",
31543
+ "resource": "main"
31544
+ },
31545
+ {
31546
+ "kind": "set",
31547
+ "resource": "@entity.allEntries"
31548
+ },
31549
+ {
31550
+ "kind": "set",
31551
+ "resource": "@entity.backfillDate"
31552
+ },
31553
+ {
31554
+ "kind": "set",
31555
+ "resource": "@entity.backfillDescription"
31556
+ },
31557
+ {
31558
+ "kind": "set",
31559
+ "resource": "@entity.backfillKind"
31560
+ },
31561
+ {
31562
+ "kind": "set",
31563
+ "resource": "@entity.backfillTitle"
31564
+ },
31565
+ {
31566
+ "kind": "set",
31567
+ "resource": "@entity.entries"
31568
+ },
31569
+ {
31570
+ "kind": "set",
31571
+ "resource": "@entity.errorMessage"
31572
+ },
31573
+ {
31574
+ "kind": "set",
31575
+ "resource": "@entity.filterChips"
31576
+ },
31577
+ {
31578
+ "kind": "set",
31579
+ "resource": "@entity.filterKind"
31580
+ }
31581
+ ],
30557
31582
  "emits": [
30558
31583
  {
30559
31584
  "description": "Signals a filter has been applied to the event log.",
@@ -32432,6 +33457,12 @@ function stdExportExportOrbital(params = {}) {
32432
33457
  "type": "string"
32433
33458
  }
32434
33459
  },
33460
+ "effectRow": [
33461
+ {
33462
+ "kind": "render-ui",
33463
+ "resource": "main"
33464
+ }
33465
+ ],
32435
33466
  "emits": [
32436
33467
  {
32437
33468
  "description": "Requests export of data in the picked format. itemId is the format id (matches the FormatOption.id/format of the picked entry).",
@@ -33051,6 +34082,32 @@ function stdFileStoreStoredFileOrbital(params = {}) {
33051
34082
  "type": "[TreeNode]"
33052
34083
  }
33053
34084
  },
34085
+ "effectRow": [
34086
+ {
34087
+ "kind": "fetch",
34088
+ "resource": "StoredFile"
34089
+ },
34090
+ {
34091
+ "kind": "render-ui",
34092
+ "resource": "main"
34093
+ },
34094
+ {
34095
+ "kind": "set",
34096
+ "resource": "@entity.folder"
34097
+ },
34098
+ {
34099
+ "kind": "set",
34100
+ "resource": "@entity.id"
34101
+ },
34102
+ {
34103
+ "kind": "set",
34104
+ "resource": "@entity.name"
34105
+ },
34106
+ {
34107
+ "kind": "set",
34108
+ "resource": "@entity.path"
34109
+ }
34110
+ ],
33054
34111
  "emits": [
33055
34112
  {
33056
34113
  "description": "Indicates a file has been selected for viewing.",
@@ -34230,6 +35287,28 @@ function stdFilterFilterTargetOrbital(params = {}) {
34230
35287
  "type": "[FilterSpec]"
34231
35288
  }
34232
35289
  },
35290
+ "effectRow": [
35291
+ {
35292
+ "kind": "emit",
35293
+ "resource": "FILTER"
35294
+ },
35295
+ {
35296
+ "kind": "fetch",
35297
+ "resource": "FilterTarget"
35298
+ },
35299
+ {
35300
+ "kind": "render-ui",
35301
+ "resource": "main"
35302
+ },
35303
+ {
35304
+ "kind": "set",
35305
+ "resource": "@entity.field"
35306
+ },
35307
+ {
35308
+ "kind": "set",
35309
+ "resource": "@entity.value"
35310
+ }
35311
+ ],
34233
35312
  "emits": [
34234
35313
  {
34235
35314
  "description": "Signals a filter has been applied or changed.",
@@ -34770,6 +35849,23 @@ function stdFormAdvancedFormEntryOrbital(params = {}) {
34770
35849
  "type": "string"
34771
35850
  }
34772
35851
  },
35852
+ "effectRow": [
35853
+ {
35854
+ "kind": "fetch",
35855
+ "resource": "FormEntry"
35856
+ },
35857
+ {
35858
+ "kind": "notify"
35859
+ },
35860
+ {
35861
+ "kind": "persist",
35862
+ "resource": "FormEntry"
35863
+ },
35864
+ {
35865
+ "kind": "render-ui",
35866
+ "resource": "main"
35867
+ }
35868
+ ],
34773
35869
  "emits": [
34774
35870
  {
34775
35871
  "description": "Signals successful loading of form entry data.",
@@ -35851,6 +36947,24 @@ function stdGalleryGalleryItemOrbital(params = {}) {
35851
36947
  "type": "string"
35852
36948
  }
35853
36949
  },
36950
+ "effectRow": [
36951
+ {
36952
+ "kind": "fetch",
36953
+ "resource": "GalleryItem"
36954
+ },
36955
+ {
36956
+ "kind": "render-ui",
36957
+ "resource": "main"
36958
+ },
36959
+ {
36960
+ "kind": "render-ui",
36961
+ "resource": "modal"
36962
+ },
36963
+ {
36964
+ "kind": "set",
36965
+ "resource": "@entity.id"
36966
+ }
36967
+ ],
35854
36968
  "emits": [
35855
36969
  {
35856
36970
  "description": "Signals an item has been selected for viewing.",
@@ -36753,6 +37867,26 @@ function stdGameClockGameClockOrbital(params = {}) {
36753
37867
  "type": "boolean"
36754
37868
  }
36755
37869
  },
37870
+ "effectRow": [
37871
+ {
37872
+ "kind": "emit",
37873
+ "resource": "GameClockTicked",
37874
+ "site": "tick"
37875
+ },
37876
+ {
37877
+ "kind": "set",
37878
+ "resource": "@entity.elapsedMs",
37879
+ "site": "tick"
37880
+ },
37881
+ {
37882
+ "kind": "set",
37883
+ "resource": "@entity.running"
37884
+ },
37885
+ {
37886
+ "kind": "ticks",
37887
+ "site": "tick"
37888
+ }
37889
+ ],
36756
37890
  "emits": [
36757
37891
  {
36758
37892
  "description": "Fires every clock tick while running; consumers use elapsedMs to drive animations and game logic.",
@@ -37178,6 +38312,28 @@ function stdGeosearchGeoSearchResultOrbital(params = {}) {
37178
38312
  "type": "string"
37179
38313
  }
37180
38314
  },
38315
+ "effectRow": [
38316
+ {
38317
+ "kind": "render-ui",
38318
+ "resource": "main"
38319
+ },
38320
+ {
38321
+ "kind": "set",
38322
+ "resource": "@entity.centerLat"
38323
+ },
38324
+ {
38325
+ "kind": "set",
38326
+ "resource": "@entity.centerLng"
38327
+ },
38328
+ {
38329
+ "kind": "set",
38330
+ "resource": "@entity.radiusKm"
38331
+ },
38332
+ {
38333
+ "kind": "set",
38334
+ "resource": "@entity.searchTerm"
38335
+ }
38336
+ ],
37181
38337
  "emits": [
37182
38338
  {
37183
38339
  "description": "Indicates a search request with location parameters.",
@@ -37613,6 +38769,32 @@ function stdGraphBuilderGraphBuilderOrbital(params = {}) {
37613
38769
  "type": "[string]"
37614
38770
  }
37615
38771
  },
38772
+ "effectRow": [
38773
+ {
38774
+ "kind": "emit",
38775
+ "resource": "GRAPH_READY"
38776
+ },
38777
+ {
38778
+ "kind": "set",
38779
+ "resource": "@entity.edgeCount"
38780
+ },
38781
+ {
38782
+ "kind": "set",
38783
+ "resource": "@entity.edges"
38784
+ },
38785
+ {
38786
+ "kind": "set",
38787
+ "resource": "@entity.nodeCount"
38788
+ },
38789
+ {
38790
+ "kind": "set",
38791
+ "resource": "@entity.nodes"
38792
+ },
38793
+ {
38794
+ "kind": "set",
38795
+ "resource": "@entity.status"
38796
+ }
38797
+ ],
37616
38798
  "emits": [
37617
38799
  {
37618
38800
  "description": "Fired when node/edge structures have been built from the source entity collection",
@@ -38298,6 +39480,16 @@ function stdGraphsGraphItemOrbital(params = {}) {
38298
39480
  "type": "pattern"
38299
39481
  }
38300
39482
  },
39483
+ "effectRow": [
39484
+ {
39485
+ "kind": "render-ui",
39486
+ "resource": "main"
39487
+ },
39488
+ {
39489
+ "kind": "set",
39490
+ "resource": "@entity.chartData"
39491
+ }
39492
+ ],
38301
39493
  "entityContract": {
38302
39494
  "provides": [
38303
39495
  "chartData"
@@ -38908,6 +40100,24 @@ function stdImageUploadMultiUploadedImageOrbital(params = {}) {
38908
40100
  "type": "string"
38909
40101
  }
38910
40102
  },
40103
+ "effectRow": [
40104
+ {
40105
+ "kind": "call-service",
40106
+ "resource": "storage.uploadMany"
40107
+ },
40108
+ {
40109
+ "kind": "fetch",
40110
+ "resource": "UploadedImage"
40111
+ },
40112
+ {
40113
+ "kind": "persist",
40114
+ "resource": "UploadedImage"
40115
+ },
40116
+ {
40117
+ "kind": "render-ui",
40118
+ "resource": "main"
40119
+ }
40120
+ ],
38911
40121
  "emits": [
38912
40122
  {
38913
40123
  "description": "Signals that an image upload process has begun.",
@@ -41188,6 +42398,40 @@ function stdLifecycleLifecycleOrbital(params = {}) {
41188
42398
  "type": "string"
41189
42399
  }
41190
42400
  },
42401
+ "effectRow": [
42402
+ {
42403
+ "kind": "emit",
42404
+ "resource": "LifecycleTransitioned"
42405
+ },
42406
+ {
42407
+ "kind": "fetch",
42408
+ "resolved": false,
42409
+ "resource": "@config.targetEntity"
42410
+ },
42411
+ {
42412
+ "kind": "fetch",
42413
+ "resolved": false,
42414
+ "resource": "@config.targetEntity",
42415
+ "site": "tick"
42416
+ },
42417
+ {
42418
+ "kind": "persist",
42419
+ "resolved": false,
42420
+ "resource": "@config.targetEntity"
42421
+ },
42422
+ {
42423
+ "kind": "set",
42424
+ "resource": "@entity.headId"
42425
+ },
42426
+ {
42427
+ "kind": "set",
42428
+ "resource": "@entity.headStatus"
42429
+ },
42430
+ {
42431
+ "kind": "ticks",
42432
+ "site": "tick"
42433
+ }
42434
+ ],
41191
42435
  "emits": [
41192
42436
  {
41193
42437
  "event": "LifecycleTransitioned",
@@ -41881,6 +43125,16 @@ function stdListListItemOrbital(params = {}) {
41881
43125
  "type": "string"
41882
43126
  }
41883
43127
  },
43128
+ "effectRow": [
43129
+ {
43130
+ "kind": "fetch",
43131
+ "resource": "ListItem"
43132
+ },
43133
+ {
43134
+ "kind": "render-ui",
43135
+ "resource": "main"
43136
+ }
43137
+ ],
41884
43138
  "emits": [
41885
43139
  {
41886
43140
  "description": "Signals a new item has been successfully created.",
@@ -42881,6 +44135,12 @@ function stdListListItemOrbital(params = {}) {
42881
44135
  }),
42882
44136
  {
42883
44137
  "category": "lifecycle",
44138
+ "effectRow": [
44139
+ {
44140
+ "kind": "persist",
44141
+ "resource": "ListItem"
44142
+ }
44143
+ ],
42884
44144
  "emits": [
42885
44145
  {
42886
44146
  "description": "Signals a new item has been added to the list.",
@@ -44189,6 +45449,97 @@ function stdMigrationJobMigrationJobOrbital(params = {}) {
44189
45449
  "type": "string"
44190
45450
  }
44191
45451
  },
45452
+ "effectRow": [
45453
+ {
45454
+ "kind": "call-service",
45455
+ "resource": "migration.commit"
45456
+ },
45457
+ {
45458
+ "kind": "call-service",
45459
+ "resource": "migration.fetchDocument"
45460
+ },
45461
+ {
45462
+ "kind": "call-service",
45463
+ "resource": "migration.listDocuments"
45464
+ },
45465
+ {
45466
+ "kind": "emit",
45467
+ "resource": "MIGRATION_COMPLETED"
45468
+ },
45469
+ {
45470
+ "kind": "emit",
45471
+ "resource": "MIGRATION_DOCUMENT"
45472
+ },
45473
+ {
45474
+ "kind": "emit",
45475
+ "resource": "MIGRATION_FAILED"
45476
+ },
45477
+ {
45478
+ "kind": "emit",
45479
+ "resource": "MIGRATION_FETCHED"
45480
+ },
45481
+ {
45482
+ "kind": "emit",
45483
+ "resource": "MIGRATION_REVIEW_READY"
45484
+ },
45485
+ {
45486
+ "kind": "persist",
45487
+ "resource": "MigrationJob"
45488
+ },
45489
+ {
45490
+ "kind": "render-ui",
45491
+ "resolved": false,
45492
+ "resource": "@config.reviewSlot"
45493
+ },
45494
+ {
45495
+ "kind": "set",
45496
+ "resource": "@entity.createdAt"
45497
+ },
45498
+ {
45499
+ "kind": "set",
45500
+ "resource": "@entity.document"
45501
+ },
45502
+ {
45503
+ "kind": "set",
45504
+ "resource": "@entity.documents"
45505
+ },
45506
+ {
45507
+ "kind": "set",
45508
+ "resource": "@entity.error"
45509
+ },
45510
+ {
45511
+ "kind": "set",
45512
+ "resource": "@entity.files"
45513
+ },
45514
+ {
45515
+ "kind": "set",
45516
+ "resource": "@entity.skipped"
45517
+ },
45518
+ {
45519
+ "kind": "set",
45520
+ "resource": "@entity.source"
45521
+ },
45522
+ {
45523
+ "kind": "set",
45524
+ "resource": "@entity.stats"
45525
+ },
45526
+ {
45527
+ "kind": "set",
45528
+ "resource": "@entity.status"
45529
+ },
45530
+ {
45531
+ "kind": "set",
45532
+ "resource": "@entity.target"
45533
+ },
45534
+ {
45535
+ "kind": "set",
45536
+ "resource": "@entity.units"
45537
+ },
45538
+ {
45539
+ "kind": "set",
45540
+ "resource": "@entity.validationErrors"
45541
+ }
45542
+ ],
44192
45543
  "emits": [
44193
45544
  {
44194
45545
  "description": "migration.listDocuments service result, flattened onto the payload by the call-service effect executor",
@@ -45611,6 +46962,48 @@ function stdMlClassifyMlClassifyOrbital(params = {}) {
45611
46962
  "type": "string"
45612
46963
  }
45613
46964
  },
46965
+ "effectRow": [
46966
+ {
46967
+ "kind": "call-service",
46968
+ "resource": "llm.classify"
46969
+ },
46970
+ {
46971
+ "kind": "emit",
46972
+ "resource": "CLASSIFIED"
46973
+ },
46974
+ {
46975
+ "kind": "emit",
46976
+ "resource": "CLASSIFY_FAILED"
46977
+ },
46978
+ {
46979
+ "kind": "set",
46980
+ "resource": "@entity.category"
46981
+ },
46982
+ {
46983
+ "kind": "set",
46984
+ "resource": "@entity.confidence"
46985
+ },
46986
+ {
46987
+ "kind": "set",
46988
+ "resource": "@entity.errorMessage"
46989
+ },
46990
+ {
46991
+ "kind": "set",
46992
+ "resource": "@entity.reasoning"
46993
+ },
46994
+ {
46995
+ "kind": "set",
46996
+ "resource": "@entity.request"
46997
+ },
46998
+ {
46999
+ "kind": "set",
47000
+ "resource": "@entity.status"
47001
+ },
47002
+ {
47003
+ "kind": "set",
47004
+ "resource": "@entity.text"
47005
+ }
47006
+ ],
45614
47007
  "emits": [
45615
47008
  {
45616
47009
  "description": "Raw llm.classify service result, flattened onto the payload by the call-service effect executor",
@@ -46199,6 +47592,24 @@ function stdMlExactCheckMlExactCheckOrbital(params = {}) {
46199
47592
  "type": "boolean"
46200
47593
  }
46201
47594
  },
47595
+ "effectRow": [
47596
+ {
47597
+ "kind": "emit",
47598
+ "resource": "EXACT_MATCHED"
47599
+ },
47600
+ {
47601
+ "kind": "emit",
47602
+ "resource": "EXACT_UNMATCHED"
47603
+ },
47604
+ {
47605
+ "kind": "set",
47606
+ "resource": "@entity.matched"
47607
+ },
47608
+ {
47609
+ "kind": "set",
47610
+ "resource": "@entity.status"
47611
+ }
47612
+ ],
46202
47613
  "emits": [
46203
47614
  {
46204
47615
  "description": "Fired when the candidate exactly equals the key under the configured normalization",
@@ -46860,6 +48271,48 @@ function stdMlInferMlInferOrbital(params = {}) {
46860
48271
  "type": "OutputContract"
46861
48272
  }
46862
48273
  },
48274
+ "effectRow": [
48275
+ {
48276
+ "kind": "call-service",
48277
+ "resource": "ml.infer"
48278
+ },
48279
+ {
48280
+ "kind": "emit",
48281
+ "resource": "INFERRED"
48282
+ },
48283
+ {
48284
+ "kind": "emit",
48285
+ "resource": "INFER_ABSTAINED"
48286
+ },
48287
+ {
48288
+ "kind": "set",
48289
+ "resource": "@entity.confidence"
48290
+ },
48291
+ {
48292
+ "kind": "set",
48293
+ "resource": "@entity.input"
48294
+ },
48295
+ {
48296
+ "kind": "set",
48297
+ "resource": "@entity.output"
48298
+ },
48299
+ {
48300
+ "kind": "set",
48301
+ "resource": "@entity.reason"
48302
+ },
48303
+ {
48304
+ "kind": "set",
48305
+ "resource": "@entity.request"
48306
+ },
48307
+ {
48308
+ "kind": "set",
48309
+ "resource": "@entity.status"
48310
+ },
48311
+ {
48312
+ "kind": "set",
48313
+ "resource": "@entity.violations"
48314
+ }
48315
+ ],
46863
48316
  "emits": [
46864
48317
  {
46865
48318
  "description": "Raw ml.infer service result, flattened onto the payload by the call-service effect executor",
@@ -47558,6 +49011,40 @@ function stdMlLabelCaptureMlLabelCaptureOrbital(params = {}) {
47558
49011
  "type": "string"
47559
49012
  }
47560
49013
  },
49014
+ "effectRow": [
49015
+ {
49016
+ "kind": "emit",
49017
+ "resource": "LABEL_CAPTURED"
49018
+ },
49019
+ {
49020
+ "kind": "persist",
49021
+ "resource": "LabeledExample"
49022
+ },
49023
+ {
49024
+ "kind": "set",
49025
+ "resource": "@entity.input"
49026
+ },
49027
+ {
49028
+ "kind": "set",
49029
+ "resource": "@entity.outcome"
49030
+ },
49031
+ {
49032
+ "kind": "set",
49033
+ "resource": "@entity.recordedAt"
49034
+ },
49035
+ {
49036
+ "kind": "set",
49037
+ "resource": "@entity.sink"
49038
+ },
49039
+ {
49040
+ "kind": "set",
49041
+ "resource": "@entity.source"
49042
+ },
49043
+ {
49044
+ "kind": "set",
49045
+ "resource": "@entity.verdict"
49046
+ }
49047
+ ],
47561
49048
  "emits": [
47562
49049
  {
47563
49050
  "description": "Fired after a labeled example is persisted.",
@@ -47922,6 +49409,24 @@ function stdMlLookupMlLookupOrbital(params = {}) {
47922
49409
  "type": "boolean"
47923
49410
  }
47924
49411
  },
49412
+ "effectRow": [
49413
+ {
49414
+ "kind": "emit",
49415
+ "resource": "KEY_HIT"
49416
+ },
49417
+ {
49418
+ "kind": "emit",
49419
+ "resource": "KEY_MISS"
49420
+ },
49421
+ {
49422
+ "kind": "set",
49423
+ "resource": "@entity.matched"
49424
+ },
49425
+ {
49426
+ "kind": "set",
49427
+ "resource": "@entity.status"
49428
+ }
49429
+ ],
47925
49430
  "emits": [
47926
49431
  {
47927
49432
  "description": "Fired when the candidate matches an entry in the accepted list",
@@ -48453,6 +49958,48 @@ function stdMlPosteriorMlPosteriorOrbital(params = {}) {
48453
49958
  "type": "int"
48454
49959
  }
48455
49960
  },
49961
+ "effectRow": [
49962
+ {
49963
+ "kind": "emit",
49964
+ "resource": "EVIDENCE_INSUFFICIENT"
49965
+ },
49966
+ {
49967
+ "kind": "emit",
49968
+ "resource": "MASTERY_REACHED"
49969
+ },
49970
+ {
49971
+ "kind": "emit",
49972
+ "resource": "REMEDIATION_NEEDED"
49973
+ },
49974
+ {
49975
+ "kind": "set",
49976
+ "resource": "@entity.alpha"
49977
+ },
49978
+ {
49979
+ "kind": "set",
49980
+ "resource": "@entity.beta"
49981
+ },
49982
+ {
49983
+ "kind": "set",
49984
+ "resource": "@entity.intervalHigh"
49985
+ },
49986
+ {
49987
+ "kind": "set",
49988
+ "resource": "@entity.intervalLow"
49989
+ },
49990
+ {
49991
+ "kind": "set",
49992
+ "resource": "@entity.mean"
49993
+ },
49994
+ {
49995
+ "kind": "set",
49996
+ "resource": "@entity.observations"
49997
+ },
49998
+ {
49999
+ "kind": "set",
50000
+ "resource": "@entity.status"
50001
+ }
50002
+ ],
48456
50003
  "emits": [
48457
50004
  {
48458
50005
  "description": "The posterior mean clears masteryFloor with a credible interval narrow enough to trust.",
@@ -49158,6 +50705,63 @@ function stdMlSimilarityMlSimilarityOrbital(params = {}) {
49158
50705
  "type": "float"
49159
50706
  }
49160
50707
  },
50708
+ "effectRow": [
50709
+ {
50710
+ "kind": "emit",
50711
+ "resource": "SIMILARITY_ABSTAINED"
50712
+ },
50713
+ {
50714
+ "kind": "emit",
50715
+ "resource": "SIMILARITY_MATCHED"
50716
+ },
50717
+ {
50718
+ "kind": "llm/embed"
50719
+ },
50720
+ {
50721
+ "kind": "set",
50722
+ "resource": "@entity.candidateVectors"
50723
+ },
50724
+ {
50725
+ "kind": "set",
50726
+ "resource": "@entity.candidates"
50727
+ },
50728
+ {
50729
+ "kind": "set",
50730
+ "resource": "@entity.embeddings"
50731
+ },
50732
+ {
50733
+ "kind": "set",
50734
+ "resource": "@entity.matchIndex"
50735
+ },
50736
+ {
50737
+ "kind": "set",
50738
+ "resource": "@entity.matchMargin"
50739
+ },
50740
+ {
50741
+ "kind": "set",
50742
+ "resource": "@entity.matchScore"
50743
+ },
50744
+ {
50745
+ "kind": "set",
50746
+ "resource": "@entity.query"
50747
+ },
50748
+ {
50749
+ "kind": "set",
50750
+ "resource": "@entity.queryVector"
50751
+ },
50752
+ {
50753
+ "kind": "set",
50754
+ "resource": "@entity.reason"
50755
+ },
50756
+ {
50757
+ "kind": "set",
50758
+ "resource": "@entity.request"
50759
+ },
50760
+ {
50761
+ "kind": "set",
50762
+ "resource": "@entity.status"
50763
+ }
50764
+ ],
49161
50765
  "emits": [
49162
50766
  {
49163
50767
  "description": "Raw embeddings from llm/embed \u2014 query vector at index 0, candidate vectors following in input order",
@@ -50385,6 +51989,21 @@ function stdModQueueModQueueItemOrbital(params = {}) {
50385
51989
  "type": "string"
50386
51990
  }
50387
51991
  },
51992
+ "effectRow": [
51993
+ {
51994
+ "kind": "fetch",
51995
+ "resource": "ModQueueItem"
51996
+ },
51997
+ {
51998
+ "kind": "persist",
51999
+ "resource": "ModQueueItem"
52000
+ },
52001
+ {
52002
+ "kind": "render-ui",
52003
+ "resolved": false,
52004
+ "resource": "@config.reviewSlot"
52005
+ }
52006
+ ],
50388
52007
  "emits": [
50389
52008
  {
50390
52009
  "description": "Signals that a moderation item has been approved.",
@@ -51647,6 +53266,28 @@ function stdModalModalRecordOrbital(params = {}) {
51647
53266
  "type": "string"
51648
53267
  }
51649
53268
  },
53269
+ "effectRow": [
53270
+ {
53271
+ "kind": "fetch",
53272
+ "resource": "ModalRecord"
53273
+ },
53274
+ {
53275
+ "kind": "notify"
53276
+ },
53277
+ {
53278
+ "kind": "render-ui",
53279
+ "resolved": false,
53280
+ "resource": "@config.detailSlot"
53281
+ },
53282
+ {
53283
+ "kind": "set",
53284
+ "resource": "@entity.id"
53285
+ },
53286
+ {
53287
+ "kind": "set",
53288
+ "resource": "@entity.seedRow"
53289
+ }
53290
+ ],
51650
53291
  "emits": [
51651
53292
  {
51652
53293
  "description": "Indicates a successful data save operation.",
@@ -52640,6 +54281,80 @@ function stdMultiPartyFlowMultiPartyFlowOrbital(params = {}) {
52640
54281
  "type": "string"
52641
54282
  }
52642
54283
  },
54284
+ "effectRow": [
54285
+ {
54286
+ "kind": "fetch",
54287
+ "resource": "MultiPartyView"
54288
+ },
54289
+ {
54290
+ "kind": "render-ui",
54291
+ "resource": "main"
54292
+ },
54293
+ {
54294
+ "kind": "set",
54295
+ "resource": "@entity.audit"
54296
+ },
54297
+ {
54298
+ "kind": "set",
54299
+ "resource": "@entity.cancelReason"
54300
+ },
54301
+ {
54302
+ "kind": "set",
54303
+ "resource": "@entity.currentActionDescription"
54304
+ },
54305
+ {
54306
+ "kind": "set",
54307
+ "resource": "@entity.currentActionIcon"
54308
+ },
54309
+ {
54310
+ "kind": "set",
54311
+ "resource": "@entity.currentActionLabel"
54312
+ },
54313
+ {
54314
+ "kind": "set",
54315
+ "resource": "@entity.currentPartyActor"
54316
+ },
54317
+ {
54318
+ "kind": "set",
54319
+ "resource": "@entity.currentPartyIcon"
54320
+ },
54321
+ {
54322
+ "kind": "set",
54323
+ "resource": "@entity.currentPartyId"
54324
+ },
54325
+ {
54326
+ "kind": "set",
54327
+ "resource": "@entity.currentPartyIndex"
54328
+ },
54329
+ {
54330
+ "kind": "set",
54331
+ "resource": "@entity.currentPartyTitle"
54332
+ },
54333
+ {
54334
+ "kind": "set",
54335
+ "resource": "@entity.currentStepLabel"
54336
+ },
54337
+ {
54338
+ "kind": "set",
54339
+ "resource": "@entity.disputeReason"
54340
+ },
54341
+ {
54342
+ "kind": "set",
54343
+ "resource": "@entity.errorMessage"
54344
+ },
54345
+ {
54346
+ "kind": "set",
54347
+ "resource": "@entity.parties"
54348
+ },
54349
+ {
54350
+ "kind": "set",
54351
+ "resource": "@entity.reason"
54352
+ },
54353
+ {
54354
+ "kind": "set",
54355
+ "resource": "@entity.totalParties"
54356
+ }
54357
+ ],
52643
54358
  "emits": [
52644
54359
  {
52645
54360
  "description": "Signals a party's acceptance or agreement within the flow.",
@@ -55385,6 +57100,22 @@ function stdNotificationCenterNotificationCenterOrbital(params = {}) {
55385
57100
  traits: [
55386
57101
  {
55387
57102
  "category": "lifecycle",
57103
+ "effectRow": [
57104
+ {
57105
+ "kind": "browser/push-subscribe"
57106
+ },
57107
+ {
57108
+ "kind": "notify"
57109
+ },
57110
+ {
57111
+ "kind": "persist",
57112
+ "resource": "PushSubscription"
57113
+ },
57114
+ {
57115
+ "kind": "set",
57116
+ "resource": "@entity.lastError"
57117
+ }
57118
+ ],
55388
57119
  "emits": [
55389
57120
  {
55390
57121
  "description": "browser/push-subscribe resolved; the subscription credentials arrive flat on the payload",
@@ -55615,6 +57346,15 @@ function stdNotificationCenterNotificationCenterOrbital(params = {}) {
55615
57346
  },
55616
57347
  {
55617
57348
  "category": "lifecycle",
57349
+ "effectRow": [
57350
+ {
57351
+ "kind": "notify"
57352
+ },
57353
+ {
57354
+ "kind": "persist",
57355
+ "resource": "NotificationPreference"
57356
+ }
57357
+ ],
55618
57358
  "emits": [
55619
57359
  {
55620
57360
  "description": "Preference row persisted",
@@ -55909,6 +57649,49 @@ function stdNotificationCenterNotificationCenterOrbital(params = {}) {
55909
57649
  "type": "number"
55910
57650
  }
55911
57651
  },
57652
+ "effectRow": [
57653
+ {
57654
+ "kind": "call-service",
57655
+ "resource": "email.send"
57656
+ },
57657
+ {
57658
+ "kind": "fetch",
57659
+ "resource": "NotificationRecord"
57660
+ },
57661
+ {
57662
+ "kind": "fetch",
57663
+ "resource": "NotificationRecord",
57664
+ "site": "tick"
57665
+ },
57666
+ {
57667
+ "kind": "persist",
57668
+ "resource": "NotificationRecord"
57669
+ },
57670
+ {
57671
+ "kind": "set",
57672
+ "resource": "@entity.drainedCount"
57673
+ },
57674
+ {
57675
+ "kind": "set",
57676
+ "resource": "@entity.headId"
57677
+ },
57678
+ {
57679
+ "kind": "set",
57680
+ "resource": "@entity.headMessage"
57681
+ },
57682
+ {
57683
+ "kind": "set",
57684
+ "resource": "@entity.headRecipient"
57685
+ },
57686
+ {
57687
+ "kind": "set",
57688
+ "resource": "@entity.lastError"
57689
+ },
57690
+ {
57691
+ "kind": "ticks",
57692
+ "site": "tick"
57693
+ }
57694
+ ],
55912
57695
  "emits": [
55913
57696
  {
55914
57697
  "description": "Undispatched digest/quiet-hours audit rows past minAgeHours, oldest batch first",
@@ -57028,6 +58811,103 @@ function stdNotifyOnEventNotifyOnEventOrbital(params = {}) {
57028
58811
  "type": "string"
57029
58812
  }
57030
58813
  },
58814
+ "effectRow": [
58815
+ {
58816
+ "kind": "call-service",
58817
+ "resource": "email.send"
58818
+ },
58819
+ {
58820
+ "kind": "call-service",
58821
+ "resource": "push.send"
58822
+ },
58823
+ {
58824
+ "kind": "call-service",
58825
+ "resource": "twilio.sendSMS"
58826
+ },
58827
+ {
58828
+ "kind": "call-service",
58829
+ "resource": "webhook.send"
58830
+ },
58831
+ {
58832
+ "kind": "emit",
58833
+ "resource": "NotificationDispatched"
58834
+ },
58835
+ {
58836
+ "kind": "fetch",
58837
+ "resource": "NotificationPreference"
58838
+ },
58839
+ {
58840
+ "kind": "fetch",
58841
+ "resource": "NotificationRecord"
58842
+ },
58843
+ {
58844
+ "kind": "fetch",
58845
+ "resource": "PushSubscription"
58846
+ },
58847
+ {
58848
+ "kind": "notify"
58849
+ },
58850
+ {
58851
+ "kind": "persist",
58852
+ "resource": "NotificationRecord"
58853
+ },
58854
+ {
58855
+ "kind": "set",
58856
+ "resource": "@entity.channel"
58857
+ },
58858
+ {
58859
+ "kind": "set",
58860
+ "resource": "@entity.dispatched"
58861
+ },
58862
+ {
58863
+ "kind": "set",
58864
+ "resource": "@entity.error"
58865
+ },
58866
+ {
58867
+ "kind": "set",
58868
+ "resource": "@entity.message"
58869
+ },
58870
+ {
58871
+ "kind": "set",
58872
+ "resource": "@entity.prefChannel"
58873
+ },
58874
+ {
58875
+ "kind": "set",
58876
+ "resource": "@entity.prefMode"
58877
+ },
58878
+ {
58879
+ "kind": "set",
58880
+ "resource": "@entity.prefQuietEnd"
58881
+ },
58882
+ {
58883
+ "kind": "set",
58884
+ "resource": "@entity.prefQuietStart"
58885
+ },
58886
+ {
58887
+ "kind": "set",
58888
+ "resource": "@entity.pushAuth"
58889
+ },
58890
+ {
58891
+ "kind": "set",
58892
+ "resource": "@entity.pushEndpoint"
58893
+ },
58894
+ {
58895
+ "kind": "set",
58896
+ "resource": "@entity.pushP256dh"
58897
+ },
58898
+ {
58899
+ "kind": "set",
58900
+ "resource": "@entity.recipient"
58901
+ },
58902
+ {
58903
+ "kind": "set",
58904
+ "resource": "@entity.recordedAt"
58905
+ },
58906
+ {
58907
+ "kind": "set",
58908
+ "resource": "@entity.severity"
58909
+ }
58910
+ ],
57031
58911
  "emits": [
57032
58912
  {
57033
58913
  "event": "NotificationDispatched",
@@ -59342,6 +61222,24 @@ function stdPaginationPagedItemOrbital(params = {}) {
59342
61222
  "type": "number"
59343
61223
  }
59344
61224
  },
61225
+ "effectRow": [
61226
+ {
61227
+ "kind": "fetch",
61228
+ "resource": "PagedItem"
61229
+ },
61230
+ {
61231
+ "kind": "render-ui",
61232
+ "resource": "main"
61233
+ },
61234
+ {
61235
+ "kind": "set",
61236
+ "resource": "@entity.currentPage"
61237
+ },
61238
+ {
61239
+ "kind": "set",
61240
+ "resource": "@entity.totalPages"
61241
+ }
61242
+ ],
59345
61243
  "emits": [
59346
61244
  {
59347
61245
  "description": "Indicates a change in the currently displayed page.",
@@ -60496,6 +62394,24 @@ function stdRateLimiterRateBucketOrbital(params = {}) {
60496
62394
  ]
60497
62395
  }
60498
62396
  },
62397
+ "effectRow": [
62398
+ {
62399
+ "kind": "render-ui",
62400
+ "resource": "main"
62401
+ },
62402
+ {
62403
+ "kind": "set",
62404
+ "resource": "@entity.count"
62405
+ },
62406
+ {
62407
+ "kind": "set",
62408
+ "resource": "@entity.limiterStatus"
62409
+ },
62410
+ {
62411
+ "kind": "set",
62412
+ "resource": "@entity.window"
62413
+ }
62414
+ ],
60499
62415
  "linkedEntity": "RateBucket",
60500
62416
  "listens": [
60501
62417
  {
@@ -61389,6 +63305,56 @@ function stdRatingReviewRatingReviewOrbital(params = {}) {
61389
63305
  "type": "string"
61390
63306
  }
61391
63307
  },
63308
+ "effectRow": [
63309
+ {
63310
+ "kind": "fetch",
63311
+ "resource": "ReviewView"
63312
+ },
63313
+ {
63314
+ "kind": "persist",
63315
+ "resource": "ReviewView"
63316
+ },
63317
+ {
63318
+ "kind": "render-ui",
63319
+ "resource": "main"
63320
+ },
63321
+ {
63322
+ "kind": "set",
63323
+ "resource": "@entity.averageRating"
63324
+ },
63325
+ {
63326
+ "kind": "set",
63327
+ "resource": "@entity.currentSort"
63328
+ },
63329
+ {
63330
+ "kind": "set",
63331
+ "resource": "@entity.draftComment"
63332
+ },
63333
+ {
63334
+ "kind": "set",
63335
+ "resource": "@entity.draftRating"
63336
+ },
63337
+ {
63338
+ "kind": "set",
63339
+ "resource": "@entity.errorMessage"
63340
+ },
63341
+ {
63342
+ "kind": "set",
63343
+ "resource": "@entity.reviews"
63344
+ },
63345
+ {
63346
+ "kind": "set",
63347
+ "resource": "@entity.reviewsSource"
63348
+ },
63349
+ {
63350
+ "kind": "set",
63351
+ "resource": "@entity.starDistribution"
63352
+ },
63353
+ {
63354
+ "kind": "set",
63355
+ "resource": "@entity.totalReviews"
63356
+ }
63357
+ ],
61392
63358
  "emits": [
61393
63359
  {
61394
63360
  "description": "Initiates the review composition flow.",
@@ -63519,6 +65485,28 @@ function stdRatingReviewRatingReviewOrbital(params = {}) {
63519
65485
  "type": "string"
63520
65486
  }
63521
65487
  },
65488
+ "effectRow": [
65489
+ {
65490
+ "kind": "persist",
65491
+ "resource": "ReviewView"
65492
+ },
65493
+ {
65494
+ "kind": "render-ui",
65495
+ "resource": "main"
65496
+ },
65497
+ {
65498
+ "kind": "set",
65499
+ "resource": "@entity.draftComment"
65500
+ },
65501
+ {
65502
+ "kind": "set",
65503
+ "resource": "@entity.draftRating"
65504
+ },
65505
+ {
65506
+ "kind": "set",
65507
+ "resource": "@entity.errorMessage"
65508
+ }
65509
+ ],
63522
65510
  "emits": [
63523
65511
  {
63524
65512
  "description": "Signals a review draft has been created or updated.",
@@ -64756,6 +66744,60 @@ function stdRecordDetailRecordItemOrbital(params = {}) {
64756
66744
  "type": "string"
64757
66745
  }
64758
66746
  },
66747
+ "effectRow": [
66748
+ {
66749
+ "kind": "emit",
66750
+ "resource": "CONTENT_COMMITTED"
66751
+ },
66752
+ {
66753
+ "kind": "emit",
66754
+ "resource": "CONTENT_SAVED"
66755
+ },
66756
+ {
66757
+ "kind": "fetch",
66758
+ "resource": "RecordItem"
66759
+ },
66760
+ {
66761
+ "kind": "render-ui",
66762
+ "resource": "main"
66763
+ },
66764
+ {
66765
+ "kind": "set",
66766
+ "resource": "@entity.content"
66767
+ },
66768
+ {
66769
+ "kind": "set",
66770
+ "resource": "@entity.coverUrl"
66771
+ },
66772
+ {
66773
+ "kind": "set",
66774
+ "resource": "@entity.description"
66775
+ },
66776
+ {
66777
+ "kind": "set",
66778
+ "resource": "@entity.iconName"
66779
+ },
66780
+ {
66781
+ "kind": "set",
66782
+ "resource": "@entity.id"
66783
+ },
66784
+ {
66785
+ "kind": "set",
66786
+ "resource": "@entity.loadedRow"
66787
+ },
66788
+ {
66789
+ "kind": "set",
66790
+ "resource": "@entity.name"
66791
+ },
66792
+ {
66793
+ "kind": "set",
66794
+ "resource": "@entity.openDraft"
66795
+ },
66796
+ {
66797
+ "kind": "set",
66798
+ "resource": "@entity.slug"
66799
+ }
66800
+ ],
64759
66801
  "emits": [
64760
66802
  {
64761
66803
  "description": "Signals that the record has been successfully loaded.",
@@ -67400,6 +69442,20 @@ function stdRecordDetailRecordItemOrbital(params = {}) {
67400
69442
  "type": "[MetaFieldSpec]"
67401
69443
  }
67402
69444
  },
69445
+ "effectRow": [
69446
+ {
69447
+ "kind": "emit",
69448
+ "resource": "META_SAVED"
69449
+ },
69450
+ {
69451
+ "kind": "render-ui",
69452
+ "resource": "drawer"
69453
+ },
69454
+ {
69455
+ "kind": "set",
69456
+ "resource": "@entity.loadedRow"
69457
+ }
69458
+ ],
67403
69459
  "emits": [
67404
69460
  {
67405
69461
  "description": "A property in the settings rail committed in place; patch carries the row id plus the one changed field, ready to hand straight to a persist update. Quiet contract: the host persists without refetching or repainting the open document.",
@@ -68226,6 +70282,64 @@ function stdRecurrenceRecurrenceOrbital(params = {}) {
68226
70282
  "type": "string"
68227
70283
  }
68228
70284
  },
70285
+ "effectRow": [
70286
+ {
70287
+ "kind": "fetch",
70288
+ "resource": "RecurrenceView"
70289
+ },
70290
+ {
70291
+ "kind": "persist",
70292
+ "resource": "RecurrenceView"
70293
+ },
70294
+ {
70295
+ "kind": "render-ui",
70296
+ "resource": "main"
70297
+ },
70298
+ {
70299
+ "kind": "set",
70300
+ "resource": "@entity.currentOccurrenceDate"
70301
+ },
70302
+ {
70303
+ "kind": "set",
70304
+ "resource": "@entity.currentOccurrenceId"
70305
+ },
70306
+ {
70307
+ "kind": "set",
70308
+ "resource": "@entity.currentOccurrenceLabel"
70309
+ },
70310
+ {
70311
+ "kind": "set",
70312
+ "resource": "@entity.endAfterCount"
70313
+ },
70314
+ {
70315
+ "kind": "set",
70316
+ "resource": "@entity.endDate"
70317
+ },
70318
+ {
70319
+ "kind": "set",
70320
+ "resource": "@entity.errorMessage"
70321
+ },
70322
+ {
70323
+ "kind": "set",
70324
+ "resource": "@entity.frequency"
70325
+ },
70326
+ {
70327
+ "kind": "set",
70328
+ "resource": "@entity.interval"
70329
+ },
70330
+ {
70331
+ "kind": "set",
70332
+ "resource": "@entity.occurrences"
70333
+ },
70334
+ {
70335
+ "kind": "set",
70336
+ "resource": "@entity.rescheduleDate"
70337
+ },
70338
+ {
70339
+ "kind": "set",
70340
+ "resource": "@entity.startDate"
70341
+ }
70342
+ ],
68229
70343
  "emits": [
68230
70344
  {
68231
70345
  "description": "Signals the rule definition is being modified.",
@@ -69510,6 +71624,20 @@ function stdRelatedRelatedItemOrbital(params = {}) {
69510
71624
  "type": "string"
69511
71625
  }
69512
71626
  },
71627
+ "effectRow": [
71628
+ {
71629
+ "kind": "fetch",
71630
+ "resource": "RelatedItem"
71631
+ },
71632
+ {
71633
+ "kind": "render-ui",
71634
+ "resource": "main"
71635
+ },
71636
+ {
71637
+ "kind": "set",
71638
+ "resource": "@entity.id"
71639
+ }
71640
+ ],
69513
71641
  "emits": [
69514
71642
  {
69515
71643
  "description": "Signals that related items have been successfully loaded.",
@@ -70289,6 +72417,36 @@ function stdReminderSchedulerReminderSchedulerOrbital(params = {}) {
70289
72417
  "type": "string"
70290
72418
  }
70291
72419
  },
72420
+ "effectRow": [
72421
+ {
72422
+ "kind": "emit",
72423
+ "resource": "ReminderDue"
72424
+ },
72425
+ {
72426
+ "kind": "fetch",
72427
+ "resolved": false,
72428
+ "resource": "@config.targetEntity"
72429
+ },
72430
+ {
72431
+ "kind": "fetch",
72432
+ "resolved": false,
72433
+ "resource": "@config.targetEntity",
72434
+ "site": "tick"
72435
+ },
72436
+ {
72437
+ "kind": "persist",
72438
+ "resolved": false,
72439
+ "resource": "@config.targetEntity"
72440
+ },
72441
+ {
72442
+ "kind": "set",
72443
+ "resource": "@entity.headId"
72444
+ },
72445
+ {
72446
+ "kind": "ticks",
72447
+ "site": "tick"
72448
+ }
72449
+ ],
70292
72450
  "emits": [
70293
72451
  {
70294
72452
  "event": "ReminderDue",
@@ -70958,6 +73116,28 @@ function stdRowAccessControlRowAccessControlOrbital(params = {}) {
70958
73116
  "type": "[string]"
70959
73117
  }
70960
73118
  },
73119
+ "effectRow": [
73120
+ {
73121
+ "kind": "emit",
73122
+ "resource": "RowsFiltered"
73123
+ },
73124
+ {
73125
+ "kind": "set",
73126
+ "resource": "@entity.accessDenied"
73127
+ },
73128
+ {
73129
+ "kind": "set",
73130
+ "resource": "@entity.filteredData"
73131
+ },
73132
+ {
73133
+ "kind": "set",
73134
+ "resource": "@entity.inputCount"
73135
+ },
73136
+ {
73137
+ "kind": "set",
73138
+ "resource": "@entity.outputCount"
73139
+ }
73140
+ ],
70961
73141
  "emits": [
70962
73142
  {
70963
73143
  "event": "RowsFiltered",
@@ -71366,6 +73546,36 @@ function stdSavedSearchSavedSearchOrbital(params = {}) {
71366
73546
  "type": "string"
71367
73547
  }
71368
73548
  },
73549
+ "effectRow": [
73550
+ {
73551
+ "kind": "fetch",
73552
+ "resource": "SavedSearch"
73553
+ },
73554
+ {
73555
+ "kind": "persist",
73556
+ "resource": "SavedSearch"
73557
+ },
73558
+ {
73559
+ "kind": "render-ui",
73560
+ "resource": "main"
73561
+ },
73562
+ {
73563
+ "kind": "set",
73564
+ "resource": "@entity.alertEnabled"
73565
+ },
73566
+ {
73567
+ "kind": "set",
73568
+ "resource": "@entity.alertFrequency"
73569
+ },
73570
+ {
73571
+ "kind": "set",
73572
+ "resource": "@entity.id"
73573
+ },
73574
+ {
73575
+ "kind": "set",
73576
+ "resource": "@entity.name"
73577
+ }
73578
+ ],
71369
73579
  "emits": [
71370
73580
  {
71371
73581
  "description": "Indicates the alert subscription status has been changed.",
@@ -72449,6 +74659,16 @@ function stdScatterScatterItemOrbital(params = {}) {
72449
74659
  "type": "string"
72450
74660
  }
72451
74661
  },
74662
+ "effectRow": [
74663
+ {
74664
+ "kind": "render-ui",
74665
+ "resource": "main"
74666
+ },
74667
+ {
74668
+ "kind": "set",
74669
+ "resource": "@entity.points"
74670
+ }
74671
+ ],
72452
74672
  "linkedEntity": "ScatterItem",
72453
74673
  "name": "ScatterItemPlot",
72454
74674
  "scope": "instance",
@@ -72824,6 +75044,16 @@ function stdSearchSearchResultOrbital(params = {}) {
72824
75044
  "type": "string"
72825
75045
  }
72826
75046
  },
75047
+ "effectRow": [
75048
+ {
75049
+ "kind": "render-ui",
75050
+ "resource": "main"
75051
+ },
75052
+ {
75053
+ "kind": "set",
75054
+ "resource": "@entity.searchTerm"
75055
+ }
75056
+ ],
72827
75057
  "emits": [
72828
75058
  {
72829
75059
  "description": "Initiates a search operation based on the input term.",
@@ -73177,6 +75407,16 @@ function stdSelectionSelectableItemOrbital(params = {}) {
73177
75407
  ]
73178
75408
  }
73179
75409
  },
75410
+ "effectRow": [
75411
+ {
75412
+ "kind": "fetch",
75413
+ "resource": "SelectableItem"
75414
+ },
75415
+ {
75416
+ "kind": "render-ui",
75417
+ "resource": "main"
75418
+ }
75419
+ ],
73180
75420
  "emits": [
73181
75421
  {
73182
75422
  "description": "Indicates a selectable item has been successfully loaded.",
@@ -74260,6 +76500,24 @@ function stdSignatureCaptureSignatureCaptureOrbital(params = {}) {
74260
76500
  "type": "string"
74261
76501
  }
74262
76502
  },
76503
+ "effectRow": [
76504
+ {
76505
+ "kind": "fetch",
76506
+ "resource": "Signature"
76507
+ },
76508
+ {
76509
+ "kind": "persist",
76510
+ "resource": "Signature"
76511
+ },
76512
+ {
76513
+ "kind": "render-ui",
76514
+ "resource": "main"
76515
+ },
76516
+ {
76517
+ "kind": "set",
76518
+ "resource": "@entity.signatureDataUrl"
76519
+ }
76520
+ ],
74263
76521
  "emits": [
74264
76522
  {
74265
76523
  "description": "Indicates a change in the signature drawing.",
@@ -75750,6 +78008,16 @@ function stdStatsStatsItemOrbital(params = {}) {
75750
78008
  "type": "pattern"
75751
78009
  }
75752
78010
  },
78011
+ "effectRow": [
78012
+ {
78013
+ "kind": "render-ui",
78014
+ "resource": "main"
78015
+ },
78016
+ {
78017
+ "kind": "set",
78018
+ "resource": "@entity.cards"
78019
+ }
78020
+ ],
75753
78021
  "entityContract": {
75754
78022
  "provides": [
75755
78023
  "cards"
@@ -76562,6 +78830,17 @@ function stdStatusLifecycleStatusLifecycleOrbital(params = {}) {
76562
78830
  "type": "[TransitionSpec]"
76563
78831
  }
76564
78832
  },
78833
+ "effectRow": [
78834
+ {
78835
+ "kind": "emit",
78836
+ "resource": "StatusChanged"
78837
+ },
78838
+ {
78839
+ "kind": "persist",
78840
+ "resolved": false,
78841
+ "resource": "@config.targetEntity"
78842
+ }
78843
+ ],
76565
78844
  "emits": [
76566
78845
  {
76567
78846
  "event": "StatusChanged",
@@ -77290,6 +79569,76 @@ function stdStepFlowStepFlowOrbital(params = {}) {
77290
79569
  "type": "string"
77291
79570
  }
77292
79571
  },
79572
+ "effectRow": [
79573
+ {
79574
+ "kind": "fetch",
79575
+ "resource": "StepFlowView"
79576
+ },
79577
+ {
79578
+ "kind": "render-ui",
79579
+ "resource": "main"
79580
+ },
79581
+ {
79582
+ "kind": "set",
79583
+ "resource": "@entity.currentStepDescription"
79584
+ },
79585
+ {
79586
+ "kind": "set",
79587
+ "resource": "@entity.currentStepIcon"
79588
+ },
79589
+ {
79590
+ "kind": "set",
79591
+ "resource": "@entity.currentStepIndex"
79592
+ },
79593
+ {
79594
+ "kind": "set",
79595
+ "resource": "@entity.currentStepLabel"
79596
+ },
79597
+ {
79598
+ "kind": "set",
79599
+ "resource": "@entity.errorMessage"
79600
+ },
79601
+ {
79602
+ "kind": "set",
79603
+ "resource": "@entity.finalStatus"
79604
+ },
79605
+ {
79606
+ "kind": "set",
79607
+ "resource": "@entity.id"
79608
+ },
79609
+ {
79610
+ "kind": "set",
79611
+ "resource": "@entity.isFirstStep"
79612
+ },
79613
+ {
79614
+ "kind": "set",
79615
+ "resource": "@entity.isLastStep"
79616
+ },
79617
+ {
79618
+ "kind": "set",
79619
+ "resource": "@entity.primaryActionIcon"
79620
+ },
79621
+ {
79622
+ "kind": "set",
79623
+ "resource": "@entity.primaryActionLabel"
79624
+ },
79625
+ {
79626
+ "kind": "set",
79627
+ "resource": "@entity.primaryActionVariant"
79628
+ },
79629
+ {
79630
+ "kind": "set",
79631
+ "resource": "@entity.rejectionReason"
79632
+ },
79633
+ {
79634
+ "kind": "set",
79635
+ "resource": "@entity.totalSteps"
79636
+ },
79637
+ {
79638
+ "kind": "set",
79639
+ "resource": "@entity.wizardSteps"
79640
+ }
79641
+ ],
77293
79642
  "emits": [
77294
79643
  {
77295
79644
  "description": "Signals progression to the next step in the sequence.",
@@ -79125,6 +81474,20 @@ function stdTabsTabsItemOrbital(params = {}) {
79125
81474
  ]
79126
81475
  }
79127
81476
  },
81477
+ "effectRow": [
81478
+ {
81479
+ "kind": "render-ui",
81480
+ "resource": "main"
81481
+ },
81482
+ {
81483
+ "kind": "set",
81484
+ "resource": "@entity.activeTab"
81485
+ },
81486
+ {
81487
+ "kind": "set",
81488
+ "resource": "@entity.items"
81489
+ }
81490
+ ],
79128
81491
  "emits": [
79129
81492
  {
79130
81493
  "description": "Signals a tab selection has occurred.",
@@ -79492,6 +81855,40 @@ function stdTagTaxonomyTagTaxonomyOrbital(params = {}) {
79492
81855
  "type": "string"
79493
81856
  }
79494
81857
  },
81858
+ "effectRow": [
81859
+ {
81860
+ "kind": "emit",
81861
+ "resource": "LEVEL_RELOAD"
81862
+ },
81863
+ {
81864
+ "kind": "emit",
81865
+ "resource": "TagSelected"
81866
+ },
81867
+ {
81868
+ "kind": "fetch",
81869
+ "resource": "Tag"
81870
+ },
81871
+ {
81872
+ "kind": "persist",
81873
+ "resource": "Tag"
81874
+ },
81875
+ {
81876
+ "kind": "render-ui",
81877
+ "resource": "main"
81878
+ },
81879
+ {
81880
+ "kind": "render-ui",
81881
+ "resource": "modal"
81882
+ },
81883
+ {
81884
+ "kind": "set",
81885
+ "resource": "@entity.id"
81886
+ },
81887
+ {
81888
+ "kind": "set",
81889
+ "resource": "@entity.parentId"
81890
+ }
81891
+ ],
79495
81892
  "emits": [
79496
81893
  {
79497
81894
  "description": "Signals a tag has been chosen for navigation.",
@@ -81355,6 +83752,36 @@ function stdThreadThreadPostOrbital(params = {}) {
81355
83752
  "type": "string"
81356
83753
  }
81357
83754
  },
83755
+ "effectRow": [
83756
+ {
83757
+ "kind": "fetch",
83758
+ "resource": "ThreadPost"
83759
+ },
83760
+ {
83761
+ "kind": "persist",
83762
+ "resource": "ThreadPost"
83763
+ },
83764
+ {
83765
+ "kind": "render-ui",
83766
+ "resource": "main"
83767
+ },
83768
+ {
83769
+ "kind": "set",
83770
+ "resource": "@entity.content"
83771
+ },
83772
+ {
83773
+ "kind": "set",
83774
+ "resource": "@entity.focusedRow"
83775
+ },
83776
+ {
83777
+ "kind": "set",
83778
+ "resource": "@entity.parentId"
83779
+ },
83780
+ {
83781
+ "kind": "set",
83782
+ "resource": "@entity.threadRootId"
83783
+ }
83784
+ ],
81358
83785
  "emits": [
81359
83786
  {
81360
83787
  "description": "Indicates a post or reply has been chosen for interaction.",
@@ -82830,6 +85257,36 @@ function stdTokenizerMlTokenizerOrbital(params = {}) {
82830
85257
  "type": "Map<string,int>"
82831
85258
  }
82832
85259
  },
85260
+ "effectRow": [
85261
+ {
85262
+ "kind": "emit",
85263
+ "resource": "TOKENIZED"
85264
+ },
85265
+ {
85266
+ "kind": "set",
85267
+ "resource": "@entity.request"
85268
+ },
85269
+ {
85270
+ "kind": "set",
85271
+ "resource": "@entity.status"
85272
+ },
85273
+ {
85274
+ "kind": "set",
85275
+ "resource": "@entity.text"
85276
+ },
85277
+ {
85278
+ "kind": "set",
85279
+ "resource": "@entity.tokenCount"
85280
+ },
85281
+ {
85282
+ "kind": "set",
85283
+ "resource": "@entity.tokenIds"
85284
+ },
85285
+ {
85286
+ "kind": "set",
85287
+ "resource": "@entity.tokens"
85288
+ }
85289
+ ],
82833
85290
  "emits": [
82834
85291
  {
82835
85292
  "description": "Text tokenized into a normalized, truncated token sequence with vocabulary ids",
@@ -83463,6 +85920,24 @@ function stdTreeTreeNodeOrbital(params = {}) {
83463
85920
  "type": "string"
83464
85921
  }
83465
85922
  },
85923
+ "effectRow": [
85924
+ {
85925
+ "kind": "emit",
85926
+ "resource": "CHILD_REQUESTED"
85927
+ },
85928
+ {
85929
+ "kind": "fetch",
85930
+ "resource": "TreeNode"
85931
+ },
85932
+ {
85933
+ "kind": "render-ui",
85934
+ "resource": "main"
85935
+ },
85936
+ {
85937
+ "kind": "set",
85938
+ "resource": "@entity.id"
85939
+ }
85940
+ ],
83466
85941
  "emits": [
83467
85942
  {
83468
85943
  "description": "Signals a tree node has been selected for external handoff.",
@@ -84834,6 +87309,60 @@ function stdVersionHistoryRevisionOrbital(params = {}) {
84834
87309
  "type": "string"
84835
87310
  }
84836
87311
  },
87312
+ "effectRow": [
87313
+ {
87314
+ "kind": "fetch",
87315
+ "resource": "Revision"
87316
+ },
87317
+ {
87318
+ "kind": "persist",
87319
+ "resource": "Revision"
87320
+ },
87321
+ {
87322
+ "kind": "render-ui",
87323
+ "resource": "main"
87324
+ },
87325
+ {
87326
+ "kind": "set",
87327
+ "resource": "@entity.authorId"
87328
+ },
87329
+ {
87330
+ "kind": "set",
87331
+ "resource": "@entity.authorName"
87332
+ },
87333
+ {
87334
+ "kind": "set",
87335
+ "resource": "@entity.content"
87336
+ },
87337
+ {
87338
+ "kind": "set",
87339
+ "resource": "@entity.createdAt"
87340
+ },
87341
+ {
87342
+ "kind": "set",
87343
+ "resource": "@entity.documentId"
87344
+ },
87345
+ {
87346
+ "kind": "set",
87347
+ "resource": "@entity.documentType"
87348
+ },
87349
+ {
87350
+ "kind": "set",
87351
+ "resource": "@entity.id"
87352
+ },
87353
+ {
87354
+ "kind": "set",
87355
+ "resource": "@entity.scopeKey"
87356
+ },
87357
+ {
87358
+ "kind": "set",
87359
+ "resource": "@entity.summary"
87360
+ },
87361
+ {
87362
+ "kind": "set",
87363
+ "resource": "@entity.versionNumber"
87364
+ }
87365
+ ],
84837
87366
  "emits": [
84838
87367
  {
84839
87368
  "description": "Signals a revision has been selected for viewing.",
@@ -86652,6 +89181,28 @@ function stdVoteVoteOrbital(params = {}) {
86652
89181
  "type": "boolean"
86653
89182
  }
86654
89183
  },
89184
+ "effectRow": [
89185
+ {
89186
+ "kind": "fetch",
89187
+ "resource": "Vote"
89188
+ },
89189
+ {
89190
+ "kind": "persist",
89191
+ "resource": "Vote"
89192
+ },
89193
+ {
89194
+ "kind": "render-ui",
89195
+ "resource": "main"
89196
+ },
89197
+ {
89198
+ "kind": "set",
89199
+ "resource": "@entity.direction"
89200
+ },
89201
+ {
89202
+ "kind": "set",
89203
+ "resource": "@entity.targetId"
89204
+ }
89205
+ ],
86655
89206
  "emits": [
86656
89207
  {
86657
89208
  "description": "Signals a vote has been successfully recorded.",
@@ -87428,6 +89979,36 @@ function stdWeightValidatorMlWeightValidatorOrbital(params = {}) {
87428
89979
  "type": "float"
87429
89980
  }
87430
89981
  },
89982
+ "effectRow": [
89983
+ {
89984
+ "kind": "emit",
89985
+ "resource": "WEIGHTS_ACCEPTED"
89986
+ },
89987
+ {
89988
+ "kind": "emit",
89989
+ "resource": "WEIGHTS_REJECTED"
89990
+ },
89991
+ {
89992
+ "kind": "set",
89993
+ "resource": "@entity.baseline"
89994
+ },
89995
+ {
89996
+ "kind": "set",
89997
+ "resource": "@entity.status"
89998
+ },
89999
+ {
90000
+ "kind": "set",
90001
+ "resource": "@entity.valid"
90002
+ },
90003
+ {
90004
+ "kind": "set",
90005
+ "resource": "@entity.violations"
90006
+ },
90007
+ {
90008
+ "kind": "set",
90009
+ "resource": "@entity.weights"
90010
+ }
90011
+ ],
87431
90012
  "emits": [
87432
90013
  {
87433
90014
  "description": "All constraint checks passed \u2014 magnitude bounds, forbidden regions, and regression are all clear",
@@ -88251,6 +90832,76 @@ function stdWizardWizardOrbital(params = {}) {
88251
90832
  "type": "string"
88252
90833
  }
88253
90834
  },
90835
+ "effectRow": [
90836
+ {
90837
+ "kind": "fetch",
90838
+ "resource": "WizardView"
90839
+ },
90840
+ {
90841
+ "kind": "persist",
90842
+ "resource": "WizardView"
90843
+ },
90844
+ {
90845
+ "kind": "render-ui",
90846
+ "resource": "main"
90847
+ },
90848
+ {
90849
+ "kind": "set",
90850
+ "resource": "@entity.cancelReason"
90851
+ },
90852
+ {
90853
+ "kind": "set",
90854
+ "resource": "@entity.completionMessage"
90855
+ },
90856
+ {
90857
+ "kind": "set",
90858
+ "resource": "@entity.currentFields"
90859
+ },
90860
+ {
90861
+ "kind": "set",
90862
+ "resource": "@entity.currentStepDescription"
90863
+ },
90864
+ {
90865
+ "kind": "set",
90866
+ "resource": "@entity.currentStepIcon"
90867
+ },
90868
+ {
90869
+ "kind": "set",
90870
+ "resource": "@entity.currentStepIndex"
90871
+ },
90872
+ {
90873
+ "kind": "set",
90874
+ "resource": "@entity.currentStepLabel"
90875
+ },
90876
+ {
90877
+ "kind": "set",
90878
+ "resource": "@entity.errorMessage"
90879
+ },
90880
+ {
90881
+ "kind": "set",
90882
+ "resource": "@entity.isFirstStep"
90883
+ },
90884
+ {
90885
+ "kind": "set",
90886
+ "resource": "@entity.isLastStep"
90887
+ },
90888
+ {
90889
+ "kind": "set",
90890
+ "resource": "@entity.primaryActionIcon"
90891
+ },
90892
+ {
90893
+ "kind": "set",
90894
+ "resource": "@entity.primaryActionLabel"
90895
+ },
90896
+ {
90897
+ "kind": "set",
90898
+ "resource": "@entity.totalSteps"
90899
+ },
90900
+ {
90901
+ "kind": "set",
90902
+ "resource": "@entity.wizardSteps"
90903
+ }
90904
+ ],
88254
90905
  "emits": [
88255
90906
  {
88256
90907
  "description": "Signals progression to the next step in the wizard.",
@@ -94633,6 +97284,34 @@ function stdUiTimerDisplayTimerDisplayOrbital(params = {}) {
94633
97284
  ]
94634
97285
  }
94635
97286
  },
97287
+ "effectRow": [
97288
+ {
97289
+ "kind": "render-ui",
97290
+ "resource": "main"
97291
+ },
97292
+ {
97293
+ "kind": "render-ui",
97294
+ "resource": "main",
97295
+ "site": "tick"
97296
+ },
97297
+ {
97298
+ "kind": "set",
97299
+ "resource": "@entity.running"
97300
+ },
97301
+ {
97302
+ "kind": "set",
97303
+ "resource": "@entity.seconds"
97304
+ },
97305
+ {
97306
+ "kind": "set",
97307
+ "resource": "@entity.seconds",
97308
+ "site": "tick"
97309
+ },
97310
+ {
97311
+ "kind": "ticks",
97312
+ "site": "tick"
97313
+ }
97314
+ ],
94636
97315
  "entityContract": {
94637
97316
  "provides": [
94638
97317
  "running",
@@ -99684,6 +102363,45 @@ function stdAgentBuilderAgentBuilderOrbital(params = {}) {
99684
102363
  traits: [
99685
102364
  {
99686
102365
  "category": "lifecycle",
102366
+ "effectRow": [
102367
+ {
102368
+ "kind": "behavior/instantiate"
102369
+ },
102370
+ {
102371
+ "kind": "emit",
102372
+ "resource": "BUILD_COMPLETE"
102373
+ },
102374
+ {
102375
+ "kind": "llm/generate"
102376
+ },
102377
+ {
102378
+ "kind": "set",
102379
+ "resource": "@entity.fixPrompt"
102380
+ },
102381
+ {
102382
+ "kind": "set",
102383
+ "resource": "@entity.orbitalName"
102384
+ },
102385
+ {
102386
+ "kind": "set",
102387
+ "resource": "@entity.plan"
102388
+ },
102389
+ {
102390
+ "kind": "set",
102391
+ "resource": "@entity.request"
102392
+ },
102393
+ {
102394
+ "kind": "set",
102395
+ "resource": "@entity.status"
102396
+ },
102397
+ {
102398
+ "kind": "set",
102399
+ "resource": "@entity.validationResult"
102400
+ },
102401
+ {
102402
+ "kind": "validate/validate"
102403
+ }
102404
+ ],
99687
102405
  "emits": [
99688
102406
  {
99689
102407
  "event": "BUILD_COMPLETE",
@@ -99975,6 +102693,12 @@ function stdAgentBuilderAgentBuilderOrbital(params = {}) {
99975
102693
  },
99976
102694
  {
99977
102695
  "category": "lifecycle",
102696
+ "effectRow": [
102697
+ {
102698
+ "kind": "set",
102699
+ "resource": "@entity.status"
102700
+ }
102701
+ ],
99978
102702
  "linkedEntity": "BuilderProcess",
99979
102703
  "listens": [
99980
102704
  {
@@ -100243,6 +102967,60 @@ function stdAgentRabitCoordinatorOrbital(params = {}) {
100243
102967
  traits: [
100244
102968
  {
100245
102969
  "category": "lifecycle",
102970
+ "effectRow": [
102971
+ {
102972
+ "kind": "compose/compose-all"
102973
+ },
102974
+ {
102975
+ "kind": "emit",
102976
+ "resource": "DISPATCHED"
102977
+ },
102978
+ {
102979
+ "kind": "emit",
102980
+ "resource": "RABIT_DONE"
102981
+ },
102982
+ {
102983
+ "kind": "llm/generate"
102984
+ },
102985
+ {
102986
+ "kind": "session/write-spec"
102987
+ },
102988
+ {
102989
+ "kind": "set",
102990
+ "resource": "@entity.completedCount"
102991
+ },
102992
+ {
102993
+ "kind": "set",
102994
+ "resource": "@entity.composedSchema"
102995
+ },
102996
+ {
102997
+ "kind": "set",
102998
+ "resource": "@entity.failedCount"
102999
+ },
103000
+ {
103001
+ "kind": "set",
103002
+ "resource": "@entity.phase"
103003
+ },
103004
+ {
103005
+ "kind": "set",
103006
+ "resource": "@entity.plan"
103007
+ },
103008
+ {
103009
+ "kind": "set",
103010
+ "resource": "@entity.prompt"
103011
+ },
103012
+ {
103013
+ "kind": "set",
103014
+ "resource": "@entity.totalOrbitals"
103015
+ },
103016
+ {
103017
+ "kind": "set",
103018
+ "resource": "@entity.validationErrors"
103019
+ },
103020
+ {
103021
+ "kind": "validate/validate"
103022
+ }
103023
+ ],
100246
103024
  "emits": [
100247
103025
  {
100248
103026
  "event": "PLANNED",
@@ -100675,6 +103453,24 @@ function stdAgentRabitCoordinatorOrbital(params = {}) {
100675
103453
  },
100676
103454
  {
100677
103455
  "category": "lifecycle",
103456
+ "effectRow": [
103457
+ {
103458
+ "kind": "emit",
103459
+ "resource": "ALL_DONE"
103460
+ },
103461
+ {
103462
+ "kind": "set",
103463
+ "resource": "@entity.completedCount"
103464
+ },
103465
+ {
103466
+ "kind": "set",
103467
+ "resource": "@entity.failedCount"
103468
+ },
103469
+ {
103470
+ "kind": "set",
103471
+ "resource": "@entity.totalOrbitals"
103472
+ }
103473
+ ],
100678
103474
  "emits": [
100679
103475
  {
100680
103476
  "event": "ALL_DONE"
@@ -100883,6 +103679,12 @@ function stdAgentRabitCoordinatorOrbital(params = {}) {
100883
103679
  },
100884
103680
  {
100885
103681
  "category": "lifecycle",
103682
+ "effectRow": [
103683
+ {
103684
+ "kind": "set",
103685
+ "resource": "@entity.phase"
103686
+ }
103687
+ ],
100886
103688
  "linkedEntity": "Coordinator",
100887
103689
  "listens": [
100888
103690
  {
@@ -101131,6 +103933,65 @@ function stdAgentRabitOrbitalProcessOrbital(params = {}) {
101131
103933
  traits: [
101132
103934
  {
101133
103935
  "category": "lifecycle",
103936
+ "effectRow": [
103937
+ {
103938
+ "kind": "behavior/instantiate"
103939
+ },
103940
+ {
103941
+ "kind": "emit",
103942
+ "resource": "BUILD_STEP"
103943
+ },
103944
+ {
103945
+ "kind": "emit",
103946
+ "resource": "ORBITAL_COMPLETE"
103947
+ },
103948
+ {
103949
+ "kind": "emit",
103950
+ "resource": "PROCESS_DONE"
103951
+ },
103952
+ {
103953
+ "kind": "emit",
103954
+ "resource": "PROCESS_RETRY"
103955
+ },
103956
+ {
103957
+ "kind": "emit",
103958
+ "resource": "REBUILD"
103959
+ },
103960
+ {
103961
+ "kind": "llm/generate"
103962
+ },
103963
+ {
103964
+ "kind": "set",
103965
+ "resource": "@entity.attempts"
103966
+ },
103967
+ {
103968
+ "kind": "set",
103969
+ "resource": "@entity.fixPrompt"
103970
+ },
103971
+ {
103972
+ "kind": "set",
103973
+ "resource": "@entity.maxAttempts"
103974
+ },
103975
+ {
103976
+ "kind": "set",
103977
+ "resource": "@entity.method"
103978
+ },
103979
+ {
103980
+ "kind": "set",
103981
+ "resource": "@entity.orbitalName"
103982
+ },
103983
+ {
103984
+ "kind": "set",
103985
+ "resource": "@entity.spec"
103986
+ },
103987
+ {
103988
+ "kind": "set",
103989
+ "resource": "@entity.status"
103990
+ },
103991
+ {
103992
+ "kind": "validate/validate"
103993
+ }
103994
+ ],
101134
103995
  "emits": [
101135
103996
  {
101136
103997
  "event": "BUILD_STEP",
@@ -101591,6 +104452,16 @@ function stdAgentRabitOrbitalProcessOrbital(params = {}) {
101591
104452
  },
101592
104453
  {
101593
104454
  "category": "lifecycle",
104455
+ "effectRow": [
104456
+ {
104457
+ "kind": "set",
104458
+ "resource": "@entity.method"
104459
+ },
104460
+ {
104461
+ "kind": "set",
104462
+ "resource": "@entity.orbitalName"
104463
+ }
104464
+ ],
101594
104465
  "linkedEntity": "OrbitalProcess",
101595
104466
  "listens": [
101596
104467
  {
@@ -103290,6 +106161,54 @@ function stdArcadeBoard3dArcadeBoard3DFrameOrbital(params = {}) {
103290
106161
  "type": "number"
103291
106162
  }
103292
106163
  },
106164
+ "effectRow": [
106165
+ {
106166
+ "kind": "emit",
106167
+ "resource": "MOVE"
106168
+ },
106169
+ {
106170
+ "kind": "emit",
106171
+ "resource": "PLAY_MACHINE"
106172
+ },
106173
+ {
106174
+ "kind": "emit",
106175
+ "resource": "RESTART"
106176
+ },
106177
+ {
106178
+ "kind": "emit",
106179
+ "resource": "WANDER",
106180
+ "site": "tick"
106181
+ },
106182
+ {
106183
+ "kind": "render-ui",
106184
+ "resource": "main"
106185
+ },
106186
+ {
106187
+ "kind": "render-ui",
106188
+ "resource": "main",
106189
+ "site": "tick"
106190
+ },
106191
+ {
106192
+ "kind": "set",
106193
+ "resource": "@entity.features"
106194
+ },
106195
+ {
106196
+ "kind": "set",
106197
+ "resource": "@entity.phase"
106198
+ },
106199
+ {
106200
+ "kind": "set",
106201
+ "resource": "@entity.selectedUnitId"
106202
+ },
106203
+ {
106204
+ "kind": "set",
106205
+ "resource": "@entity.validMoves"
106206
+ },
106207
+ {
106208
+ "kind": "ticks",
106209
+ "site": "tick"
106210
+ }
106211
+ ],
103293
106212
  "emits": [
103294
106213
  {
103295
106214
  "description": "Hero move intent applied by the hero-nav authority",
@@ -106789,6 +109708,72 @@ function stdCrewBoard2dCrewBoard2DOrbital(params = {}) {
106789
109708
  "type": "boolean"
106790
109709
  }
106791
109710
  },
109711
+ "effectRow": [
109712
+ {
109713
+ "kind": "emit",
109714
+ "resource": "MOVE"
109715
+ },
109716
+ {
109717
+ "kind": "render-ui",
109718
+ "resource": "main"
109719
+ },
109720
+ {
109721
+ "kind": "render-ui",
109722
+ "resource": "main",
109723
+ "site": "tick"
109724
+ },
109725
+ {
109726
+ "kind": "set",
109727
+ "resource": "@entity.animState"
109728
+ },
109729
+ {
109730
+ "kind": "set",
109731
+ "resource": "@entity.animState",
109732
+ "site": "tick"
109733
+ },
109734
+ {
109735
+ "kind": "set",
109736
+ "resource": "@entity.animTicksLeft"
109737
+ },
109738
+ {
109739
+ "kind": "set",
109740
+ "resource": "@entity.animTicksLeft",
109741
+ "site": "tick"
109742
+ },
109743
+ {
109744
+ "kind": "set",
109745
+ "resource": "@entity.animUnitId"
109746
+ },
109747
+ {
109748
+ "kind": "set",
109749
+ "resource": "@entity.animUnitId",
109750
+ "site": "tick"
109751
+ },
109752
+ {
109753
+ "kind": "set",
109754
+ "resource": "@entity.crewCount"
109755
+ },
109756
+ {
109757
+ "kind": "set",
109758
+ "resource": "@entity.oxygen"
109759
+ },
109760
+ {
109761
+ "kind": "set",
109762
+ "resource": "@entity.phase"
109763
+ },
109764
+ {
109765
+ "kind": "set",
109766
+ "resource": "@entity.selectedUnitId"
109767
+ },
109768
+ {
109769
+ "kind": "set",
109770
+ "resource": "@entity.validMoves"
109771
+ },
109772
+ {
109773
+ "kind": "ticks",
109774
+ "site": "tick"
109775
+ }
109776
+ ],
106792
109777
  "emits": [
106793
109778
  {
106794
109779
  "description": "Crew move intent applied by the hero-nav authority",
@@ -111712,6 +114697,38 @@ function stdDungeonBoard2dDungeonBoard2DOrbital(params = {}) {
111712
114697
  "type": "number"
111713
114698
  }
111714
114699
  },
114700
+ "effectRow": [
114701
+ {
114702
+ "kind": "emit",
114703
+ "resource": "ATTACK"
114704
+ },
114705
+ {
114706
+ "kind": "emit",
114707
+ "resource": "MONSTER_TICK",
114708
+ "site": "tick"
114709
+ },
114710
+ {
114711
+ "kind": "emit",
114712
+ "resource": "MOVE"
114713
+ },
114714
+ {
114715
+ "kind": "emit",
114716
+ "resource": "RESTART"
114717
+ },
114718
+ {
114719
+ "kind": "render-ui",
114720
+ "resource": "main"
114721
+ },
114722
+ {
114723
+ "kind": "render-ui",
114724
+ "resource": "main",
114725
+ "site": "tick"
114726
+ },
114727
+ {
114728
+ "kind": "ticks",
114729
+ "site": "tick"
114730
+ }
114731
+ ],
111715
114732
  "emits": [
111716
114733
  {
111717
114734
  "description": "Hero move intent applied by the hero-nav authority",
@@ -114373,6 +117390,16 @@ function stdEscalatingDecisionEscalatingDecisionOrbital(params = {}) {
114373
117390
  traits: [
114374
117391
  {
114375
117392
  "category": "lifecycle",
117393
+ "effectRow": [
117394
+ {
117395
+ "kind": "emit",
117396
+ "resource": "RUN_EXACT"
117397
+ },
117398
+ {
117399
+ "kind": "set",
117400
+ "resource": "@entity.status"
117401
+ }
117402
+ ],
114376
117403
  "emits": [
114377
117404
  {
114378
117405
  "description": "Starts the ladder at the exact-check rung (R0). request is the whole DECIDE payload, carried down the chain so each rung can project its own inputs.",
@@ -114689,6 +117716,36 @@ function stdEscalatingDecisionEscalatingDecisionOrbital(params = {}) {
114689
117716
  }),
114690
117717
  {
114691
117718
  "category": "lifecycle",
117719
+ "effectRow": [
117720
+ {
117721
+ "kind": "emit",
117722
+ "resource": "DECIDED"
117723
+ },
117724
+ {
117725
+ "kind": "emit",
117726
+ "resource": "DECISION_FAILED"
117727
+ },
117728
+ {
117729
+ "kind": "set",
117730
+ "resource": "@entity.confidence"
117731
+ },
117732
+ {
117733
+ "kind": "set",
117734
+ "resource": "@entity.failReason"
117735
+ },
117736
+ {
117737
+ "kind": "set",
117738
+ "resource": "@entity.reasoning"
117739
+ },
117740
+ {
117741
+ "kind": "set",
117742
+ "resource": "@entity.rung"
117743
+ },
117744
+ {
117745
+ "kind": "set",
117746
+ "resource": "@entity.status"
117747
+ }
117748
+ ],
114692
117749
  "emits": [
114693
117750
  {
114694
117751
  "description": "The ladder proved an answer. rung names which one served it: R0 exact, R1 table, R3 retrieved, R4 learned, R5 generative.",
@@ -114847,7 +117904,7 @@ function stdEscalatingDecisionEscalatingDecisionOrbital(params = {}) {
114847
117904
  {
114848
117905
  "name": "score",
114849
117906
  "required": true,
114850
- "type": "float"
117907
+ "type": "number"
114851
117908
  }
114852
117909
  ]
114853
117910
  },
@@ -114863,7 +117920,7 @@ function stdEscalatingDecisionEscalatingDecisionOrbital(params = {}) {
114863
117920
  {
114864
117921
  "name": "confidence",
114865
117922
  "required": true,
114866
- "type": "float"
117923
+ "type": "number"
114867
117924
  }
114868
117925
  ]
114869
117926
  },
@@ -114879,7 +117936,7 @@ function stdEscalatingDecisionEscalatingDecisionOrbital(params = {}) {
114879
117936
  {
114880
117937
  "name": "confidence",
114881
117938
  "required": true,
114882
- "type": "float"
117939
+ "type": "number"
114883
117940
  },
114884
117941
  {
114885
117942
  "name": "reasoning",
@@ -115498,6 +118555,24 @@ function stdKnowledgeTracingKnowledgeTracingOrbital(params = {}) {
115498
118555
  traits: [
115499
118556
  {
115500
118557
  "category": "lifecycle",
118558
+ "effectRow": [
118559
+ {
118560
+ "kind": "emit",
118561
+ "resource": "CAPTURE_LABEL"
118562
+ },
118563
+ {
118564
+ "kind": "emit",
118565
+ "resource": "OBSERVATION_MADE"
118566
+ },
118567
+ {
118568
+ "kind": "set",
118569
+ "resource": "@entity.lastOutcome"
118570
+ },
118571
+ {
118572
+ "kind": "set",
118573
+ "resource": "@entity.skillId"
118574
+ }
118575
+ ],
115501
118576
  "emits": [
115502
118577
  {
115503
118578
  "description": "Forwards the raw outcome to PosteriorTracker once skillId is recorded on the shared entity.",
@@ -118025,6 +121100,41 @@ function stdMarketBoard3dMarketBoard3DOrbital(params = {}) {
118025
121100
  "type": "number"
118026
121101
  }
118027
121102
  },
121103
+ "effectRow": [
121104
+ {
121105
+ "kind": "emit",
121106
+ "resource": "MOVE"
121107
+ },
121108
+ {
121109
+ "kind": "emit",
121110
+ "resource": "RESTART"
121111
+ },
121112
+ {
121113
+ "kind": "render-ui",
121114
+ "resource": "main"
121115
+ },
121116
+ {
121117
+ "kind": "render-ui",
121118
+ "resource": "main",
121119
+ "site": "tick"
121120
+ },
121121
+ {
121122
+ "kind": "set",
121123
+ "resource": "@entity.phase"
121124
+ },
121125
+ {
121126
+ "kind": "set",
121127
+ "resource": "@entity.selectedUnitId"
121128
+ },
121129
+ {
121130
+ "kind": "set",
121131
+ "resource": "@entity.validMoves"
121132
+ },
121133
+ {
121134
+ "kind": "ticks",
121135
+ "site": "tick"
121136
+ }
121137
+ ],
118028
121138
  "emits": [
118029
121139
  {
118030
121140
  "description": "Hero move intent applied by the hero-nav authority",
@@ -122032,6 +125142,46 @@ function stdObjectiveBoard3dObjectiveBoard3DOrbital(params = {}) {
122032
125142
  "type": "number"
122033
125143
  }
122034
125144
  },
125145
+ "effectRow": [
125146
+ {
125147
+ "kind": "emit",
125148
+ "resource": "MOVE"
125149
+ },
125150
+ {
125151
+ "kind": "emit",
125152
+ "resource": "RESTART"
125153
+ },
125154
+ {
125155
+ "kind": "emit",
125156
+ "resource": "WANDER",
125157
+ "site": "tick"
125158
+ },
125159
+ {
125160
+ "kind": "render-ui",
125161
+ "resource": "main"
125162
+ },
125163
+ {
125164
+ "kind": "render-ui",
125165
+ "resource": "main",
125166
+ "site": "tick"
125167
+ },
125168
+ {
125169
+ "kind": "set",
125170
+ "resource": "@entity.phase"
125171
+ },
125172
+ {
125173
+ "kind": "set",
125174
+ "resource": "@entity.selectedUnitId"
125175
+ },
125176
+ {
125177
+ "kind": "set",
125178
+ "resource": "@entity.validMoves"
125179
+ },
125180
+ {
125181
+ "kind": "ticks",
125182
+ "site": "tick"
125183
+ }
125184
+ ],
122035
125185
  "emits": [
122036
125186
  {
122037
125187
  "description": "Hero move intent applied by the hero-nav authority",
@@ -124926,6 +128076,66 @@ function stdPlatformerBoard2dPlatformerBoard2DOrbital(params = {}) {
124926
128076
  "type": "number"
124927
128077
  }
124928
128078
  },
128079
+ "effectRow": [
128080
+ {
128081
+ "kind": "emit",
128082
+ "resource": "BURST"
128083
+ },
128084
+ {
128085
+ "kind": "emit",
128086
+ "resource": "PLAT_JUMP"
128087
+ },
128088
+ {
128089
+ "kind": "emit",
128090
+ "resource": "PLAT_PLACE"
128091
+ },
128092
+ {
128093
+ "kind": "emit",
128094
+ "resource": "PLAT_STEER"
128095
+ },
128096
+ {
128097
+ "kind": "emit",
128098
+ "resource": "PROGRESS"
128099
+ },
128100
+ {
128101
+ "kind": "emit",
128102
+ "resource": "RESTART"
128103
+ },
128104
+ {
128105
+ "kind": "render-ui",
128106
+ "resource": "main"
128107
+ },
128108
+ {
128109
+ "kind": "render-ui",
128110
+ "resource": "main",
128111
+ "site": "tick"
128112
+ },
128113
+ {
128114
+ "kind": "set",
128115
+ "resource": "@entity.celebrated"
128116
+ },
128117
+ {
128118
+ "kind": "set",
128119
+ "resource": "@entity.frame",
128120
+ "site": "tick"
128121
+ },
128122
+ {
128123
+ "kind": "set",
128124
+ "resource": "@entity.lives"
128125
+ },
128126
+ {
128127
+ "kind": "set",
128128
+ "resource": "@entity.objectivesLeft"
128129
+ },
128130
+ {
128131
+ "kind": "set",
128132
+ "resource": "@entity.score"
128133
+ },
128134
+ {
128135
+ "kind": "ticks",
128136
+ "site": "tick"
128137
+ }
128138
+ ],
124929
128139
  "emits": [
124930
128140
  {
124931
128141
  "description": "Move-left intent from ArrowLeft/KeyA keydown or d-pad (forwarded to the body authority as STEER dir \u22121)",
@@ -127011,6 +130221,12 @@ function stdPlatformerPuzzlePlatformerPuzzleOrbital(params = {}) {
127011
130221
  }),
127012
130222
  {
127013
130223
  "category": "interaction",
130224
+ "effectRow": [
130225
+ {
130226
+ "kind": "render-ui",
130227
+ "resource": "overlay"
130228
+ }
130229
+ ],
127014
130230
  "linkedEntity": "PlatformerPuzzleData",
127015
130231
  "name": "PlatformerPuzzleNoopPreview",
127016
130232
  "scope": "instance",
@@ -127510,6 +130726,12 @@ function stdPlatformerPuzzlePlatformerPuzzleOrbital(params = {}) {
127510
130726
  "type": "trait"
127511
130727
  }
127512
130728
  },
130729
+ "effectRow": [
130730
+ {
130731
+ "kind": "render-ui",
130732
+ "resource": "main"
130733
+ }
130734
+ ],
127513
130735
  "entityContract": {
127514
130736
  "provides": [],
127515
130737
  "requires": []
@@ -127731,6 +130953,16 @@ function stdStatusLifecycleControlStatusLifecycleControlOrbital(params = {}) {
127731
130953
  "type": "[TransitionSpec]"
127732
130954
  }
127733
130955
  },
130956
+ "effectRow": [
130957
+ {
130958
+ "kind": "emit",
130959
+ "resource": "ChangeStatusRequested"
130960
+ },
130961
+ {
130962
+ "kind": "render-ui",
130963
+ "resource": "main"
130964
+ }
130965
+ ],
127734
130966
  "emits": [
127735
130967
  {
127736
130968
  "description": "Fired when the viewer picks a legal next status from the control.",
@@ -129376,6 +132608,50 @@ function stdSurvivalBoard3dSurvivalBoard3DOrbital(params = {}) {
129376
132608
  "type": "number"
129377
132609
  }
129378
132610
  },
132611
+ "effectRow": [
132612
+ {
132613
+ "kind": "emit",
132614
+ "resource": "BUILD_CAMP"
132615
+ },
132616
+ {
132617
+ "kind": "emit",
132618
+ "resource": "MOVE"
132619
+ },
132620
+ {
132621
+ "kind": "emit",
132622
+ "resource": "RESTART"
132623
+ },
132624
+ {
132625
+ "kind": "emit",
132626
+ "resource": "WANDER",
132627
+ "site": "tick"
132628
+ },
132629
+ {
132630
+ "kind": "render-ui",
132631
+ "resource": "main"
132632
+ },
132633
+ {
132634
+ "kind": "render-ui",
132635
+ "resource": "main",
132636
+ "site": "tick"
132637
+ },
132638
+ {
132639
+ "kind": "set",
132640
+ "resource": "@entity.phase"
132641
+ },
132642
+ {
132643
+ "kind": "set",
132644
+ "resource": "@entity.selectedUnitId"
132645
+ },
132646
+ {
132647
+ "kind": "set",
132648
+ "resource": "@entity.validMoves"
132649
+ },
132650
+ {
132651
+ "kind": "ticks",
132652
+ "site": "tick"
132653
+ }
132654
+ ],
129379
132655
  "emits": [
129380
132656
  {
129381
132657
  "description": "Hero move intent applied by the hero-nav authority",
@@ -132780,6 +136056,106 @@ function stdTacticsBoard2dTacticsBoard2DOrbital(params = {}) {
132780
136056
  "type": "number"
132781
136057
  }
132782
136058
  },
136059
+ "effectRow": [
136060
+ {
136061
+ "kind": "emit",
136062
+ "resource": "AI_TURN"
136063
+ },
136064
+ {
136065
+ "kind": "emit",
136066
+ "resource": "ATTACK"
136067
+ },
136068
+ {
136069
+ "kind": "emit",
136070
+ "resource": "MOVE"
136071
+ },
136072
+ {
136073
+ "kind": "render-ui",
136074
+ "resource": "main"
136075
+ },
136076
+ {
136077
+ "kind": "render-ui",
136078
+ "resource": "main",
136079
+ "site": "tick"
136080
+ },
136081
+ {
136082
+ "kind": "set",
136083
+ "resource": "@entity.actedIds"
136084
+ },
136085
+ {
136086
+ "kind": "set",
136087
+ "resource": "@entity.animAtkTicksLeft"
136088
+ },
136089
+ {
136090
+ "kind": "set",
136091
+ "resource": "@entity.animAtkTicksLeft",
136092
+ "site": "tick"
136093
+ },
136094
+ {
136095
+ "kind": "set",
136096
+ "resource": "@entity.animAttackerId"
136097
+ },
136098
+ {
136099
+ "kind": "set",
136100
+ "resource": "@entity.animAttackerId",
136101
+ "site": "tick"
136102
+ },
136103
+ {
136104
+ "kind": "set",
136105
+ "resource": "@entity.animState"
136106
+ },
136107
+ {
136108
+ "kind": "set",
136109
+ "resource": "@entity.animState",
136110
+ "site": "tick"
136111
+ },
136112
+ {
136113
+ "kind": "set",
136114
+ "resource": "@entity.animTicksLeft"
136115
+ },
136116
+ {
136117
+ "kind": "set",
136118
+ "resource": "@entity.animTicksLeft",
136119
+ "site": "tick"
136120
+ },
136121
+ {
136122
+ "kind": "set",
136123
+ "resource": "@entity.animUnitId"
136124
+ },
136125
+ {
136126
+ "kind": "set",
136127
+ "resource": "@entity.animUnitId",
136128
+ "site": "tick"
136129
+ },
136130
+ {
136131
+ "kind": "set",
136132
+ "resource": "@entity.attackTargets"
136133
+ },
136134
+ {
136135
+ "kind": "set",
136136
+ "resource": "@entity.movedIds"
136137
+ },
136138
+ {
136139
+ "kind": "set",
136140
+ "resource": "@entity.selectedUnitId"
136141
+ },
136142
+ {
136143
+ "kind": "set",
136144
+ "resource": "@entity.turn"
136145
+ },
136146
+ {
136147
+ "kind": "set",
136148
+ "resource": "@entity.uiPhase"
136149
+ },
136150
+ {
136151
+ "kind": "set",
136152
+ "resource": "@entity.validMoves"
136153
+ },
136154
+ {
136155
+ "kind": "ticks",
136156
+ "site": "tick"
136157
+ }
136158
+ ],
132783
136159
  "emits": [
132784
136160
  {
132785
136161
  "description": "Player move intent applied by the grid-tactics authority",
@@ -138249,6 +141625,53 @@ function stdTacticsBoard3dTacticsBoard3DOrbital(params = {}) {
138249
141625
  "type": "number"
138250
141626
  }
138251
141627
  },
141628
+ "effectRow": [
141629
+ {
141630
+ "kind": "emit",
141631
+ "resource": "AI_TURN"
141632
+ },
141633
+ {
141634
+ "kind": "emit",
141635
+ "resource": "ATTACK"
141636
+ },
141637
+ {
141638
+ "kind": "emit",
141639
+ "resource": "MOVE"
141640
+ },
141641
+ {
141642
+ "kind": "render-ui",
141643
+ "resource": "main"
141644
+ },
141645
+ {
141646
+ "kind": "render-ui",
141647
+ "resource": "main",
141648
+ "site": "tick"
141649
+ },
141650
+ {
141651
+ "kind": "set",
141652
+ "resource": "@entity.attackTargets"
141653
+ },
141654
+ {
141655
+ "kind": "set",
141656
+ "resource": "@entity.selectedUnitId"
141657
+ },
141658
+ {
141659
+ "kind": "set",
141660
+ "resource": "@entity.turn"
141661
+ },
141662
+ {
141663
+ "kind": "set",
141664
+ "resource": "@entity.uiPhase"
141665
+ },
141666
+ {
141667
+ "kind": "set",
141668
+ "resource": "@entity.validMoves"
141669
+ },
141670
+ {
141671
+ "kind": "ticks",
141672
+ "site": "tick"
141673
+ }
141674
+ ],
138252
141675
  "emits": [
138253
141676
  {
138254
141677
  "description": "Player move intent applied by the grid-tactics authority",
@@ -142666,6 +146089,53 @@ function stdWorldmapBoard2dWorldMapBoard2DOrbital(params = {}) {
142666
146089
  "type": "Asset"
142667
146090
  }
142668
146091
  },
146092
+ "effectRow": [
146093
+ {
146094
+ "kind": "emit",
146095
+ "resource": "ATTACK"
146096
+ },
146097
+ {
146098
+ "kind": "emit",
146099
+ "resource": "MINE_HIT"
146100
+ },
146101
+ {
146102
+ "kind": "emit",
146103
+ "resource": "MOVE"
146104
+ },
146105
+ {
146106
+ "kind": "render-ui",
146107
+ "resource": "main"
146108
+ },
146109
+ {
146110
+ "kind": "render-ui",
146111
+ "resource": "main",
146112
+ "site": "tick"
146113
+ },
146114
+ {
146115
+ "kind": "set",
146116
+ "resource": "@entity.effects"
146117
+ },
146118
+ {
146119
+ "kind": "set",
146120
+ "resource": "@entity.selectedHeroId"
146121
+ },
146122
+ {
146123
+ "kind": "set",
146124
+ "resource": "@entity.turn"
146125
+ },
146126
+ {
146127
+ "kind": "set",
146128
+ "resource": "@entity.validMoves"
146129
+ },
146130
+ {
146131
+ "kind": "set",
146132
+ "resource": "@entity.waypoints"
146133
+ },
146134
+ {
146135
+ "kind": "ticks",
146136
+ "site": "tick"
146137
+ }
146138
+ ],
142669
146139
  "emits": [
142670
146140
  {
142671
146141
  "description": "Emits UI:{unitClickEvent} with { unitId } on hero selection or attack-target click",
@@ -144785,6 +148255,16 @@ function stdUiBookChapterViewBookChapterViewOrbital(params = {}) {
144785
148255
  "type": "boolean"
144786
148256
  }
144787
148257
  },
148258
+ "effectRow": [
148259
+ {
148260
+ "kind": "fetch",
148261
+ "resource": "BookChapterViewItem"
148262
+ },
148263
+ {
148264
+ "kind": "render-ui",
148265
+ "resource": "main"
148266
+ }
148267
+ ],
144788
148268
  "emits": [
144789
148269
  {
144790
148270
  "description": "BookChapterView rows finished loading; payload.data holds the collection.",
@@ -145048,6 +148528,12 @@ function stdUiBookCoverPageBookCoverPageOrbital(params = {}) {
145048
148528
  "type": "string"
145049
148529
  }
145050
148530
  },
148531
+ "effectRow": [
148532
+ {
148533
+ "kind": "render-ui",
148534
+ "resource": "main"
148535
+ }
148536
+ ],
145051
148537
  "entityContract": {
145052
148538
  "provides": [],
145053
148539
  "requires": []
@@ -145232,6 +148718,12 @@ function stdUiBookNavBarBookNavBarOrbital(params = {}) {
145232
148718
  "type": "number"
145233
148719
  }
145234
148720
  },
148721
+ "effectRow": [
148722
+ {
148723
+ "kind": "render-ui",
148724
+ "resource": "main"
148725
+ }
148726
+ ],
145235
148727
  "entityContract": {
145236
148728
  "provides": [],
145237
148729
  "requires": []
@@ -145408,6 +148900,16 @@ function stdUiBookTableOfContentsBookTableOfContentsOrbital(params = {}) {
145408
148900
  "type": "boolean"
145409
148901
  }
145410
148902
  },
148903
+ "effectRow": [
148904
+ {
148905
+ "kind": "fetch",
148906
+ "resource": "BookTableOfContentsItem"
148907
+ },
148908
+ {
148909
+ "kind": "render-ui",
148910
+ "resource": "main"
148911
+ }
148912
+ ],
145411
148913
  "emits": [
145412
148914
  {
145413
148915
  "description": "BookTableOfContents rows finished loading; payload.data holds the collection.",
@@ -145815,6 +149317,16 @@ function stdUiBookViewerBookViewerOrbital(params = {}) {
145815
149317
  "type": "number"
145816
149318
  }
145817
149319
  },
149320
+ "effectRow": [
149321
+ {
149322
+ "kind": "fetch",
149323
+ "resource": "BookViewerItem"
149324
+ },
149325
+ {
149326
+ "kind": "render-ui",
149327
+ "resource": "main"
149328
+ }
149329
+ ],
145818
149330
  "emits": [
145819
149331
  {
145820
149332
  "description": "BookViewer rows finished loading; payload.data holds the collection.",
@@ -146220,6 +149732,16 @@ function stdUiCaseStudyOrganismCaseStudyOrganismOrbital(params = {}) {
146220
149732
  "type": "number"
146221
149733
  }
146222
149734
  },
149735
+ "effectRow": [
149736
+ {
149737
+ "kind": "fetch",
149738
+ "resource": "CaseStudyOrganismItem"
149739
+ },
149740
+ {
149741
+ "kind": "render-ui",
149742
+ "resource": "main"
149743
+ }
149744
+ ],
146223
149745
  "emits": [
146224
149746
  {
146225
149747
  "description": "CaseStudyOrganism rows finished loading; payload.data holds the collection.",
@@ -146613,6 +150135,12 @@ function stdUiChatBarChatBarOrbital(params = {}) {
146613
150135
  "type": "number"
146614
150136
  }
146615
150137
  },
150138
+ "effectRow": [
150139
+ {
150140
+ "kind": "render-ui",
150141
+ "resource": "main"
150142
+ }
150143
+ ],
146616
150144
  "entityContract": {
146617
150145
  "provides": [],
146618
150146
  "requires": []
@@ -146804,6 +150332,12 @@ function stdUiCodeRunnerPanelCodeRunnerPanelOrbital(params = {}) {
146804
150332
  "type": "boolean"
146805
150333
  }
146806
150334
  },
150335
+ "effectRow": [
150336
+ {
150337
+ "kind": "render-ui",
150338
+ "resource": "main"
150339
+ }
150340
+ ],
146807
150341
  "entityContract": {
146808
150342
  "provides": [],
146809
150343
  "requires": []
@@ -147116,6 +150650,12 @@ function stdUiDashboardGridDashboardGridOrbital(params = {}) {
147116
150650
  "type": "number"
147117
150651
  }
147118
150652
  },
150653
+ "effectRow": [
150654
+ {
150655
+ "kind": "render-ui",
150656
+ "resource": "main"
150657
+ }
150658
+ ],
147119
150659
  "entityContract": {
147120
150660
  "provides": [],
147121
150661
  "requires": []
@@ -147751,6 +151291,16 @@ function stdUiDetailPanelDetailPanelOrbital(params = {}) {
147751
151291
  "type": "string"
147752
151292
  }
147753
151293
  },
151294
+ "effectRow": [
151295
+ {
151296
+ "kind": "fetch",
151297
+ "resource": "DetailPanelItem"
151298
+ },
151299
+ {
151300
+ "kind": "render-ui",
151301
+ "resource": "main"
151302
+ }
151303
+ ],
147754
151304
  "emits": [
147755
151305
  {
147756
151306
  "description": "DetailPanel rows finished loading; payload.data holds the collection.",
@@ -148235,6 +151785,12 @@ function stdUiDockLayoutDockLayoutOrbital(params = {}) {
148235
151785
  "type": "string"
148236
151786
  }
148237
151787
  },
151788
+ "effectRow": [
151789
+ {
151790
+ "kind": "render-ui",
151791
+ "resource": "main"
151792
+ }
151793
+ ],
148238
151794
  "emits": [
148239
151795
  {
148240
151796
  "definerKnob": "onSidebarCollapsedChange",
@@ -148613,6 +152169,16 @@ function stdUiDrawerSlotDrawerSlotOrbital(params = {}) {
148613
152169
  "type": "string"
148614
152170
  }
148615
152171
  },
152172
+ "effectRow": [
152173
+ {
152174
+ "kind": "fetch",
152175
+ "resource": "DrawerSlotItem"
152176
+ },
152177
+ {
152178
+ "kind": "render-ui",
152179
+ "resource": "main"
152180
+ }
152181
+ ],
148616
152182
  "entityContract": {
148617
152183
  "provides": [],
148618
152184
  "requires": []
@@ -149079,6 +152645,16 @@ function stdUiEntityCardsEntityCardsOrbital(params = {}) {
149079
152645
  "type": "string"
149080
152646
  }
149081
152647
  },
152648
+ "effectRow": [
152649
+ {
152650
+ "kind": "fetch",
152651
+ "resource": "EntityCardsItem"
152652
+ },
152653
+ {
152654
+ "kind": "render-ui",
152655
+ "resource": "main"
152656
+ }
152657
+ ],
149082
152658
  "emits": [
149083
152659
  {
149084
152660
  "description": "User opened a record from the list.",
@@ -149658,6 +153234,16 @@ function stdUiEntityListEntityListOrbital(params = {}) {
149658
153234
  ]
149659
153235
  }
149660
153236
  },
153237
+ "effectRow": [
153238
+ {
153239
+ "kind": "fetch",
153240
+ "resource": "EntityListItem"
153241
+ },
153242
+ {
153243
+ "kind": "render-ui",
153244
+ "resource": "main"
153245
+ }
153246
+ ],
149661
153247
  "emits": [
149662
153248
  {
149663
153249
  "description": "Item actions - schema-driven or function-based",
@@ -150394,6 +153980,16 @@ function stdUiEntityTableEntityTableOrbital(params = {}) {
150394
153980
  "type": "number"
150395
153981
  }
150396
153982
  },
153983
+ "effectRow": [
153984
+ {
153985
+ "kind": "fetch",
153986
+ "resource": "EntityTableItem"
153987
+ },
153988
+ {
153989
+ "kind": "render-ui",
153990
+ "resource": "main"
153991
+ }
153992
+ ],
150397
153993
  "emits": [
150398
153994
  {
150399
153995
  "description": "User opened a record from the list.",
@@ -150876,6 +154472,16 @@ function stdUiFeatureGridOrganismFeatureGridOrganismOrbital(params = {}) {
150876
154472
  "type": "number"
150877
154473
  }
150878
154474
  },
154475
+ "effectRow": [
154476
+ {
154477
+ "kind": "fetch",
154478
+ "resource": "FeatureGridOrganismItem"
154479
+ },
154480
+ {
154481
+ "kind": "render-ui",
154482
+ "resource": "main"
154483
+ }
154484
+ ],
150879
154485
  "emits": [
150880
154486
  {
150881
154487
  "description": "FeatureGridOrganism rows finished loading; payload.data holds the collection.",
@@ -152246,6 +155852,16 @@ function stdUiFormFormOrbital(params = {}) {
152246
155852
  "type": "[FormViolationTriggersItem]"
152247
155853
  }
152248
155854
  },
155855
+ "effectRow": [
155856
+ {
155857
+ "kind": "fetch",
155858
+ "resource": "FormItem"
155859
+ },
155860
+ {
155861
+ "kind": "render-ui",
155862
+ "resource": "main"
155863
+ }
155864
+ ],
152249
155865
  "emits": [
152250
155866
  {
152251
155867
  "definerKnob": "submitEvent",
@@ -153848,6 +157464,16 @@ function stdUiFormSectionFormSectionOrbital(params = {}) {
153848
157464
  "type": "[FormSectionViolationTriggersItem]"
153849
157465
  }
153850
157466
  },
157467
+ "effectRow": [
157468
+ {
157469
+ "kind": "fetch",
157470
+ "resource": "FormSectionItem"
157471
+ },
157472
+ {
157473
+ "kind": "render-ui",
157474
+ "resource": "main"
157475
+ }
157476
+ ],
153851
157477
  "emits": [
153852
157478
  {
153853
157479
  "definerKnob": "submitEvent",
@@ -154557,6 +158183,16 @@ function stdUiHeroOrganismHeroOrganismOrbital(params = {}) {
154557
158183
  "type": "number"
154558
158184
  }
154559
158185
  },
158186
+ "effectRow": [
158187
+ {
158188
+ "kind": "fetch",
158189
+ "resource": "HeroOrganismItem"
158190
+ },
158191
+ {
158192
+ "kind": "render-ui",
158193
+ "resource": "main"
158194
+ }
158195
+ ],
154560
158196
  "emits": [
154561
158197
  {
154562
158198
  "description": "HeroOrganism rows finished loading; payload.data holds the collection.",
@@ -154945,6 +158581,16 @@ function stdUiMasterDetailMasterDetailOrbital(params = {}) {
154945
158581
  "type": "number"
154946
158582
  }
154947
158583
  },
158584
+ "effectRow": [
158585
+ {
158586
+ "kind": "fetch",
158587
+ "resource": "MasterDetailItem"
158588
+ },
158589
+ {
158590
+ "kind": "render-ui",
158591
+ "resource": "main"
158592
+ }
158593
+ ],
154948
158594
  "emits": [
154949
158595
  {
154950
158596
  "description": "MasterDetail rows finished loading; payload.data holds the collection.",
@@ -155251,6 +158897,12 @@ function stdUiMasterDetailLayoutMasterDetailLayoutOrbital(params = {}) {
155251
158897
  "type": "string"
155252
158898
  }
155253
158899
  },
158900
+ "effectRow": [
158901
+ {
158902
+ "kind": "render-ui",
158903
+ "resource": "main"
158904
+ }
158905
+ ],
155254
158906
  "entityContract": {
155255
158907
  "provides": [],
155256
158908
  "requires": []
@@ -155654,6 +159306,16 @@ function stdUiMediaGalleryMediaGalleryOrbital(params = {}) {
155654
159306
  "type": "number"
155655
159307
  }
155656
159308
  },
159309
+ "effectRow": [
159310
+ {
159311
+ "kind": "fetch",
159312
+ "resource": "MediaGalleryItem"
159313
+ },
159314
+ {
159315
+ "kind": "render-ui",
159316
+ "resource": "main"
159317
+ }
159318
+ ],
155657
159319
  "emits": [
155658
159320
  {
155659
159321
  "definerKnob": "selectionEvent",
@@ -156027,6 +159689,16 @@ function stdUiModalSlotModalSlotOrbital(params = {}) {
156027
159689
  "type": "string"
156028
159690
  }
156029
159691
  },
159692
+ "effectRow": [
159693
+ {
159694
+ "kind": "fetch",
159695
+ "resource": "ModalSlotItem"
159696
+ },
159697
+ {
159698
+ "kind": "render-ui",
159699
+ "resource": "main"
159700
+ }
159701
+ ],
156030
159702
  "entityContract": {
156031
159703
  "provides": [],
156032
159704
  "requires": []
@@ -156349,6 +160021,16 @@ function stdUiPricingOrganismPricingOrganismOrbital(params = {}) {
156349
160021
  "type": "number"
156350
160022
  }
156351
160023
  },
160024
+ "effectRow": [
160025
+ {
160026
+ "kind": "fetch",
160027
+ "resource": "PricingOrganismItem"
160028
+ },
160029
+ {
160030
+ "kind": "render-ui",
160031
+ "resource": "main"
160032
+ }
160033
+ ],
156352
160034
  "emits": [
156353
160035
  {
156354
160036
  "description": "PricingOrganism rows finished loading; payload.data holds the collection.",
@@ -156646,6 +160328,12 @@ function stdUiRuntimeDebuggerRuntimeDebuggerOrbital(params = {}) {
156646
160328
  ]
156647
160329
  }
156648
160330
  },
160331
+ "effectRow": [
160332
+ {
160333
+ "kind": "render-ui",
160334
+ "resource": "main"
160335
+ }
160336
+ ],
156649
160337
  "entityContract": {
156650
160338
  "provides": [],
156651
160339
  "requires": []
@@ -156867,6 +160555,12 @@ function stdUiSegmentRendererSegmentRendererOrbital(params = {}) {
156867
160555
  "type": "SegmentRendererUserProgress"
156868
160556
  }
156869
160557
  },
160558
+ "effectRow": [
160559
+ {
160560
+ "kind": "render-ui",
160561
+ "resource": "main"
160562
+ }
160563
+ ],
156870
160564
  "entityContract": {
156871
160565
  "provides": [],
156872
160566
  "requires": []
@@ -157186,6 +160880,16 @@ function stdUiShowcaseOrganismShowcaseOrganismOrbital(params = {}) {
157186
160880
  "type": "number"
157187
160881
  }
157188
160882
  },
160883
+ "effectRow": [
160884
+ {
160885
+ "kind": "fetch",
160886
+ "resource": "ShowcaseOrganismItem"
160887
+ },
160888
+ {
160889
+ "kind": "render-ui",
160890
+ "resource": "main"
160891
+ }
160892
+ ],
157189
160893
  "emits": [
157190
160894
  {
157191
160895
  "description": "ShowcaseOrganism rows finished loading; payload.data holds the collection.",
@@ -157516,6 +161220,16 @@ function stdUiSplitPaneSplitPaneOrbital(params = {}) {
157516
161220
  "type": "string"
157517
161221
  }
157518
161222
  },
161223
+ "effectRow": [
161224
+ {
161225
+ "kind": "render-ui",
161226
+ "resource": "main"
161227
+ },
161228
+ {
161229
+ "kind": "set",
161230
+ "resource": "@entity.ratio"
161231
+ }
161232
+ ],
157519
161233
  "emits": [
157520
161234
  {
157521
161235
  "definerKnob": "onRatioChange",
@@ -158010,6 +161724,16 @@ function stdUiStatCardStatCardOrbital(params = {}) {
158010
161724
  "type": "[string]"
158011
161725
  }
158012
161726
  },
161727
+ "effectRow": [
161728
+ {
161729
+ "kind": "fetch",
161730
+ "resource": "StatCardItem"
161731
+ },
161732
+ {
161733
+ "kind": "render-ui",
161734
+ "resource": "main"
161735
+ }
161736
+ ],
158013
161737
  "emits": [
158014
161738
  {
158015
161739
  "description": "StatCard rows finished loading; payload.data holds the collection.",
@@ -158345,6 +162069,12 @@ function stdUiStateMachineViewStateMachineViewOrbital(params = {}) {
158345
162069
  "type": "boolean"
158346
162070
  }
158347
162071
  },
162072
+ "effectRow": [
162073
+ {
162074
+ "kind": "render-ui",
162075
+ "resource": "main"
162076
+ }
162077
+ ],
158348
162078
  "entityContract": {
158349
162079
  "provides": [],
158350
162080
  "requires": []
@@ -158616,6 +162346,16 @@ function stdUiStatsOrganismStatsOrganismOrbital(params = {}) {
158616
162346
  "type": "number"
158617
162347
  }
158618
162348
  },
162349
+ "effectRow": [
162350
+ {
162351
+ "kind": "fetch",
162352
+ "resource": "StatsOrganismItem"
162353
+ },
162354
+ {
162355
+ "kind": "render-ui",
162356
+ "resource": "main"
162357
+ }
162358
+ ],
158619
162359
  "emits": [
158620
162360
  {
158621
162361
  "description": "StatsOrganism rows finished loading; payload.data holds the collection.",
@@ -159026,6 +162766,16 @@ function stdUiStepFlowOrganismStepFlowOrganismOrbital(params = {}) {
159026
162766
  "type": "number"
159027
162767
  }
159028
162768
  },
162769
+ "effectRow": [
162770
+ {
162771
+ "kind": "fetch",
162772
+ "resource": "StepFlowOrganismItem"
162773
+ },
162774
+ {
162775
+ "kind": "render-ui",
162776
+ "resource": "main"
162777
+ }
162778
+ ],
159029
162779
  "emits": [
159030
162780
  {
159031
162781
  "description": "StepFlowOrganism rows finished loading; payload.data holds the collection.",
@@ -159464,6 +163214,16 @@ function stdUiSubagentTracePanelSubagentTracePanelOrbital(params = {}) {
159464
163214
  "type": "number"
159465
163215
  }
159466
163216
  },
163217
+ "effectRow": [
163218
+ {
163219
+ "kind": "render-ui",
163220
+ "resource": "main"
163221
+ },
163222
+ {
163223
+ "kind": "render-ui",
163224
+ "resource": "overlay"
163225
+ }
163226
+ ],
159467
163227
  "emits": [
159468
163228
  {
159469
163229
  "definerKnob": "onClose",
@@ -159802,6 +163562,12 @@ function stdUiTabbedContainerTabbedContainerOrbital(params = {}) {
159802
163562
  "type": "[TabbedContainerTabsItem]"
159803
163563
  }
159804
163564
  },
163565
+ "effectRow": [
163566
+ {
163567
+ "kind": "render-ui",
163568
+ "resource": "main"
163569
+ }
163570
+ ],
159805
163571
  "emits": [
159806
163572
  {
159807
163573
  "definerKnob": "onTabChange",
@@ -160123,6 +163889,16 @@ function stdUiTeamOrganismTeamOrganismOrbital(params = {}) {
160123
163889
  "type": "number"
160124
163890
  }
160125
163891
  },
163892
+ "effectRow": [
163893
+ {
163894
+ "kind": "fetch",
163895
+ "resource": "TeamOrganismItem"
163896
+ },
163897
+ {
163898
+ "kind": "render-ui",
163899
+ "resource": "main"
163900
+ }
163901
+ ],
160126
163902
  "emits": [
160127
163903
  {
160128
163904
  "description": "TeamOrganism rows finished loading; payload.data holds the collection.",
@@ -160549,6 +164325,16 @@ function stdUiTimelineTimelineOrbital(params = {}) {
160549
164325
  "type": "string"
160550
164326
  }
160551
164327
  },
164328
+ "effectRow": [
164329
+ {
164330
+ "kind": "fetch",
164331
+ "resource": "TimelineItem"
164332
+ },
164333
+ {
164334
+ "kind": "render-ui",
164335
+ "resource": "main"
164336
+ }
164337
+ ],
160552
164338
  "emits": [
160553
164339
  {
160554
164340
  "description": "User opened a record from the list.",
@@ -160901,6 +164687,16 @@ function stdUiToastSlotToastSlotOrbital(params = {}) {
160901
164687
  ]
160902
164688
  }
160903
164689
  },
164690
+ "effectRow": [
164691
+ {
164692
+ "kind": "fetch",
164693
+ "resource": "ToastSlotItem"
164694
+ },
164695
+ {
164696
+ "kind": "render-ui",
164697
+ "resource": "main"
164698
+ }
164699
+ ],
160904
164700
  "entityContract": {
160905
164701
  "provides": [],
160906
164702
  "requires": []