@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.
- package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-messaging",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-messaging as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ChatMessageOrbital",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
],
|
|
18
18
|
"entity": {
|
|
19
19
|
"name": "ChatMessage",
|
|
20
|
-
"persistence": "persistent",
|
|
21
20
|
"collection": "chatmessages",
|
|
21
|
+
"persistence": "persistent",
|
|
22
22
|
"fields": [
|
|
23
23
|
{
|
|
24
24
|
"name": "id",
|
|
@@ -53,6 +53,24 @@
|
|
|
53
53
|
"ref": "Browse.traits.BrowseItemBrowse",
|
|
54
54
|
"name": "ChatMessageBrowse",
|
|
55
55
|
"linkedEntity": "ChatMessage",
|
|
56
|
+
"listens": [
|
|
57
|
+
{
|
|
58
|
+
"event": "SEND",
|
|
59
|
+
"triggers": "INIT",
|
|
60
|
+
"source": {
|
|
61
|
+
"kind": "trait",
|
|
62
|
+
"trait": "ChatMessageCompose"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"event": "MESSAGE_VIEWED",
|
|
67
|
+
"triggers": "INIT",
|
|
68
|
+
"source": {
|
|
69
|
+
"kind": "trait",
|
|
70
|
+
"trait": "ChatMessageView"
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
],
|
|
56
74
|
"effects": {
|
|
57
75
|
"INIT": [
|
|
58
76
|
[
|
|
@@ -64,74 +82,73 @@
|
|
|
64
82
|
"main",
|
|
65
83
|
{
|
|
66
84
|
"type": "stack",
|
|
67
|
-
"direction": "vertical",
|
|
68
|
-
"gap": "lg",
|
|
69
85
|
"className": "max-w-5xl mx-auto w-full",
|
|
70
86
|
"children": [
|
|
71
87
|
{
|
|
72
88
|
"type": "stack",
|
|
73
|
-
"direction": "horizontal",
|
|
74
|
-
"gap": "md",
|
|
75
89
|
"justify": "space-between",
|
|
76
90
|
"align": "center",
|
|
77
91
|
"children": [
|
|
78
92
|
{
|
|
79
|
-
"type": "stack",
|
|
80
|
-
"direction": "horizontal",
|
|
81
|
-
"gap": "sm",
|
|
82
|
-
"align": "center",
|
|
83
93
|
"children": [
|
|
84
94
|
{
|
|
85
|
-
"
|
|
95
|
+
"size": "lg",
|
|
86
96
|
"name": "message-circle",
|
|
87
|
-
"
|
|
97
|
+
"type": "icon"
|
|
88
98
|
},
|
|
89
99
|
{
|
|
90
|
-
"type": "typography",
|
|
91
100
|
"content": "ChatMessages",
|
|
92
|
-
"variant": "h2"
|
|
101
|
+
"variant": "h2",
|
|
102
|
+
"type": "typography"
|
|
93
103
|
}
|
|
94
|
-
]
|
|
104
|
+
],
|
|
105
|
+
"direction": "horizontal",
|
|
106
|
+
"gap": "sm",
|
|
107
|
+
"align": "center",
|
|
108
|
+
"type": "stack"
|
|
95
109
|
},
|
|
96
110
|
{
|
|
97
|
-
"type": "stack",
|
|
98
111
|
"direction": "horizontal",
|
|
99
112
|
"gap": "sm",
|
|
113
|
+
"type": "stack",
|
|
100
114
|
"children": [
|
|
101
115
|
{
|
|
116
|
+
"variant": "primary",
|
|
117
|
+
"icon": "edit",
|
|
102
118
|
"type": "button",
|
|
103
119
|
"label": "Compose",
|
|
104
|
-
"event": "COMPOSE"
|
|
105
|
-
"variant": "primary",
|
|
106
|
-
"icon": "edit"
|
|
120
|
+
"event": "COMPOSE"
|
|
107
121
|
}
|
|
108
122
|
]
|
|
109
123
|
}
|
|
110
|
-
]
|
|
124
|
+
],
|
|
125
|
+
"gap": "md",
|
|
126
|
+
"direction": "horizontal"
|
|
111
127
|
},
|
|
112
128
|
{
|
|
113
129
|
"type": "divider"
|
|
114
130
|
},
|
|
115
131
|
{
|
|
116
|
-
"type": "data-grid",
|
|
117
|
-
"entity": "ChatMessage",
|
|
118
|
-
"emptyIcon": "inbox",
|
|
119
132
|
"emptyTitle": "No messages yet",
|
|
120
133
|
"emptyDescription": "Start a new conversation.",
|
|
134
|
+
"emptyIcon": "inbox",
|
|
135
|
+
"entity": "ChatMessage",
|
|
136
|
+
"variant": "compact",
|
|
121
137
|
"itemActions": [
|
|
122
138
|
{
|
|
123
|
-
"label": "View",
|
|
124
|
-
"event": "VIEW",
|
|
125
139
|
"variant": "ghost",
|
|
126
|
-
"
|
|
140
|
+
"label": "View",
|
|
141
|
+
"size": "sm",
|
|
142
|
+
"event": "VIEW"
|
|
127
143
|
}
|
|
128
144
|
],
|
|
145
|
+
"type": "data-grid",
|
|
129
146
|
"columns": [
|
|
130
147
|
{
|
|
148
|
+
"icon": "message-circle",
|
|
131
149
|
"name": "name",
|
|
132
150
|
"label": "Name",
|
|
133
|
-
"variant": "h4"
|
|
134
|
-
"icon": "message-circle"
|
|
151
|
+
"variant": "h4"
|
|
135
152
|
},
|
|
136
153
|
{
|
|
137
154
|
"name": "description",
|
|
@@ -139,15 +156,16 @@
|
|
|
139
156
|
"variant": "caption"
|
|
140
157
|
},
|
|
141
158
|
{
|
|
159
|
+
"format": "date",
|
|
142
160
|
"name": "status",
|
|
143
|
-
"label": "Status",
|
|
144
161
|
"variant": "caption",
|
|
145
|
-
"
|
|
162
|
+
"label": "Status"
|
|
146
163
|
}
|
|
147
|
-
]
|
|
148
|
-
"variant": "compact"
|
|
164
|
+
]
|
|
149
165
|
}
|
|
150
|
-
]
|
|
166
|
+
],
|
|
167
|
+
"gap": "lg",
|
|
168
|
+
"direction": "vertical"
|
|
151
169
|
}
|
|
152
170
|
]
|
|
153
171
|
]
|
|
@@ -174,23 +192,23 @@
|
|
|
174
192
|
"modal",
|
|
175
193
|
{
|
|
176
194
|
"type": "stack",
|
|
177
|
-
"direction": "vertical",
|
|
178
195
|
"gap": "md",
|
|
196
|
+
"direction": "vertical",
|
|
179
197
|
"children": [
|
|
180
198
|
{
|
|
199
|
+
"gap": "sm",
|
|
181
200
|
"type": "stack",
|
|
182
201
|
"direction": "horizontal",
|
|
183
|
-
"gap": "sm",
|
|
184
202
|
"children": [
|
|
185
203
|
{
|
|
204
|
+
"size": "md",
|
|
186
205
|
"type": "icon",
|
|
187
|
-
"name": "edit"
|
|
188
|
-
"size": "md"
|
|
206
|
+
"name": "edit"
|
|
189
207
|
},
|
|
190
208
|
{
|
|
191
|
-
"type": "typography",
|
|
192
209
|
"content": "New ChatMessage",
|
|
193
|
-
"variant": "h3"
|
|
210
|
+
"variant": "h3",
|
|
211
|
+
"type": "typography"
|
|
194
212
|
}
|
|
195
213
|
]
|
|
196
214
|
},
|
|
@@ -198,16 +216,16 @@
|
|
|
198
216
|
"type": "divider"
|
|
199
217
|
},
|
|
200
218
|
{
|
|
201
|
-
"type": "form-section",
|
|
202
|
-
"entity": "ChatMessage",
|
|
203
219
|
"mode": "create",
|
|
220
|
+
"type": "form-section",
|
|
204
221
|
"submitEvent": "SEND",
|
|
205
222
|
"cancelEvent": "CLOSE",
|
|
206
223
|
"fields": [
|
|
207
224
|
"name",
|
|
208
225
|
"description",
|
|
209
226
|
"status"
|
|
210
|
-
]
|
|
227
|
+
],
|
|
228
|
+
"entity": "ChatMessage"
|
|
211
229
|
}
|
|
212
230
|
]
|
|
213
231
|
}
|
|
@@ -219,6 +237,13 @@
|
|
|
219
237
|
"modal",
|
|
220
238
|
null
|
|
221
239
|
],
|
|
240
|
+
[
|
|
241
|
+
"render-ui",
|
|
242
|
+
"main",
|
|
243
|
+
{
|
|
244
|
+
"type": "box"
|
|
245
|
+
}
|
|
246
|
+
],
|
|
222
247
|
[
|
|
223
248
|
"notify",
|
|
224
249
|
"Cancelled",
|
|
@@ -236,6 +261,13 @@
|
|
|
236
261
|
"render-ui",
|
|
237
262
|
"modal",
|
|
238
263
|
null
|
|
264
|
+
],
|
|
265
|
+
[
|
|
266
|
+
"render-ui",
|
|
267
|
+
"main",
|
|
268
|
+
{
|
|
269
|
+
"type": "box"
|
|
270
|
+
}
|
|
239
271
|
]
|
|
240
272
|
]
|
|
241
273
|
}
|
|
@@ -245,6 +277,7 @@
|
|
|
245
277
|
"name": "ChatMessageView",
|
|
246
278
|
"linkedEntity": "ChatMessage",
|
|
247
279
|
"events": {
|
|
280
|
+
"SAVE": "MESSAGE_VIEWED",
|
|
248
281
|
"OPEN": "VIEW"
|
|
249
282
|
},
|
|
250
283
|
"effects": {
|
|
@@ -254,6 +287,39 @@
|
|
|
254
287
|
"ChatMessage"
|
|
255
288
|
]
|
|
256
289
|
],
|
|
290
|
+
"CLOSE": [
|
|
291
|
+
[
|
|
292
|
+
"render-ui",
|
|
293
|
+
"modal",
|
|
294
|
+
null
|
|
295
|
+
],
|
|
296
|
+
[
|
|
297
|
+
"render-ui",
|
|
298
|
+
"main",
|
|
299
|
+
{
|
|
300
|
+
"type": "box"
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
[
|
|
304
|
+
"notify",
|
|
305
|
+
"Cancelled",
|
|
306
|
+
"info"
|
|
307
|
+
]
|
|
308
|
+
],
|
|
309
|
+
"MESSAGE_VIEWED": [
|
|
310
|
+
[
|
|
311
|
+
"render-ui",
|
|
312
|
+
"modal",
|
|
313
|
+
null
|
|
314
|
+
],
|
|
315
|
+
[
|
|
316
|
+
"render-ui",
|
|
317
|
+
"main",
|
|
318
|
+
{
|
|
319
|
+
"type": "box"
|
|
320
|
+
}
|
|
321
|
+
]
|
|
322
|
+
],
|
|
257
323
|
"VIEW": [
|
|
258
324
|
[
|
|
259
325
|
"fetch",
|
|
@@ -266,96 +332,96 @@
|
|
|
266
332
|
"render-ui",
|
|
267
333
|
"modal",
|
|
268
334
|
{
|
|
269
|
-
"type": "stack",
|
|
270
|
-
"direction": "vertical",
|
|
271
335
|
"gap": "md",
|
|
336
|
+
"direction": "vertical",
|
|
337
|
+
"type": "stack",
|
|
272
338
|
"children": [
|
|
273
339
|
{
|
|
274
340
|
"type": "stack",
|
|
275
|
-
"direction": "horizontal",
|
|
276
341
|
"gap": "sm",
|
|
277
342
|
"align": "center",
|
|
278
343
|
"children": [
|
|
279
344
|
{
|
|
280
|
-
"
|
|
345
|
+
"size": "md",
|
|
281
346
|
"name": "eye",
|
|
282
|
-
"
|
|
347
|
+
"type": "icon"
|
|
283
348
|
},
|
|
284
349
|
{
|
|
350
|
+
"content": "@entity.name",
|
|
285
351
|
"type": "typography",
|
|
286
|
-
"variant": "h3"
|
|
287
|
-
"content": "@entity.name"
|
|
352
|
+
"variant": "h3"
|
|
288
353
|
}
|
|
289
|
-
]
|
|
354
|
+
],
|
|
355
|
+
"direction": "horizontal"
|
|
290
356
|
},
|
|
291
357
|
{
|
|
292
358
|
"type": "divider"
|
|
293
359
|
},
|
|
294
360
|
{
|
|
295
|
-
"type": "stack",
|
|
296
|
-
"direction": "horizontal",
|
|
297
361
|
"gap": "md",
|
|
362
|
+
"direction": "horizontal",
|
|
298
363
|
"children": [
|
|
299
364
|
{
|
|
365
|
+
"content": "Name",
|
|
300
366
|
"type": "typography",
|
|
301
|
-
"variant": "caption"
|
|
302
|
-
"content": "Name"
|
|
367
|
+
"variant": "caption"
|
|
303
368
|
},
|
|
304
369
|
{
|
|
305
|
-
"type": "typography",
|
|
306
370
|
"variant": "body",
|
|
307
|
-
"content": "@entity.name"
|
|
371
|
+
"content": "@entity.name",
|
|
372
|
+
"type": "typography"
|
|
308
373
|
}
|
|
309
|
-
]
|
|
374
|
+
],
|
|
375
|
+
"type": "stack"
|
|
310
376
|
},
|
|
311
377
|
{
|
|
312
|
-
"type": "stack",
|
|
313
|
-
"direction": "horizontal",
|
|
314
378
|
"gap": "md",
|
|
315
379
|
"children": [
|
|
316
380
|
{
|
|
317
|
-
"type": "typography",
|
|
318
381
|
"variant": "caption",
|
|
319
|
-
"content": "Description"
|
|
382
|
+
"content": "Description",
|
|
383
|
+
"type": "typography"
|
|
320
384
|
},
|
|
321
385
|
{
|
|
322
386
|
"type": "typography",
|
|
323
387
|
"variant": "body",
|
|
324
388
|
"content": "@entity.description"
|
|
325
389
|
}
|
|
326
|
-
]
|
|
390
|
+
],
|
|
391
|
+
"type": "stack",
|
|
392
|
+
"direction": "horizontal"
|
|
327
393
|
},
|
|
328
394
|
{
|
|
395
|
+
"gap": "md",
|
|
329
396
|
"type": "stack",
|
|
330
397
|
"direction": "horizontal",
|
|
331
|
-
"gap": "md",
|
|
332
398
|
"children": [
|
|
333
399
|
{
|
|
334
400
|
"type": "typography",
|
|
335
|
-
"
|
|
336
|
-
"
|
|
401
|
+
"content": "Status",
|
|
402
|
+
"variant": "caption"
|
|
337
403
|
},
|
|
338
404
|
{
|
|
339
|
-
"
|
|
405
|
+
"content": "@entity.status",
|
|
340
406
|
"variant": "body",
|
|
341
|
-
"
|
|
407
|
+
"type": "typography"
|
|
342
408
|
}
|
|
343
409
|
]
|
|
344
410
|
},
|
|
345
411
|
{
|
|
412
|
+
"gap": "md",
|
|
346
413
|
"type": "stack",
|
|
347
414
|
"direction": "horizontal",
|
|
348
|
-
"gap": "md",
|
|
349
415
|
"children": [
|
|
350
416
|
{
|
|
351
|
-
"type": "typography",
|
|
352
417
|
"variant": "caption",
|
|
353
|
-
"content": "Created At"
|
|
418
|
+
"content": "Created At",
|
|
419
|
+
"type": "typography"
|
|
354
420
|
},
|
|
355
421
|
{
|
|
356
|
-
"type": "typography",
|
|
357
422
|
"variant": "body",
|
|
358
|
-
"content": "@entity.createdAt"
|
|
423
|
+
"content": "@entity.createdAt",
|
|
424
|
+
"type": "typography"
|
|
359
425
|
}
|
|
360
426
|
]
|
|
361
427
|
},
|
|
@@ -363,41 +429,22 @@
|
|
|
363
429
|
"type": "divider"
|
|
364
430
|
},
|
|
365
431
|
{
|
|
366
|
-
"type": "stack",
|
|
367
|
-
"direction": "horizontal",
|
|
368
|
-
"gap": "sm",
|
|
369
|
-
"justify": "end",
|
|
370
432
|
"children": [
|
|
371
433
|
{
|
|
372
|
-
"
|
|
434
|
+
"variant": "ghost",
|
|
373
435
|
"label": "Close",
|
|
374
436
|
"event": "CLOSE",
|
|
375
|
-
"
|
|
437
|
+
"type": "button"
|
|
376
438
|
}
|
|
377
|
-
]
|
|
439
|
+
],
|
|
440
|
+
"type": "stack",
|
|
441
|
+
"direction": "horizontal",
|
|
442
|
+
"gap": "sm",
|
|
443
|
+
"justify": "end"
|
|
378
444
|
}
|
|
379
445
|
]
|
|
380
446
|
}
|
|
381
447
|
]
|
|
382
|
-
],
|
|
383
|
-
"CLOSE": [
|
|
384
|
-
[
|
|
385
|
-
"render-ui",
|
|
386
|
-
"modal",
|
|
387
|
-
null
|
|
388
|
-
],
|
|
389
|
-
[
|
|
390
|
-
"notify",
|
|
391
|
-
"Cancelled",
|
|
392
|
-
"info"
|
|
393
|
-
]
|
|
394
|
-
],
|
|
395
|
-
"SAVE": [
|
|
396
|
-
[
|
|
397
|
-
"render-ui",
|
|
398
|
-
"modal",
|
|
399
|
-
null
|
|
400
|
-
]
|
|
401
448
|
]
|
|
402
449
|
}
|
|
403
450
|
}
|
|
@@ -421,4 +468,4 @@
|
|
|
421
468
|
]
|
|
422
469
|
}
|
|
423
470
|
]
|
|
424
|
-
}
|
|
471
|
+
}
|