@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,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-agent-activity-log",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-agent-activity-log as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "AgentActivityLogOrbital",
|
|
8
8
|
"entity": {
|
|
9
9
|
"name": "AgentActivityLog",
|
|
10
|
-
"persistence": "persistent",
|
|
11
10
|
"collection": "agentactivitylogs",
|
|
11
|
+
"persistence": "persistent",
|
|
12
12
|
"fields": [
|
|
13
13
|
{
|
|
14
14
|
"name": "id",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
{
|
|
55
55
|
"name": "duration",
|
|
56
56
|
"type": "number",
|
|
57
|
-
"default": 0
|
|
57
|
+
"default": 0.0
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
60
|
"name": "icon",
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
"traits": [
|
|
67
67
|
{
|
|
68
68
|
"name": "AgentActivityLogLog",
|
|
69
|
-
"linkedEntity": "AgentActivityLog",
|
|
70
69
|
"category": "interaction",
|
|
70
|
+
"linkedEntity": "AgentActivityLog",
|
|
71
71
|
"emits": [
|
|
72
72
|
{
|
|
73
73
|
"event": "LOG_ENTRY",
|
|
@@ -86,13 +86,74 @@
|
|
|
86
86
|
"type": "string"
|
|
87
87
|
}
|
|
88
88
|
]
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"event": "AgentActivityLogLoaded",
|
|
92
|
+
"description": "Fired when AgentActivityLog finishes loading",
|
|
93
|
+
"scope": "internal",
|
|
94
|
+
"payload": [
|
|
95
|
+
{
|
|
96
|
+
"name": "id",
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "name",
|
|
101
|
+
"type": "string"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "description",
|
|
105
|
+
"type": "string"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "status",
|
|
109
|
+
"type": "string"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "createdAt",
|
|
113
|
+
"type": "string"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "action",
|
|
117
|
+
"type": "string"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "detail",
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "timestamp",
|
|
125
|
+
"type": "string"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "duration",
|
|
129
|
+
"type": "number"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "icon",
|
|
133
|
+
"type": "string"
|
|
134
|
+
}
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"event": "AgentActivityLogLoadFailed",
|
|
139
|
+
"description": "Fired when AgentActivityLog fails to load",
|
|
140
|
+
"scope": "internal",
|
|
141
|
+
"payload": [
|
|
142
|
+
{
|
|
143
|
+
"name": "message",
|
|
144
|
+
"type": "string"
|
|
145
|
+
}
|
|
146
|
+
]
|
|
89
147
|
}
|
|
90
148
|
],
|
|
91
149
|
"listens": [
|
|
92
150
|
{
|
|
93
151
|
"event": "LOG_ENTRY",
|
|
94
152
|
"triggers": "LOG_ENTRY",
|
|
95
|
-
"
|
|
153
|
+
"source": {
|
|
154
|
+
"kind": "trait",
|
|
155
|
+
"trait": "AgentActivityLogLog"
|
|
156
|
+
}
|
|
96
157
|
}
|
|
97
158
|
],
|
|
98
159
|
"stateMachine": {
|
|
@@ -113,24 +174,35 @@
|
|
|
113
174
|
"payload": [
|
|
114
175
|
{
|
|
115
176
|
"name": "action",
|
|
116
|
-
"type": "string"
|
|
117
|
-
"required": true
|
|
177
|
+
"type": "string"
|
|
118
178
|
},
|
|
119
179
|
{
|
|
120
180
|
"name": "detail",
|
|
121
|
-
"type": "string"
|
|
122
|
-
"required": true
|
|
181
|
+
"type": "string"
|
|
123
182
|
},
|
|
124
183
|
{
|
|
125
184
|
"name": "status",
|
|
126
|
-
"type": "string"
|
|
127
|
-
"required": true
|
|
185
|
+
"type": "string"
|
|
128
186
|
}
|
|
129
187
|
]
|
|
130
188
|
},
|
|
131
189
|
{
|
|
132
190
|
"key": "CLEAR",
|
|
133
|
-
"name": "Clear
|
|
191
|
+
"name": "Clear"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"key": "AgentActivityLogLoaded",
|
|
195
|
+
"name": "AgentActivityLog loaded"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"key": "AgentActivityLogLoadFailed",
|
|
199
|
+
"name": "AgentActivityLog load failed",
|
|
200
|
+
"payload": [
|
|
201
|
+
{
|
|
202
|
+
"name": "message",
|
|
203
|
+
"type": "string"
|
|
204
|
+
}
|
|
205
|
+
]
|
|
134
206
|
}
|
|
135
207
|
],
|
|
136
208
|
"transitions": [
|
|
@@ -141,28 +213,28 @@
|
|
|
141
213
|
"effects": [
|
|
142
214
|
[
|
|
143
215
|
"fetch",
|
|
144
|
-
"AgentActivityLog"
|
|
216
|
+
"AgentActivityLog",
|
|
217
|
+
{
|
|
218
|
+
"emit": {
|
|
219
|
+
"success": "AgentActivityLogLoaded",
|
|
220
|
+
"failure": "AgentActivityLogLoadFailed"
|
|
221
|
+
}
|
|
222
|
+
}
|
|
145
223
|
],
|
|
146
224
|
[
|
|
147
225
|
"render-ui",
|
|
148
226
|
"main",
|
|
149
227
|
{
|
|
150
228
|
"type": "stack",
|
|
151
|
-
"direction": "vertical",
|
|
152
229
|
"gap": "lg",
|
|
153
230
|
"children": [
|
|
154
231
|
{
|
|
155
232
|
"type": "stack",
|
|
156
|
-
"direction": "horizontal",
|
|
157
|
-
"gap": "sm",
|
|
158
233
|
"justify": "space-between",
|
|
159
234
|
"align": "center",
|
|
160
235
|
"children": [
|
|
161
236
|
{
|
|
162
237
|
"type": "stack",
|
|
163
|
-
"direction": "horizontal",
|
|
164
|
-
"gap": "sm",
|
|
165
|
-
"align": "center",
|
|
166
238
|
"children": [
|
|
167
239
|
{
|
|
168
240
|
"type": "icon",
|
|
@@ -170,28 +242,30 @@
|
|
|
170
242
|
"size": "lg"
|
|
171
243
|
},
|
|
172
244
|
{
|
|
173
|
-
"type": "typography",
|
|
174
245
|
"content": "Activity Log",
|
|
175
|
-
"variant": "h2"
|
|
246
|
+
"variant": "h2",
|
|
247
|
+
"type": "typography"
|
|
176
248
|
}
|
|
177
|
-
]
|
|
249
|
+
],
|
|
250
|
+
"gap": "sm",
|
|
251
|
+
"direction": "horizontal",
|
|
252
|
+
"align": "center"
|
|
178
253
|
},
|
|
179
254
|
{
|
|
180
255
|
"type": "button",
|
|
181
256
|
"label": "Clear",
|
|
182
257
|
"event": "CLEAR",
|
|
183
|
-
"
|
|
184
|
-
"
|
|
258
|
+
"icon": "trash",
|
|
259
|
+
"variant": "ghost"
|
|
185
260
|
}
|
|
186
|
-
]
|
|
261
|
+
],
|
|
262
|
+
"direction": "horizontal",
|
|
263
|
+
"gap": "sm"
|
|
187
264
|
},
|
|
188
265
|
{
|
|
189
266
|
"type": "divider"
|
|
190
267
|
},
|
|
191
268
|
{
|
|
192
|
-
"type": "data-list",
|
|
193
|
-
"entity": "AgentActivityLog",
|
|
194
|
-
"emptyIcon": "activity",
|
|
195
269
|
"emptyTitle": "No activity yet",
|
|
196
270
|
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
197
271
|
"renderItem": [
|
|
@@ -199,82 +273,60 @@
|
|
|
199
273
|
"item",
|
|
200
274
|
{
|
|
201
275
|
"type": "stack",
|
|
202
|
-
"direction": "horizontal",
|
|
203
|
-
"gap": "md",
|
|
204
276
|
"children": [
|
|
205
277
|
{
|
|
278
|
+
"direction": "horizontal",
|
|
206
279
|
"type": "stack",
|
|
207
|
-
"
|
|
280
|
+
"gap": "sm",
|
|
208
281
|
"align": "center",
|
|
209
|
-
"className": "w-6 relative",
|
|
210
282
|
"children": [
|
|
211
283
|
{
|
|
212
|
-
"type": "
|
|
213
|
-
"
|
|
214
|
-
"size": "sm",
|
|
215
|
-
"className": "z-10 bg-card"
|
|
284
|
+
"type": "badge",
|
|
285
|
+
"label": "@item.status"
|
|
216
286
|
},
|
|
217
287
|
{
|
|
218
|
-
"type": "
|
|
219
|
-
"
|
|
288
|
+
"type": "typography",
|
|
289
|
+
"content": "@item.action",
|
|
290
|
+
"variant": "h4"
|
|
220
291
|
}
|
|
221
292
|
]
|
|
222
293
|
},
|
|
223
294
|
{
|
|
295
|
+
"color": "muted",
|
|
296
|
+
"content": "@item.detail",
|
|
297
|
+
"variant": "body",
|
|
298
|
+
"type": "typography"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"direction": "horizontal",
|
|
224
302
|
"type": "stack",
|
|
225
|
-
"direction": "vertical",
|
|
226
|
-
"gap": "xs",
|
|
227
|
-
"className": "flex-1 pb-6",
|
|
228
303
|
"children": [
|
|
229
304
|
{
|
|
230
|
-
"type": "stack",
|
|
231
|
-
"direction": "horizontal",
|
|
232
|
-
"gap": "sm",
|
|
233
|
-
"align": "center",
|
|
234
|
-
"children": [
|
|
235
|
-
{
|
|
236
|
-
"type": "badge",
|
|
237
|
-
"label": "@item.status"
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
"type": "typography",
|
|
241
|
-
"variant": "h4",
|
|
242
|
-
"content": "@item.action"
|
|
243
|
-
}
|
|
244
|
-
]
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
"type": "typography",
|
|
248
|
-
"variant": "body",
|
|
249
305
|
"color": "muted",
|
|
250
|
-
"
|
|
306
|
+
"type": "typography",
|
|
307
|
+
"content": "@item.timestamp",
|
|
308
|
+
"variant": "caption"
|
|
251
309
|
},
|
|
252
310
|
{
|
|
253
|
-
"
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"align": "center",
|
|
257
|
-
"children": [
|
|
258
|
-
{
|
|
259
|
-
"type": "typography",
|
|
260
|
-
"variant": "caption",
|
|
261
|
-
"color": "muted",
|
|
262
|
-
"content": "@item.timestamp"
|
|
263
|
-
},
|
|
264
|
-
{
|
|
265
|
-
"type": "badge",
|
|
266
|
-
"label": "@item.duration",
|
|
267
|
-
"variant": "outline"
|
|
268
|
-
}
|
|
269
|
-
]
|
|
311
|
+
"variant": "outline",
|
|
312
|
+
"type": "badge",
|
|
313
|
+
"label": "@item.duration"
|
|
270
314
|
}
|
|
271
|
-
]
|
|
315
|
+
],
|
|
316
|
+
"gap": "sm",
|
|
317
|
+
"align": "center"
|
|
272
318
|
}
|
|
273
|
-
]
|
|
319
|
+
],
|
|
320
|
+
"gap": "xs",
|
|
321
|
+
"direction": "vertical"
|
|
274
322
|
}
|
|
275
|
-
]
|
|
323
|
+
],
|
|
324
|
+
"entity": "AgentActivityLog",
|
|
325
|
+
"type": "timeline",
|
|
326
|
+
"emptyIcon": "activity"
|
|
276
327
|
}
|
|
277
|
-
]
|
|
328
|
+
],
|
|
329
|
+
"direction": "vertical"
|
|
278
330
|
}
|
|
279
331
|
]
|
|
280
332
|
]
|
|
@@ -289,15 +341,21 @@
|
|
|
289
341
|
"create",
|
|
290
342
|
"AgentActivityLog",
|
|
291
343
|
{
|
|
292
|
-
"action": "@payload.action",
|
|
293
|
-
"detail": "@payload.detail",
|
|
294
344
|
"status": "@payload.status",
|
|
345
|
+
"detail": "@payload.detail",
|
|
346
|
+
"action": "@payload.action",
|
|
295
347
|
"timestamp": "@now"
|
|
296
348
|
}
|
|
297
349
|
],
|
|
298
350
|
[
|
|
299
351
|
"fetch",
|
|
300
|
-
"AgentActivityLog"
|
|
352
|
+
"AgentActivityLog",
|
|
353
|
+
{
|
|
354
|
+
"emit": {
|
|
355
|
+
"success": "AgentActivityLogLoaded",
|
|
356
|
+
"failure": "AgentActivityLogLoadFailed"
|
|
357
|
+
}
|
|
358
|
+
}
|
|
301
359
|
],
|
|
302
360
|
[
|
|
303
361
|
"render-ui",
|
|
@@ -308,17 +366,13 @@
|
|
|
308
366
|
"gap": "lg",
|
|
309
367
|
"children": [
|
|
310
368
|
{
|
|
311
|
-
"
|
|
369
|
+
"justify": "space-between",
|
|
312
370
|
"direction": "horizontal",
|
|
371
|
+
"type": "stack",
|
|
313
372
|
"gap": "sm",
|
|
314
|
-
"justify": "space-between",
|
|
315
|
-
"align": "center",
|
|
316
373
|
"children": [
|
|
317
374
|
{
|
|
318
|
-
"type": "stack",
|
|
319
375
|
"direction": "horizontal",
|
|
320
|
-
"gap": "sm",
|
|
321
|
-
"align": "center",
|
|
322
376
|
"children": [
|
|
323
377
|
{
|
|
324
378
|
"type": "icon",
|
|
@@ -326,109 +380,87 @@
|
|
|
326
380
|
"size": "lg"
|
|
327
381
|
},
|
|
328
382
|
{
|
|
329
|
-
"type": "typography",
|
|
330
383
|
"content": "Activity Log",
|
|
384
|
+
"type": "typography",
|
|
331
385
|
"variant": "h2"
|
|
332
386
|
}
|
|
333
|
-
]
|
|
387
|
+
],
|
|
388
|
+
"gap": "sm",
|
|
389
|
+
"align": "center",
|
|
390
|
+
"type": "stack"
|
|
334
391
|
},
|
|
335
392
|
{
|
|
336
|
-
"type": "button",
|
|
337
|
-
"label": "Clear",
|
|
338
393
|
"event": "CLEAR",
|
|
339
|
-
"
|
|
340
|
-
"
|
|
394
|
+
"label": "Clear",
|
|
395
|
+
"type": "button",
|
|
396
|
+
"icon": "trash",
|
|
397
|
+
"variant": "ghost"
|
|
341
398
|
}
|
|
342
|
-
]
|
|
399
|
+
],
|
|
400
|
+
"align": "center"
|
|
343
401
|
},
|
|
344
402
|
{
|
|
345
403
|
"type": "divider"
|
|
346
404
|
},
|
|
347
405
|
{
|
|
348
|
-
"
|
|
406
|
+
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
349
407
|
"entity": "AgentActivityLog",
|
|
350
408
|
"emptyIcon": "activity",
|
|
351
|
-
"emptyTitle": "No activity yet",
|
|
352
|
-
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
353
409
|
"renderItem": [
|
|
354
410
|
"fn",
|
|
355
411
|
"item",
|
|
356
412
|
{
|
|
357
|
-
"
|
|
358
|
-
"direction": "horizontal",
|
|
359
|
-
"gap": "md",
|
|
413
|
+
"gap": "xs",
|
|
360
414
|
"children": [
|
|
361
415
|
{
|
|
362
|
-
"type": "stack",
|
|
363
|
-
"direction": "vertical",
|
|
364
416
|
"align": "center",
|
|
365
|
-
"className": "w-6 relative",
|
|
366
417
|
"children": [
|
|
367
418
|
{
|
|
368
|
-
"
|
|
369
|
-
"
|
|
370
|
-
"size": "sm",
|
|
371
|
-
"className": "z-10 bg-card"
|
|
419
|
+
"label": "@item.status",
|
|
420
|
+
"type": "badge"
|
|
372
421
|
},
|
|
373
422
|
{
|
|
374
|
-
"
|
|
375
|
-
"
|
|
423
|
+
"variant": "h4",
|
|
424
|
+
"content": "@item.action",
|
|
425
|
+
"type": "typography"
|
|
376
426
|
}
|
|
377
|
-
]
|
|
427
|
+
],
|
|
428
|
+
"gap": "sm",
|
|
429
|
+
"direction": "horizontal",
|
|
430
|
+
"type": "stack"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"variant": "body",
|
|
434
|
+
"type": "typography",
|
|
435
|
+
"content": "@item.detail",
|
|
436
|
+
"color": "muted"
|
|
378
437
|
},
|
|
379
438
|
{
|
|
380
439
|
"type": "stack",
|
|
381
|
-
"
|
|
382
|
-
"gap": "xs",
|
|
383
|
-
"className": "flex-1 pb-6",
|
|
440
|
+
"align": "center",
|
|
384
441
|
"children": [
|
|
385
442
|
{
|
|
386
|
-
"type": "stack",
|
|
387
|
-
"direction": "horizontal",
|
|
388
|
-
"gap": "sm",
|
|
389
|
-
"align": "center",
|
|
390
|
-
"children": [
|
|
391
|
-
{
|
|
392
|
-
"type": "badge",
|
|
393
|
-
"label": "@item.status"
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
"type": "typography",
|
|
397
|
-
"variant": "h4",
|
|
398
|
-
"content": "@item.action"
|
|
399
|
-
}
|
|
400
|
-
]
|
|
401
|
-
},
|
|
402
|
-
{
|
|
403
|
-
"type": "typography",
|
|
404
|
-
"variant": "body",
|
|
405
443
|
"color": "muted",
|
|
406
|
-
"content": "@item.
|
|
444
|
+
"content": "@item.timestamp",
|
|
445
|
+
"type": "typography",
|
|
446
|
+
"variant": "caption"
|
|
407
447
|
},
|
|
408
448
|
{
|
|
409
|
-
"
|
|
410
|
-
"
|
|
411
|
-
"
|
|
412
|
-
"align": "center",
|
|
413
|
-
"children": [
|
|
414
|
-
{
|
|
415
|
-
"type": "typography",
|
|
416
|
-
"variant": "caption",
|
|
417
|
-
"color": "muted",
|
|
418
|
-
"content": "@item.timestamp"
|
|
419
|
-
},
|
|
420
|
-
{
|
|
421
|
-
"type": "badge",
|
|
422
|
-
"label": "@item.duration",
|
|
423
|
-
"variant": "outline"
|
|
424
|
-
}
|
|
425
|
-
]
|
|
449
|
+
"label": "@item.duration",
|
|
450
|
+
"variant": "outline",
|
|
451
|
+
"type": "badge"
|
|
426
452
|
}
|
|
427
|
-
]
|
|
453
|
+
],
|
|
454
|
+
"direction": "horizontal",
|
|
455
|
+
"gap": "sm"
|
|
428
456
|
}
|
|
429
|
-
]
|
|
457
|
+
],
|
|
458
|
+
"direction": "vertical",
|
|
459
|
+
"type": "stack"
|
|
430
460
|
}
|
|
431
|
-
]
|
|
461
|
+
],
|
|
462
|
+
"type": "timeline",
|
|
463
|
+
"emptyTitle": "No activity yet"
|
|
432
464
|
}
|
|
433
465
|
]
|
|
434
466
|
}
|
|
@@ -447,46 +479,52 @@
|
|
|
447
479
|
],
|
|
448
480
|
[
|
|
449
481
|
"fetch",
|
|
450
|
-
"AgentActivityLog"
|
|
482
|
+
"AgentActivityLog",
|
|
483
|
+
{
|
|
484
|
+
"emit": {
|
|
485
|
+
"success": "AgentActivityLogLoaded",
|
|
486
|
+
"failure": "AgentActivityLogLoadFailed"
|
|
487
|
+
}
|
|
488
|
+
}
|
|
451
489
|
],
|
|
452
490
|
[
|
|
453
491
|
"render-ui",
|
|
454
492
|
"main",
|
|
455
493
|
{
|
|
456
|
-
"type": "stack",
|
|
457
494
|
"direction": "vertical",
|
|
458
495
|
"gap": "lg",
|
|
496
|
+
"type": "stack",
|
|
459
497
|
"children": [
|
|
460
498
|
{
|
|
461
|
-
"type": "stack",
|
|
462
|
-
"direction": "horizontal",
|
|
463
499
|
"gap": "sm",
|
|
500
|
+
"direction": "horizontal",
|
|
501
|
+
"type": "stack",
|
|
464
502
|
"justify": "space-between",
|
|
465
503
|
"align": "center",
|
|
466
504
|
"children": [
|
|
467
505
|
{
|
|
468
|
-
"type": "stack",
|
|
469
506
|
"direction": "horizontal",
|
|
470
|
-
"gap": "sm",
|
|
471
|
-
"align": "center",
|
|
472
507
|
"children": [
|
|
473
508
|
{
|
|
474
|
-
"type": "icon",
|
|
475
509
|
"name": "activity",
|
|
510
|
+
"type": "icon",
|
|
476
511
|
"size": "lg"
|
|
477
512
|
},
|
|
478
513
|
{
|
|
479
|
-
"type": "typography",
|
|
480
514
|
"content": "Activity Log",
|
|
481
|
-
"variant": "h2"
|
|
515
|
+
"variant": "h2",
|
|
516
|
+
"type": "typography"
|
|
482
517
|
}
|
|
483
|
-
]
|
|
518
|
+
],
|
|
519
|
+
"align": "center",
|
|
520
|
+
"gap": "sm",
|
|
521
|
+
"type": "stack"
|
|
484
522
|
},
|
|
485
523
|
{
|
|
486
524
|
"type": "button",
|
|
487
|
-
"label": "Clear",
|
|
488
525
|
"event": "CLEAR",
|
|
489
526
|
"variant": "ghost",
|
|
527
|
+
"label": "Clear",
|
|
490
528
|
"icon": "trash"
|
|
491
529
|
}
|
|
492
530
|
]
|
|
@@ -495,88 +533,62 @@
|
|
|
495
533
|
"type": "divider"
|
|
496
534
|
},
|
|
497
535
|
{
|
|
498
|
-
"type": "data-list",
|
|
499
536
|
"entity": "AgentActivityLog",
|
|
500
|
-
"emptyIcon": "activity",
|
|
501
537
|
"emptyTitle": "No activity yet",
|
|
502
538
|
"emptyDescription": "Agent actions will appear here as they occur.",
|
|
539
|
+
"type": "timeline",
|
|
540
|
+
"emptyIcon": "activity",
|
|
503
541
|
"renderItem": [
|
|
504
542
|
"fn",
|
|
505
543
|
"item",
|
|
506
544
|
{
|
|
507
545
|
"type": "stack",
|
|
508
|
-
"
|
|
509
|
-
"gap": "md",
|
|
546
|
+
"gap": "xs",
|
|
510
547
|
"children": [
|
|
511
548
|
{
|
|
512
|
-
"type": "stack",
|
|
513
|
-
"direction": "vertical",
|
|
514
|
-
"align": "center",
|
|
515
|
-
"className": "w-6 relative",
|
|
516
549
|
"children": [
|
|
517
550
|
{
|
|
518
|
-
"
|
|
519
|
-
"
|
|
520
|
-
"size": "sm",
|
|
521
|
-
"className": "z-10 bg-card"
|
|
551
|
+
"label": "@item.status",
|
|
552
|
+
"type": "badge"
|
|
522
553
|
},
|
|
523
554
|
{
|
|
524
|
-
"type": "
|
|
525
|
-
"
|
|
555
|
+
"type": "typography",
|
|
556
|
+
"variant": "h4",
|
|
557
|
+
"content": "@item.action"
|
|
526
558
|
}
|
|
527
|
-
]
|
|
559
|
+
],
|
|
560
|
+
"gap": "sm",
|
|
561
|
+
"align": "center",
|
|
562
|
+
"type": "stack",
|
|
563
|
+
"direction": "horizontal"
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"color": "muted",
|
|
567
|
+
"type": "typography",
|
|
568
|
+
"content": "@item.detail",
|
|
569
|
+
"variant": "body"
|
|
528
570
|
},
|
|
529
571
|
{
|
|
530
572
|
"type": "stack",
|
|
531
|
-
"
|
|
532
|
-
"
|
|
533
|
-
"
|
|
573
|
+
"gap": "sm",
|
|
574
|
+
"direction": "horizontal",
|
|
575
|
+
"align": "center",
|
|
534
576
|
"children": [
|
|
535
577
|
{
|
|
536
|
-
"type": "stack",
|
|
537
|
-
"direction": "horizontal",
|
|
538
|
-
"gap": "sm",
|
|
539
|
-
"align": "center",
|
|
540
|
-
"children": [
|
|
541
|
-
{
|
|
542
|
-
"type": "badge",
|
|
543
|
-
"label": "@item.status"
|
|
544
|
-
},
|
|
545
|
-
{
|
|
546
|
-
"type": "typography",
|
|
547
|
-
"variant": "h4",
|
|
548
|
-
"content": "@item.action"
|
|
549
|
-
}
|
|
550
|
-
]
|
|
551
|
-
},
|
|
552
|
-
{
|
|
553
|
-
"type": "typography",
|
|
554
|
-
"variant": "body",
|
|
555
578
|
"color": "muted",
|
|
556
|
-
"
|
|
579
|
+
"variant": "caption",
|
|
580
|
+
"type": "typography",
|
|
581
|
+
"content": "@item.timestamp"
|
|
557
582
|
},
|
|
558
583
|
{
|
|
559
|
-
"
|
|
560
|
-
"
|
|
561
|
-
"
|
|
562
|
-
"align": "center",
|
|
563
|
-
"children": [
|
|
564
|
-
{
|
|
565
|
-
"type": "typography",
|
|
566
|
-
"variant": "caption",
|
|
567
|
-
"color": "muted",
|
|
568
|
-
"content": "@item.timestamp"
|
|
569
|
-
},
|
|
570
|
-
{
|
|
571
|
-
"type": "badge",
|
|
572
|
-
"label": "@item.duration",
|
|
573
|
-
"variant": "outline"
|
|
574
|
-
}
|
|
575
|
-
]
|
|
584
|
+
"variant": "outline",
|
|
585
|
+
"type": "badge",
|
|
586
|
+
"label": "@item.duration"
|
|
576
587
|
}
|
|
577
588
|
]
|
|
578
589
|
}
|
|
579
|
-
]
|
|
590
|
+
],
|
|
591
|
+
"direction": "vertical"
|
|
580
592
|
}
|
|
581
593
|
]
|
|
582
594
|
}
|
|
@@ -586,7 +598,8 @@
|
|
|
586
598
|
]
|
|
587
599
|
}
|
|
588
600
|
]
|
|
589
|
-
}
|
|
601
|
+
},
|
|
602
|
+
"scope": "instance"
|
|
590
603
|
}
|
|
591
604
|
],
|
|
592
605
|
"pages": [
|
|
@@ -602,4 +615,4 @@
|
|
|
602
615
|
]
|
|
603
616
|
}
|
|
604
617
|
]
|
|
605
|
-
}
|
|
618
|
+
}
|