@almadar/std 6.5.2 → 7.2.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 (307) hide show
  1. package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
  2. package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
  3. package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
  4. package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
  5. package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
  6. package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
  7. package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
  8. package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
  9. package/behaviors/registry/atoms/std-agent-search.orb +217 -61
  10. package/behaviors/registry/atoms/std-agent-session.orb +406 -159
  11. package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
  12. package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
  13. package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
  14. package/behaviors/registry/atoms/std-async.orb +147 -86
  15. package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
  16. package/behaviors/registry/atoms/std-browse.orb +260 -126
  17. package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
  18. package/behaviors/registry/atoms/std-calendar.orb +280 -215
  19. package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
  20. package/behaviors/registry/atoms/std-collision.orb +136 -135
  21. package/behaviors/registry/atoms/std-combat-log.orb +108 -90
  22. package/behaviors/registry/atoms/std-combat.orb +171 -98
  23. package/behaviors/registry/atoms/std-confirmation.orb +28 -300
  24. package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
  25. package/behaviors/registry/atoms/std-display.orb +491 -587
  26. package/behaviors/registry/atoms/std-drawer.orb +194 -121
  27. package/behaviors/registry/atoms/std-filter.orb +311 -326
  28. package/behaviors/registry/atoms/std-flip-card.orb +223 -177
  29. package/behaviors/registry/atoms/std-gallery.orb +130 -151
  30. package/behaviors/registry/atoms/std-game-audio.orb +133 -72
  31. package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
  32. package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
  33. package/behaviors/registry/atoms/std-game-hud.orb +87 -20
  34. package/behaviors/registry/atoms/std-game-menu.orb +32 -32
  35. package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
  36. package/behaviors/registry/atoms/std-gameflow.orb +147 -80
  37. package/behaviors/registry/atoms/std-input.orb +128 -393
  38. package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
  39. package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
  40. package/behaviors/registry/atoms/std-loading.orb +127 -126
  41. package/behaviors/registry/atoms/std-modal.orb +30 -267
  42. package/behaviors/registry/atoms/std-movement.orb +391 -292
  43. package/behaviors/registry/atoms/std-notification.orb +133 -75
  44. package/behaviors/registry/atoms/std-overworld.orb +194 -121
  45. package/behaviors/registry/atoms/std-pagination.orb +120 -53
  46. package/behaviors/registry/atoms/std-physics2d.orb +94 -93
  47. package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
  48. package/behaviors/registry/atoms/std-push.orb +172 -36
  49. package/behaviors/registry/atoms/std-quest.orb +552 -449
  50. package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
  51. package/behaviors/registry/atoms/std-rating.orb +123 -65
  52. package/behaviors/registry/atoms/std-related.orb +202 -26
  53. package/behaviors/registry/atoms/std-score-board.orb +109 -28
  54. package/behaviors/registry/atoms/std-score.orb +210 -146
  55. package/behaviors/registry/atoms/std-search.orb +265 -138
  56. package/behaviors/registry/atoms/std-selection.orb +311 -220
  57. package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
  58. package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
  59. package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
  60. package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
  61. package/behaviors/registry/atoms/std-service-email.orb +195 -107
  62. package/behaviors/registry/atoms/std-service-github.orb +216 -122
  63. package/behaviors/registry/atoms/std-service-llm.orb +204 -122
  64. package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
  65. package/behaviors/registry/atoms/std-service-redis.orb +177 -92
  66. package/behaviors/registry/atoms/std-service-storage.orb +211 -122
  67. package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
  68. package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
  69. package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
  70. package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
  71. package/behaviors/registry/atoms/std-sort.orb +284 -207
  72. package/behaviors/registry/atoms/std-sprite.orb +150 -74
  73. package/behaviors/registry/atoms/std-tabs.orb +129 -62
  74. package/behaviors/registry/atoms/std-text-effects.orb +251 -190
  75. package/behaviors/registry/atoms/std-theme.orb +193 -135
  76. package/behaviors/registry/atoms/std-timer.orb +320 -344
  77. package/behaviors/registry/atoms/std-undo.orb +278 -199
  78. package/behaviors/registry/atoms/std-upload.orb +112 -111
  79. package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
  80. package/behaviors/registry/atoms/std-wizard.orb +445 -336
  81. package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
  82. package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
  83. package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
  84. package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
  85. package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
  86. package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
  87. package/behaviors/registry/molecules/std-builder-game.orb +86 -28
  88. package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
  89. package/behaviors/registry/molecules/std-cart.orb +347 -406
  90. package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
  91. package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
  92. package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
  93. package/behaviors/registry/molecules/std-detail.orb +133 -138
  94. package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
  95. package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
  96. package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
  97. package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
  98. package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
  99. package/behaviors/registry/molecules/std-geospatial.orb +175 -122
  100. package/behaviors/registry/molecules/std-inventory.orb +216 -170
  101. package/behaviors/registry/molecules/std-list.orb +280 -205
  102. package/behaviors/registry/molecules/std-messaging.orb +146 -99
  103. package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
  104. package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
  105. package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
  106. package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
  107. package/behaviors/registry/molecules/std-quiz.orb +322 -263
  108. package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
  109. package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
  110. package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
  111. package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
  112. package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
  113. package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
  114. package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
  115. package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
  116. package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
  117. package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
  118. package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
  119. package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
  120. package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
  121. package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
  122. package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
  123. package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
  124. package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
  125. package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
  126. package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
  127. package/behaviors/registry/organisms/std-cms.orb +1549 -566
  128. package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
  129. package/behaviors/registry/organisms/std-crm.orb +1997 -1014
  130. package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
  131. package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
  132. package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
  133. package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
  134. package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
  135. package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
  136. package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
  137. package/behaviors/registry/organisms/std-lms.orb +1629 -1046
  138. package/behaviors/registry/organisms/std-logic-training.orb +321 -134
  139. package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
  140. package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
  141. package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
  142. package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
  143. package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
  144. package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
  145. package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
  146. package/behaviors/registry/organisms/std-social-feed.orb +612 -252
  147. package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
  148. package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
  149. package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
  150. package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
  151. package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
  152. package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
  153. package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
  154. package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
  155. package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
  156. package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
  157. package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
  158. package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
  159. package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
  160. package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
  161. package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
  162. package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
  163. package/dist/behaviors/registry/atoms/std-async.orb +147 -86
  164. package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
  165. package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
  166. package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
  167. package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
  168. package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
  169. package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
  170. package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
  171. package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
  172. package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
  173. package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
  174. package/dist/behaviors/registry/atoms/std-display.orb +491 -587
  175. package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
  176. package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
  177. package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
  178. package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
  179. package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
  180. package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
  181. package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
  182. package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
  183. package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
  184. package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
  185. package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
  186. package/dist/behaviors/registry/atoms/std-input.orb +128 -393
  187. package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
  188. package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
  189. package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
  190. package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
  191. package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
  192. package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
  193. package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
  194. package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
  195. package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
  196. package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
  197. package/dist/behaviors/registry/atoms/std-push.orb +172 -36
  198. package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
  199. package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
  200. package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
  201. package/dist/behaviors/registry/atoms/std-related.orb +202 -26
  202. package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
  203. package/dist/behaviors/registry/atoms/std-score.orb +210 -146
  204. package/dist/behaviors/registry/atoms/std-search.orb +265 -138
  205. package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
  206. package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
  207. package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
  208. package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
  209. package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
  210. package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
  211. package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
  212. package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
  213. package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
  214. package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
  215. package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
  216. package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
  217. package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
  218. package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
  219. package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
  220. package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
  221. package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
  222. package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
  223. package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
  224. package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
  225. package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
  226. package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
  227. package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
  228. package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
  229. package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
  230. package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
  231. package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
  232. package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
  233. package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
  234. package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
  235. package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
  236. package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
  237. package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
  238. package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
  239. package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
  240. package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
  241. package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
  242. package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
  243. package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
  244. package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
  245. package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
  246. package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
  247. package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
  248. package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
  249. package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
  250. package/dist/behaviors/registry/molecules/std-list.orb +280 -205
  251. package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
  252. package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
  253. package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
  254. package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
  255. package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
  256. package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
  257. package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
  258. package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
  259. package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
  260. package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
  261. package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
  262. package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
  263. package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
  264. package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
  265. package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
  266. package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
  267. package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
  268. package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
  269. package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
  270. package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
  271. package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
  272. package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
  273. package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
  274. package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
  275. package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
  276. package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
  277. package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
  278. package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
  279. package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
  280. package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
  281. package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
  282. package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
  283. package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
  284. package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
  285. package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
  286. package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
  287. package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
  288. package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
  289. package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
  290. package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
  291. package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
  292. package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
  293. package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
  294. package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
  295. package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
  296. package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
  297. package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
  298. package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
  299. package/dist/index.js +16 -4
  300. package/dist/index.js.map +1 -1
  301. package/dist/modules/core.js +16 -4
  302. package/dist/modules/core.js.map +1 -1
  303. package/dist/modules/index.js +16 -4
  304. package/dist/modules/index.js.map +1 -1
  305. package/dist/registry.js +16 -4
  306. package/dist/registry.js.map +1 -1
  307. package/package.json +2 -2
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "std-service-stripe",
3
3
  "version": "1.0.0",
