@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
|
@@ -45,24 +45,61 @@
|
|
|
45
45
|
"type": "string",
|
|
46
46
|
"default": "info"
|
|
47
47
|
}
|
|
48
|
-
],
|
|
49
|
-
"instances": [
|
|
50
|
-
{
|
|
51
|
-
"id": "notif-1",
|
|
52
|
-
"name": "System Update",
|
|
53
|
-
"description": "New version available",
|
|
54
|
-
"status": "active",
|
|
55
|
-
"createdAt": "2026-03-19",
|
|
56
|
-
"message": "System update completed successfully.",
|
|
57
|
-
"notificationType": "success"
|
|
58
|
-
}
|
|
59
48
|
]
|
|
60
49
|
},
|
|
61
50
|
"traits": [
|
|
62
51
|
{
|
|
63
52
|
"name": "NotificationNotification",
|
|
64
|
-
"linkedEntity": "Notification",
|
|
65
53
|
"category": "interaction",
|
|
54
|
+
"linkedEntity": "Notification",
|
|
55
|
+
"emits": [
|
|
56
|
+
{
|
|
57
|
+
"event": "NotificationLoaded",
|
|
58
|
+
"description": "Fired when Notification finishes loading",
|
|
59
|
+
"scope": "internal",
|
|
60
|
+
"payload": [
|
|
61
|
+
{
|
|
62
|
+
"name": "id",
|
|
63
|
+
"type": "string"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "name",
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "description",
|
|
71
|
+
"type": "string"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "status",
|
|
75
|
+
"type": "string"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "createdAt",
|
|
79
|
+
"type": "string"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "message",
|
|
83
|
+
"type": "string"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "notificationType",
|
|
87
|
+
"type": "string"
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"event": "NotificationLoadFailed",
|
|
93
|
+
"description": "Fired when Notification fails to load",
|
|
94
|
+
"scope": "internal",
|
|
95
|
+
"payload": [
|
|
96
|
+
{
|
|
97
|
+
"name": "message",
|
|
98
|
+
"type": "string"
|
|
99
|
+
}
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
],
|
|
66
103
|
"stateMachine": {
|
|
67
104
|
"states": [
|
|
68
105
|
{
|
|
@@ -80,7 +117,7 @@
|
|
|
80
117
|
},
|
|
81
118
|
{
|
|
82
119
|
"key": "SHOW",
|
|
83
|
-
"name": "Show
|
|
120
|
+
"name": "Show",
|
|
84
121
|
"payload": [
|
|
85
122
|
{
|
|
86
123
|
"name": "message",
|
|
@@ -95,7 +132,21 @@
|
|
|
95
132
|
},
|
|
96
133
|
{
|
|
97
134
|
"key": "HIDE",
|
|
98
|
-
"name": "Hide
|
|
135
|
+
"name": "Hide"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"key": "NotificationLoaded",
|
|
139
|
+
"name": "Notification loaded"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"key": "NotificationLoadFailed",
|
|
143
|
+
"name": "Notification load failed",
|
|
144
|
+
"payload": [
|
|
145
|
+
{
|
|
146
|
+
"name": "message",
|
|
147
|
+
"type": "string"
|
|
148
|
+
}
|
|
149
|
+
]
|
|
99
150
|
}
|
|
100
151
|
],
|
|
101
152
|
"transitions": [
|
|
@@ -106,20 +157,26 @@
|
|
|
106
157
|
"effects": [
|
|
107
158
|
[
|
|
108
159
|
"fetch",
|
|
109
|
-
"Notification"
|
|
160
|
+
"Notification",
|
|
161
|
+
{
|
|
162
|
+
"emit": {
|
|
163
|
+
"success": "NotificationLoaded",
|
|
164
|
+
"failure": "NotificationLoadFailed"
|
|
165
|
+
}
|
|
166
|
+
}
|
|
110
167
|
],
|
|
111
168
|
[
|
|
112
169
|
"render-ui",
|
|
113
170
|
"main",
|
|
114
171
|
{
|
|
115
172
|
"type": "stack",
|
|
116
|
-
"direction": "vertical",
|
|
117
173
|
"gap": "lg",
|
|
174
|
+
"direction": "vertical",
|
|
118
175
|
"children": [
|
|
119
176
|
{
|
|
120
|
-
"type": "stack",
|
|
121
177
|
"direction": "horizontal",
|
|
122
178
|
"gap": "md",
|
|
179
|
+
"type": "stack",
|
|
123
180
|
"align": "center",
|
|
124
181
|
"children": [
|
|
125
182
|
{
|
|
@@ -128,8 +185,8 @@
|
|
|
128
185
|
"size": "lg"
|
|
129
186
|
},
|
|
130
187
|
{
|
|
131
|
-
"type": "typography",
|
|
132
188
|
"content": "Notifications",
|
|
189
|
+
"type": "typography",
|
|
133
190
|
"variant": "h2"
|
|
134
191
|
}
|
|
135
192
|
]
|
|
@@ -138,21 +195,21 @@
|
|
|
138
195
|
"type": "divider"
|
|
139
196
|
},
|
|
140
197
|
{
|
|
198
|
+
"title": "No notifications",
|
|
141
199
|
"type": "empty-state",
|
|
142
200
|
"icon": "bell-off",
|
|
143
|
-
"title": "No notifications",
|
|
144
201
|
"description": "New notifications will appear here."
|
|
145
202
|
},
|
|
146
203
|
{
|
|
147
|
-
"type": "button",
|
|
148
204
|
"label": "Test Notification",
|
|
149
|
-
"event": "SHOW",
|
|
150
205
|
"variant": "secondary",
|
|
206
|
+
"type": "button",
|
|
151
207
|
"icon": "bell",
|
|
152
208
|
"actionPayload": {
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
}
|
|
209
|
+
"notificationType": "info",
|
|
210
|
+
"message": "This is a test notification"
|
|
211
|
+
},
|
|
212
|
+
"event": "SHOW"
|
|
156
213
|
}
|
|
157
214
|
]
|
|
158
215
|
}
|
|
@@ -178,41 +235,39 @@
|
|
|
178
235
|
"render-ui",
|
|
179
236
|
"main",
|
|
180
237
|
{
|
|
181
|
-
"type": "stack",
|
|
182
238
|
"direction": "vertical",
|
|
183
|
-
"gap": "lg",
|
|
184
239
|
"children": [
|
|
185
240
|
{
|
|
186
|
-
"type": "stack",
|
|
187
|
-
"direction": "horizontal",
|
|
188
241
|
"gap": "md",
|
|
242
|
+
"direction": "horizontal",
|
|
243
|
+
"type": "stack",
|
|
189
244
|
"justify": "space-between",
|
|
190
245
|
"align": "center",
|
|
191
246
|
"children": [
|
|
192
247
|
{
|
|
193
|
-
"type": "stack",
|
|
194
248
|
"direction": "horizontal",
|
|
195
|
-
"
|
|
249
|
+
"type": "stack",
|
|
196
250
|
"align": "center",
|
|
197
251
|
"children": [
|
|
198
252
|
{
|
|
199
253
|
"type": "icon",
|
|
200
|
-
"
|
|
201
|
-
"
|
|
254
|
+
"size": "lg",
|
|
255
|
+
"name": "bell"
|
|
202
256
|
},
|
|
203
257
|
{
|
|
258
|
+
"variant": "h2",
|
|
204
259
|
"type": "typography",
|
|
205
|
-
"content": "Notifications"
|
|
206
|
-
"variant": "h2"
|
|
260
|
+
"content": "Notifications"
|
|
207
261
|
}
|
|
208
|
-
]
|
|
262
|
+
],
|
|
263
|
+
"gap": "md"
|
|
209
264
|
},
|
|
210
265
|
{
|
|
211
|
-
"type": "button",
|
|
212
|
-
"label": "Dismiss",
|
|
213
266
|
"event": "HIDE",
|
|
267
|
+
"label": "Dismiss",
|
|
214
268
|
"variant": "ghost",
|
|
215
|
-
"icon": "x"
|
|
269
|
+
"icon": "x",
|
|
270
|
+
"type": "button"
|
|
216
271
|
}
|
|
217
272
|
]
|
|
218
273
|
},
|
|
@@ -221,21 +276,21 @@
|
|
|
221
276
|
},
|
|
222
277
|
{
|
|
223
278
|
"type": "alert",
|
|
224
|
-
"
|
|
279
|
+
"message": [
|
|
225
280
|
"object/get",
|
|
226
281
|
[
|
|
227
282
|
"array/first",
|
|
228
283
|
"@entity"
|
|
229
284
|
],
|
|
230
|
-
"
|
|
285
|
+
"message"
|
|
231
286
|
],
|
|
232
|
-
"
|
|
287
|
+
"variant": [
|
|
233
288
|
"object/get",
|
|
234
289
|
[
|
|
235
290
|
"array/first",
|
|
236
291
|
"@entity"
|
|
237
292
|
],
|
|
238
|
-
"
|
|
293
|
+
"notificationType"
|
|
239
294
|
]
|
|
240
295
|
},
|
|
241
296
|
{
|
|
@@ -243,8 +298,6 @@
|
|
|
243
298
|
"position": "top-right"
|
|
244
299
|
},
|
|
245
300
|
{
|
|
246
|
-
"type": "violation-alert",
|
|
247
|
-
"severity": "warning",
|
|
248
301
|
"message": [
|
|
249
302
|
"object/get",
|
|
250
303
|
[
|
|
@@ -253,9 +306,13 @@
|
|
|
253
306
|
],
|
|
254
307
|
"message"
|
|
255
308
|
],
|
|
256
|
-
"category": "compliance"
|
|
309
|
+
"category": "compliance",
|
|
310
|
+
"type": "violation-alert",
|
|
311
|
+
"severity": "warning"
|
|
257
312
|
}
|
|
258
|
-
]
|
|
313
|
+
],
|
|
314
|
+
"type": "stack",
|
|
315
|
+
"gap": "lg"
|
|
259
316
|
}
|
|
260
317
|
]
|
|
261
318
|
]
|
|
@@ -284,17 +341,13 @@
|
|
|
284
341
|
"gap": "lg",
|
|
285
342
|
"children": [
|
|
286
343
|
{
|
|
287
|
-
"type": "stack",
|
|
288
|
-
"direction": "horizontal",
|
|
289
|
-
"gap": "md",
|
|
290
|
-
"justify": "space-between",
|
|
291
344
|
"align": "center",
|
|
345
|
+
"justify": "space-between",
|
|
346
|
+
"gap": "md",
|
|
292
347
|
"children": [
|
|
293
348
|
{
|
|
294
349
|
"type": "stack",
|
|
295
350
|
"direction": "horizontal",
|
|
296
|
-
"gap": "md",
|
|
297
|
-
"align": "center",
|
|
298
351
|
"children": [
|
|
299
352
|
{
|
|
300
353
|
"type": "icon",
|
|
@@ -302,26 +355,29 @@
|
|
|
302
355
|
"size": "lg"
|
|
303
356
|
},
|
|
304
357
|
{
|
|
358
|
+
"variant": "h2",
|
|
305
359
|
"type": "typography",
|
|
306
|
-
"content": "Notifications"
|
|
307
|
-
"variant": "h2"
|
|
360
|
+
"content": "Notifications"
|
|
308
361
|
}
|
|
309
|
-
]
|
|
362
|
+
],
|
|
363
|
+
"gap": "md",
|
|
364
|
+
"align": "center"
|
|
310
365
|
},
|
|
311
366
|
{
|
|
312
|
-
"type": "button",
|
|
313
367
|
"label": "Dismiss",
|
|
314
|
-
"event": "HIDE",
|
|
315
368
|
"variant": "ghost",
|
|
369
|
+
"event": "HIDE",
|
|
370
|
+
"type": "button",
|
|
316
371
|
"icon": "x"
|
|
317
372
|
}
|
|
318
|
-
]
|
|
373
|
+
],
|
|
374
|
+
"type": "stack",
|
|
375
|
+
"direction": "horizontal"
|
|
319
376
|
},
|
|
320
377
|
{
|
|
321
378
|
"type": "divider"
|
|
322
379
|
},
|
|
323
380
|
{
|
|
324
|
-
"type": "alert",
|
|
325
381
|
"variant": [
|
|
326
382
|
"object/get",
|
|
327
383
|
[
|
|
@@ -337,7 +393,8 @@
|
|
|
337
393
|
"@entity"
|
|
338
394
|
],
|
|
339
395
|
"message"
|
|
340
|
-
]
|
|
396
|
+
],
|
|
397
|
+
"type": "alert"
|
|
341
398
|
},
|
|
342
399
|
{
|
|
343
400
|
"type": "toast-slot",
|
|
@@ -345,7 +402,6 @@
|
|
|
345
402
|
},
|
|
346
403
|
{
|
|
347
404
|
"type": "violation-alert",
|
|
348
|
-
"severity": "warning",
|
|
349
405
|
"message": [
|
|
350
406
|
"object/get",
|
|
351
407
|
[
|
|
@@ -354,6 +410,7 @@
|
|
|
354
410
|
],
|
|
355
411
|
"message"
|
|
356
412
|
],
|
|
413
|
+
"severity": "warning",
|
|
357
414
|
"category": "compliance"
|
|
358
415
|
}
|
|
359
416
|
]
|
|
@@ -375,27 +432,25 @@
|
|
|
375
432
|
"render-ui",
|
|
376
433
|
"main",
|
|
377
434
|
{
|
|
378
|
-
"type": "stack",
|
|
379
|
-
"direction": "vertical",
|
|
380
435
|
"gap": "lg",
|
|
381
436
|
"children": [
|
|
382
437
|
{
|
|
383
|
-
"type": "stack",
|
|
384
438
|
"direction": "horizontal",
|
|
385
439
|
"gap": "md",
|
|
386
|
-
"align": "center",
|
|
387
440
|
"children": [
|
|
388
441
|
{
|
|
389
|
-
"type": "icon",
|
|
390
442
|
"name": "bell",
|
|
443
|
+
"type": "icon",
|
|
391
444
|
"size": "lg"
|
|
392
445
|
},
|
|
393
446
|
{
|
|
447
|
+
"variant": "h2",
|
|
394
448
|
"type": "typography",
|
|
395
|
-
"content": "Notifications"
|
|
396
|
-
"variant": "h2"
|
|
449
|
+
"content": "Notifications"
|
|
397
450
|
}
|
|
398
|
-
]
|
|
451
|
+
],
|
|
452
|
+
"align": "center",
|
|
453
|
+
"type": "stack"
|
|
399
454
|
},
|
|
400
455
|
{
|
|
401
456
|
"type": "divider"
|
|
@@ -407,23 +462,26 @@
|
|
|
407
462
|
"description": "New notifications will appear here."
|
|
408
463
|
},
|
|
409
464
|
{
|
|
410
|
-
"type": "button",
|
|
411
465
|
"label": "Test Notification",
|
|
412
466
|
"event": "SHOW",
|
|
413
467
|
"variant": "secondary",
|
|
468
|
+
"type": "button",
|
|
414
469
|
"icon": "bell",
|
|
415
470
|
"actionPayload": {
|
|
416
|
-
"
|
|
417
|
-
"
|
|
471
|
+
"notificationType": "info",
|
|
472
|
+
"message": "This is a test notification"
|
|
418
473
|
}
|
|
419
474
|
}
|
|
420
|
-
]
|
|
475
|
+
],
|
|
476
|
+
"type": "stack",
|
|
477
|
+
"direction": "vertical"
|
|
421
478
|
}
|
|
422
479
|
]
|
|
423
480
|
]
|
|
424
481
|
}
|
|
425
482
|
]
|
|
426
|
-
}
|
|
483
|
+
},
|
|
484
|
+
"scope": "instance"
|
|
427
485
|
}
|
|
428
486
|
],
|
|
429
487
|
"pages": [
|
|
@@ -439,4 +497,4 @@
|
|
|
439
497
|
]
|
|
440
498
|
}
|
|
441
499
|
]
|
|
442
|
-
}
|
|
500
|
+
}
|