4
- "description": "Stripe payment integration behavior: idle, creating, confirming, succeeded, error. Wraps the `stripe` service integration with a multi-step payment flow. Pure function: params in, OrbitalDefinition out.",
4
+ "description": "std-service-stripe as a Function",
5
5
  "orbitals": [
6
6
  {
7
7
  "name": "ServiceStripeOrbital",
@@ -17,7 +17,7 @@
17
17
  {
18
18
  "name": "amount",
19
19
  "type": "number",
20
- "default": 0
20
+ "default": 0.0
21
21
  },
22
22
  {
23
23
  "name": "currency",
@@ -71,8 +71,73 @@
71
71
  "traits": [
72
72
  {
73
73
  "name": "ServiceStripeStripe",
74
- "linkedEntity": "ServiceStripe",
75
74
  "category": "interaction",
75
+ "linkedEntity": "ServiceStripe",
76
+ "emits": [
77
+ {
78
+ "event": "ServiceStripeLoaded",
79
+ "description": "Fired when ServiceStripe finishes loading",
80
+ "scope": "internal",
81
+ "payload": [
82
+ {
83
+ "name": "id",
84
+ "type": "string",
85
+ "required": true
86
+ },
87
+ {
88
+ "name": "amount",
89
+ "type": "number"
90
+ },
91
+ {
92
+ "name": "currency",
93
+ "type": "string"
94
+ },
95
+ {
96
+ "name": "paymentIntentId",
97
+ "type": "string"
98
+ },
99
+ {
100
+ "name": "clientSecret",
101
+ "type": "string"
102
+ },
103
+ {
104
+ "name": "paymentStatus",
105
+ "type": "string"
106
+ },
107
+ {
108
+ "name": "error",
109
+ "type": "string"
110
+ },
111
+ {
112
+ "name": "name",
113
+ "type": "string"
114
+ },
115
+ {
116
+ "name": "description",
117
+ "type": "string"
118
+ },
119
+ {
120
+ "name": "status",
121
+ "type": "string"
122
+ },
123
+ {
124
+ "name": "createdAt",
125
+ "type": "string"
126
+ }
127
+ ]
128
+ },
129
+ {
130
+ "event": "ServiceStripeLoadFailed",
131
+ "description": "Fired when ServiceStripe fails to load",
132
+ "scope": "internal",
133
+ "payload": [
134
+ {
135
+ "name": "message",
136
+ "type": "string"
137
+ }
138
+ ]
139
+ }
140
+ ],
76
141
  "stateMachine": {
77
142
  "states": [
78
143
  {
@@ -117,14 +182,6 @@
117
182
  }
118
183
  ]
119
184
  },
120
- {
121
- "key": "CONFIRM_PAYMENT",
122
- "name": "Confirm Payment"
123
- },
124
- {
125
- "key": "PAYMENT_CONFIRMED",
126
- "name": "Payment Confirmed"
127
- },
128
185
  {
129
186
  "key": "FAILED",
130
187
  "name": "Failed",
@@ -137,12 +194,30 @@
137
194
  ]
138
195
  },
139
196
  {
140
- "key": "RETRY",
141
- "name": "Retry"
197
+ "key": "PAYMENT_CONFIRMED",
198
+ "name": "Payment Confirmed"
142
199
  },
143
200
  {
144
201
  "key": "RESET",
145
202
  "name": "Reset"
203
+ },
204
+ {
205
+ "key": "RETRY",
206
+ "name": "Retry"
207
+ },
208
+ {
209
+ "key": "ServiceStripeLoaded",
210
+ "name": "ServiceStripe loaded"
211
+ },
212
+ {
213
+ "key": "ServiceStripeLoadFailed",
214
+ "name": "ServiceStripe load failed",
215
+ "payload": [
216
+ {
217
+ "name": "message",
218
+ "type": "string"
219
+ }
220
+ ]
146
221
  }
147
222
  ],
148
223
  "transitions": [
@@ -153,79 +228,85 @@
153
228
  "effects": [
154
229
  [
155
230
  "fetch",
156
- "ServiceStripe"
231
+ "ServiceStripe",
232
+ {
233
+ "emit": {
234
+ "failure": "ServiceStripeLoadFailed",
235
+ "success": "ServiceStripeLoaded"
236
+ }
237
+ }
157
238
  ],
158
239
  [
159
240
  "render-ui",
160
241
  "main",
161
242
  {
162
- "type": "stack",
163
- "direction": "vertical",
164
- "gap": "lg",
165
243
  "align": "center",
244
+ "direction": "vertical",
245
+ "type": "stack",
166
246
  "children": [
167
247
  {
168
- "type": "stack",
169
- "direction": "horizontal",
170
- "gap": "md",
171
- "align": "center",
172
248
  "children": [
173
249
  {
174
- "type": "icon",
175
250
  "name": "credit-card",
251
+ "type": "icon",
176
252
  "size": "lg"
177
253
  },
178
254
  {
179
255
  "type": "typography",
180
- "content": "Payment",
181
- "variant": "h2"
256
+ "variant": "h2",
257
+ "content": "Payment"
182
258
  }
183
- ]
259
+ ],
260
+ "type": "stack",
261
+ "gap": "md",
262
+ "align": "center",
263
+ "direction": "horizontal"
184
264
  },
185
265
  {
186
266
  "type": "divider"
187
267
  },
188
268
  {
189
- "type": "stack",
190
- "direction": "vertical",
191
269
  "gap": "md",
270
+ "direction": "vertical",
271
+ "type": "stack",
192
272
  "children": [
193
273
  {
194
- "type": "input",
195
- "label": "Amount",
274
+ "placeholder": "0.00",
196
275
  "field": "amount",
197
276
  "inputType": "number",
198
- "placeholder": "0.00"
277
+ "type": "input",
278
+ "label": "Amount"
199
279
  },
200
280
  {
201
281
  "type": "select",
202
- "label": "Currency",
203
- "field": "currency",
204
282
  "options": [
205
283
  {
206
284
  "label": "USD",
207
285
  "value": "usd"
208
286
  },
209
287
  {
210
- "label": "EUR",
211
- "value": "eur"
288
+ "value": "eur",
289
+ "label": "EUR"
212
290
  },
213
291
  {
214
- "label": "GBP",
215
- "value": "gbp"
292
+ "value": "gbp",
293
+ "label": "GBP"
216
294
  }
217
- ]
295
+ ],
296
+ "label": "Currency",
297
+ "field": "currency"
218
298
  }
219
299
  ]
220
300
  },
221
301
  {
222
302
  "type": "button",
223
- "label": "Pay",
224
303
  "event": "CREATE_PAYMENT",
304
+ "icon": "credit-card",
225
305
  "variant": "primary",
226
- "icon": "credit-card"
306
+ "label": "Pay"
227
307
  }
228
- ]
308
+ ],
309
+ "gap": "lg"
229
310
  }
230
311
  ]
231
312
  ]
@@ -249,8 +330,8 @@
249
330
  "stripe",
250
331
  "createPaymentIntent",
251
332
  {
252
- "amount": "@entity.amount",
253
- "currency": "@entity.currency"
333
+ "currency": "@entity.currency",
334
+ "amount": "@entity.amount"
254
335
  }
255
336
  ]
256
337
  ]
@@ -274,8 +355,8 @@
274
355
  "render-ui",
275
356
  "main",
276
357
  {
277
- "type": "loading-state",
278
358
  "title": "Confirming payment...",
359
+ "type": "loading-state",
279
360
  "message": "Processing your payment."
280
361
  }
281
362
  ],
@@ -289,6 +370,28 @@
289
370
  ]
290
371
  ]
291
372
  },
373
+ {
374
+ "from": "creating",
375
+ "to": "error",
376
+ "event": "FAILED",
377
+ "effects": [
378
+ [
379
+ "set",
380
+ "@entity.error",
381
+ "@payload.error"
382
+ ],
383
+ [
384
+ "render-ui",
385
+ "main",
386
+ {
387
+ "type": "error-state",
388
+ "message": "@entity.error",
389
+ "onRetry": "RETRY",
390
+ "title": "Payment Failed"
391
+ }
392
+ ]
393
+ ]
394
+ },
292
395
  {
293
396
  "from": "confirming",
294
397
  "to": "succeeded",
@@ -303,10 +406,7 @@
303
406
  "render-ui",
304
407
  "main",
305
408
  {
306
- "type": "stack",
307
- "direction": "vertical",
308
409
  "gap": "lg",
309
- "align": "center",
310
410
  "children": [
311
411
  {
312
412
  "type": "icon",
@@ -319,41 +419,22 @@
319
419
  "message": "Payment successful!"
320
420
  },
321
421
  {
322
- "type": "typography",
323
- "variant": "body",
422
+ "content": "@entity.paymentIntentId",
324
423
  "color": "muted",
325
- "content": "@entity.paymentIntentId"
424
+ "variant": "body",
425
+ "type": "typography"
326
426
  },
327
427
  {
328
- "type": "button",
428
+ "variant": "ghost",
329
429
  "label": "New Payment",
430
+ "icon": "rotate-ccw",
330
431
  "event": "RESET",
331
- "variant": "ghost",
332
- "icon": "rotate-ccw"
432
+ "type": "button"
333
433
  }
334
- ]
335
- }
336
- ]
337
- ]
338
- },
339
- {
340
- "from": "creating",
341
- "to": "error",
342
- "event": "FAILED",
343
- "effects": [
344
- [
345
- "set",
346
- "@entity.error",
347
- "@payload.error"
348
- ],
349
- [
350
- "render-ui",
351
- "main",
352
- {
353
- "type": "error-state",
354
- "title": "Payment Failed",
355
- "message": "@entity.error",
356
- "onRetry": "RETRY"
434
+ ],
435
+ "type": "stack",
436
+ "direction": "vertical",
437
+ "align": "center"
357
438
  }
358
439
  ]
359
440
  ]
@@ -372,73 +453,69 @@
372
453
  "render-ui",
373
454
  "main",
374
455
  {
375
- "type": "error-state",
376
- "title": "Payment Failed",
456
+ "onRetry": "RETRY",
377
457
  "message": "@entity.error",
378
- "onRetry": "RETRY"
458
+ "title": "Payment Failed",
459
+ "type": "error-state"
379
460
  }
380
461
  ]
381
462
  ]
382
463
  },
383
464
  {
384
- "from": "error",
465
+ "from": "succeeded",
385
466
  "to": "idle",
386
- "event": "RETRY",
467
+ "event": "RESET",
387
468
  "effects": [
388
469
  [
389
470
  "render-ui",
390
471
  "main",
391
472
  {
392
- "type": "stack",
393
- "direction": "vertical",
394
- "gap": "lg",
395
473
  "align": "center",
396
474
  "children": [
397
475
  {
398
- "type": "stack",
399
- "direction": "horizontal",
400
- "gap": "md",
401
476
  "align": "center",
402
477
  "children": [
403
478
  {
404
- "type": "icon",
405
479
  "name": "credit-card",
480
+ "type": "icon",
406
481
  "size": "lg"
407
482
  },
408
483
  {
409
- "type": "typography",
410
484
  "content": "Payment",
485
+ "type": "typography",
411
486
  "variant": "h2"
412
487
  }
413
- ]
488
+ ],
489
+ "type": "stack",
490
+ "direction": "horizontal",
491
+ "gap": "md"
414
492
  },
415
493
  {
416
494
  "type": "divider"
417
495
  },
418
496
  {
419
497
  "type": "stack",
420
- "direction": "vertical",
421
498
  "gap": "md",
422
499
  "children": [
423
500
  {
424
501
  "type": "input",
425
- "label": "Amount",
426
502
  "field": "amount",
427
- "inputType": "number",
428
- "placeholder": "0.00"
503
+ "label": "Amount",
504
+ "placeholder": "0.00",
505
+ "inputType": "number"
429
506
  },
430
507
  {
431
508
  "type": "select",
432
- "label": "Currency",
433
509
  "field": "currency",
510
+ "label": "Currency",
434
511
  "options": [
435
512
  {
436
- "label": "USD",
437
- "value": "usd"
513
+ "value": "usd",
514
+ "label": "USD"
438
515
  },
439
516
  {
440
- "label": "EUR",
441
- "value": "eur"
517
+ "value": "eur",
518
+ "label": "EUR"
442
519
  },
443
520
  {
444
521
  "label": "GBP",
@@ -446,39 +523,36 @@
446
523
  }
447
524
  ]
448
525
  }
449
- ]
526
+ ],
527
+ "direction": "vertical"
450
528
  },
451
529
  {
530
+ "event": "CREATE_PAYMENT",
452
531
  "type": "button",
532
+ "icon": "credit-card",
453
533
  "label": "Pay",
454
- "event": "CREATE_PAYMENT",
455
- "variant": "primary",
456
- "icon": "credit-card"
534
+ "variant": "primary"
457
535
  }
458
- ]
536
+ ],
537
+ "direction": "vertical",
538
+ "gap": "lg",
539
+ "type": "stack"
459
540
  }
460
541
  ]
461
542
  ]
462
543
  },
463
544
  {
464
- "from": "succeeded",
545
+ "from": "error",
465
546
  "to": "idle",
466
- "event": "RESET",
547
+ "event": "RETRY",
467
548
  "effects": [
468
549
  [
469
550
  "render-ui",
470
551
  "main",
471
552
  {
472
- "type": "stack",
473
- "direction": "vertical",
474
553
  "gap": "lg",
475
- "align": "center",
476
554
  "children": [
477
555
  {
478
- "type": "stack",
479
- "direction": "horizontal",
480
- "gap": "md",
481
- "align": "center",
482
556
  "children": [
483
557
  {
484
558
  "type": "icon",
@@ -486,56 +560,63 @@
486
560
  "size": "lg"
487
561
  },
488
562
  {
489
- "type": "typography",
490
563
  "content": "Payment",
564
+ "type": "typography",
491
565
  "variant": "h2"
492
566
  }
493
- ]
567
+ ],
568
+ "align": "center",
569
+ "type": "stack",
570
+ "direction": "horizontal",
571
+ "gap": "md"
494
572
  },
495
573
  {
496
574
  "type": "divider"
497
575
  },
498
576
  {
499
- "type": "stack",
500
- "direction": "vertical",
501
- "gap": "md",
502
577
  "children": [
503
578
  {
504
- "type": "input",
505
579
  "label": "Amount",
506
- "field": "amount",
580
+ "placeholder": "0.00",
507
581
  "inputType": "number",
508
- "placeholder": "0.00"
582
+ "field": "amount",
583
+ "type": "input"
509
584
  },
510
585
  {
511
- "type": "select",
512
586
  "label": "Currency",
513
- "field": "currency",
514
587
  "options": [
515
588
  {
516
- "label": "USD",
517
- "value": "usd"
589
+ "value": "usd",
590
+ "label": "USD"
518
591
  },
519
592
  {
520
- "label": "EUR",
521
- "value": "eur"
593
+ "value": "eur",
594
+ "label": "EUR"
522
595
  },
523
596
  {
524
- "label": "GBP",
525
- "value": "gbp"
597
+ "value": "gbp",
598
+ "label": "GBP"
526
599
  }
527
- ]
600
+ ],
601
+ "field": "currency",
602
+ "type": "select"
528
603
  }
529
- ]
604
+ ],
605
+ "gap": "md",
606
+ "type": "stack",
607
+ "direction": "vertical"
530
608
  },
531
609
  {
532
- "type": "button",
610
+ "icon": "credit-card",
533
611
  "label": "Pay",
612
+ "type": "button",
534
613
  "event": "CREATE_PAYMENT",
535
- "variant": "primary",
536
- "icon": "credit-card"
614
+ "variant": "primary"
537
615
  }
538
- ]
616
+ ],
617
+ "type": "stack",
618
+ "align": "center",
619
+ "direction": "vertical"
539
620
  }
540
621
  ]
541
622
  ]
@@ -549,16 +630,12 @@
549
630
  "render-ui",
550
631
  "main",
551
632
  {
552
- "type": "stack",
553
- "direction": "vertical",
554
633
  "gap": "lg",
555
- "align": "center",
634
+ "direction": "vertical",
556
635
  "children": [
557
636
  {
558
- "type": "stack",
559
637
  "direction": "horizontal",
560
638
  "gap": "md",
561
- "align": "center",
562
639
  "children": [
563
640
  {
564
641
  "type": "icon",
@@ -566,11 +643,13 @@
566
643
  "size": "lg"
567
644
  },
568
645
  {
569
- "type": "typography",
570
646
  "content": "Payment",
571
- "variant": "h2"
647
+ "variant": "h2",
648
+ "type": "typography"
572
649
  }
573
- ]
650
+ ],
651
+ "type": "stack",
652
+ "align": "center"
574
653
  },
575
654
  {
576
655
  "type": "divider"
@@ -581,20 +660,18 @@
581
660
  "gap": "md",
582
661
  "children": [
583
662
  {
663
+ "placeholder": "0.00",
664
+ "field": "amount",
584
665
  "type": "input",
585
666
  "label": "Amount",
586
- "field": "amount",
587
- "inputType": "number",
588
- "placeholder": "0.00"
667
+ "inputType": "number"
589
668
  },
590
669
  {
591
670
  "type": "select",
592
- "label": "Currency",
593
- "field": "currency",
594
671
  "options": [
595
672
  {
596
- "label": "USD",
597
- "value": "usd"
673
+ "value": "usd",
674
+ "label": "USD"
598
675
  },
599
676
  {
600
677
  "label": "EUR",
@@ -604,24 +681,29 @@
604
681
  "label": "GBP",
605
682
  "value": "gbp"
606
683
  }
607
- ]
684
+ ],
685
+ "label": "Currency",
686
+ "field": "currency"
608
687
  }
609
688
  ]
610
689
  },
611
690
  {
612
691
  "type": "button",
692
+ "variant": "primary",
613
693
  "label": "Pay",
614
694
  "event": "CREATE_PAYMENT",
615
- "variant": "primary",
616
695
  "icon": "credit-card"
617
696
  }
618
- ]
697
+ ],
698
+ "align": "center",
699
+ "type": "stack"
619
700
  }
620
701
  ]
621
702
  ]
622
703
  }
623
704
  ]
624
- }
705
+ },
706
+ "scope": "instance"
625
707
  }
626
708
  ],
627
709
  "pages": [
@@ -637,4 +719,4 @@
637
719
  ]
638
720
  }
639
721
  ]
640
- }
722
+ }