@almadar/std 7.0.0 → 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 +501 -224
- 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 +232 -135
- 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 +26 -373
- 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 +309 -325
- 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 +29 -331
- 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 +170 -35
- 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 +164 -29
- 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 +263 -137
- 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 +326 -462
- 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 +132 -137
- package/behaviors/registry/molecules/std-drawer-master-list.orb +10 -5
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +12 -7
- 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 +58 -8
- 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 +501 -224
- 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 +232 -135
- 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 +26 -373
- 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 +309 -325
- 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 +29 -331
- 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 +170 -35
- 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 +164 -29
- 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 +263 -137
- 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 +326 -462
- 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 +132 -137
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +10 -5
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +12 -7
- 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 +58 -8
- 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 +1 -1
|
@@ -45,56 +45,8 @@
|
|
|
45
45
|
"traits": [
|
|
46
46
|
{
|
|
47
47
|
"name": "ConfirmActionConfirmation",
|
|
48
|
-
"linkedEntity": "ConfirmAction",
|
|
49
48
|
"category": "interaction",
|
|
50
|
-
"
|
|
51
|
-
{
|
|
52
|
-
"event": "CONFIRM",
|
|
53
|
-
"scope": "external"
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"event": "ConfirmActionLoaded",
|
|
57
|
-
"scope": "internal",
|
|
58
|
-
"description": "Fired when ConfirmAction finishes loading",
|
|
59
|
-
"payload": [
|
|
60
|
-
{
|
|
61
|
-
"name": "id",
|
|
62
|
-
"type": "string"
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
"name": "name",
|
|
66
|
-
"type": "string"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"name": "description",
|
|
70
|
-
"type": "string"
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"name": "status",
|
|
74
|
-
"type": "string"
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
"name": "createdAt",
|
|
78
|
-
"type": "string"
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"name": "pendingId",
|
|
82
|
-
"type": "string"
|
|
83
|
-
}
|
|
84
|
-
]
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"event": "ConfirmActionLoadFailed",
|
|
88
|
-
"scope": "internal",
|
|
89
|
-
"description": "Fired when ConfirmAction fails to load",
|
|
90
|
-
"payload": [
|
|
91
|
-
{
|
|
92
|
-
"name": "message",
|
|
93
|
-
"type": "string"
|
|
94
|
-
}
|
|
95
|
-
]
|
|
96
|
-
}
|
|
97
|
-
],
|
|
49
|
+
"linkedEntity": "ConfirmAction",
|
|
98
50
|
"stateMachine": {
|
|
99
51
|
"states": [
|
|
100
52
|
{
|
|
@@ -112,7 +64,7 @@
|
|
|
112
64
|
},
|
|
113
65
|
{
|
|
114
66
|
"key": "REQUEST",
|
|
115
|
-
"name": "Request
|
|
67
|
+
"name": "Request",
|
|
116
68
|
"payload": [
|
|
117
69
|
{
|
|
118
70
|
"name": "id",
|
|
@@ -132,14 +84,6 @@
|
|
|
132
84
|
{
|
|
133
85
|
"key": "CLOSE",
|
|
134
86
|
"name": "Close"
|
|
135
|
-
},
|
|
136
|
-
{
|
|
137
|
-
"key": "ConfirmActionLoaded",
|
|
138
|
-
"name": "ConfirmAction loaded"
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"key": "ConfirmActionLoadFailed",
|
|
142
|
-
"name": "ConfirmAction load failed"
|
|
143
87
|
}
|
|
144
88
|
],
|
|
145
89
|
"transitions": [
|
|
@@ -150,75 +94,7 @@
|
|
|
150
94
|
"effects": [
|
|
151
95
|
[
|
|
152
96
|
"fetch",
|
|
153
|
-
"ConfirmAction"
|
|
154
|
-
{
|
|
155
|
-
"emit": {
|
|
156
|
-
"success": "ConfirmActionLoaded",
|
|
157
|
-
"failure": "ConfirmActionLoadFailed"
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
],
|
|
161
|
-
[
|
|
162
|
-
"render-ui",
|
|
163
|
-
"main",
|
|
164
|
-
{
|
|
165
|
-
"type": "stack",
|
|
166
|
-
"direction": "vertical",
|
|
167
|
-
"gap": "lg",
|
|
168
|
-
"children": [
|
|
169
|
-
{
|
|
170
|
-
"type": "stack",
|
|
171
|
-
"direction": "horizontal",
|
|
172
|
-
"gap": "md",
|
|
173
|
-
"align": "center",
|
|
174
|
-
"children": [
|
|
175
|
-
{
|
|
176
|
-
"type": "icon",
|
|
177
|
-
"name": "shield-check",
|
|
178
|
-
"size": "lg"
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
"type": "typography",
|
|
182
|
-
"content": "ConfirmActions",
|
|
183
|
-
"variant": "h2"
|
|
184
|
-
}
|
|
185
|
-
]
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
"type": "divider"
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"type": "data-grid",
|
|
192
|
-
"entity": "ConfirmAction",
|
|
193
|
-
"emptyIcon": "inbox",
|
|
194
|
-
"emptyTitle": "No confirmactions yet",
|
|
195
|
-
"emptyDescription": "Items will appear here.",
|
|
196
|
-
"itemActions": [
|
|
197
|
-
{
|
|
198
|
-
"label": "Confirm Action",
|
|
199
|
-
"event": "REQUEST",
|
|
200
|
-
"variant": "danger"
|
|
201
|
-
}
|
|
202
|
-
],
|
|
203
|
-
"renderItem": [
|
|
204
|
-
"fn",
|
|
205
|
-
"item",
|
|
206
|
-
{
|
|
207
|
-
"type": "stack",
|
|
208
|
-
"direction": "vertical",
|
|
209
|
-
"gap": "sm",
|
|
210
|
-
"children": [
|
|
211
|
-
{
|
|
212
|
-
"type": "typography",
|
|
213
|
-
"variant": "h4",
|
|
214
|
-
"content": "@item.name"
|
|
215
|
-
}
|
|
216
|
-
]
|
|
217
|
-
}
|
|
218
|
-
]
|
|
219
|
-
}
|
|
220
|
-
]
|
|
221
|
-
}
|
|
97
|
+
"ConfirmAction"
|
|
222
98
|
]
|
|
223
99
|
]
|
|
224
100
|
},
|
|
@@ -232,69 +108,62 @@
|
|
|
232
108
|
"@entity.pendingId",
|
|
233
109
|
"@payload.id"
|
|
234
110
|
],
|
|
235
|
-
[
|
|
236
|
-
"fetch",
|
|
237
|
-
"ConfirmAction",
|
|
238
|
-
{
|
|
239
|
-
"id": "@payload.id"
|
|
240
|
-
}
|
|
241
|
-
],
|
|
242
111
|
[
|
|
243
112
|
"render-ui",
|
|
244
113
|
"modal",
|
|
245
114
|
{
|
|
246
|
-
"type": "stack",
|
|
247
|
-
"direction": "vertical",
|
|
248
|
-
"gap": "md",
|
|
249
115
|
"children": [
|
|
250
116
|
{
|
|
251
|
-
"type": "stack",
|
|
252
|
-
"direction": "horizontal",
|
|
253
117
|
"gap": "sm",
|
|
254
|
-
"align": "center",
|
|
255
118
|
"children": [
|
|
256
119
|
{
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
120
|
+
"name": "@config.icon",
|
|
121
|
+
"size": "md",
|
|
122
|
+
"type": "icon"
|
|
260
123
|
},
|
|
261
124
|
{
|
|
262
125
|
"type": "typography",
|
|
263
|
-
"content": "
|
|
126
|
+
"content": "@config.title",
|
|
264
127
|
"variant": "h3"
|
|
265
128
|
}
|
|
266
|
-
]
|
|
129
|
+
],
|
|
130
|
+
"type": "stack",
|
|
131
|
+
"direction": "horizontal",
|
|
132
|
+
"align": "center"
|
|
267
133
|
},
|
|
268
134
|
{
|
|
269
135
|
"type": "divider"
|
|
270
136
|
},
|
|
271
137
|
{
|
|
272
138
|
"type": "alert",
|
|
273
|
-
"
|
|
274
|
-
"
|
|
139
|
+
"message": "@config.alertMessage",
|
|
140
|
+
"variant": "danger"
|
|
275
141
|
},
|
|
276
142
|
{
|
|
277
|
-
"type": "stack",
|
|
278
143
|
"direction": "horizontal",
|
|
279
|
-
"gap": "sm",
|
|
280
|
-
"justify": "end",
|
|
281
144
|
"children": [
|
|
282
145
|
{
|
|
283
146
|
"type": "button",
|
|
284
|
-
"label": "Cancel",
|
|
285
147
|
"event": "CANCEL",
|
|
148
|
+
"label": "Cancel",
|
|
286
149
|
"variant": "ghost"
|
|
287
150
|
},
|
|
288
151
|
{
|
|
152
|
+
"icon": "check",
|
|
289
153
|
"type": "button",
|
|
290
|
-
"label": "Confirm",
|
|
291
|
-
"event": "CONFIRM",
|
|
292
154
|
"variant": "danger",
|
|
293
|
-
"
|
|
155
|
+
"event": "CONFIRM",
|
|
156
|
+
"label": "@config.confirmLabel"
|
|
294
157
|
}
|
|
295
|
-
]
|
|
158
|
+
],
|
|
159
|
+
"justify": "end",
|
|
160
|
+
"type": "stack",
|
|
161
|
+
"gap": "sm"
|
|
296
162
|
}
|
|
297
|
-
]
|
|
163
|
+
],
|
|
164
|
+
"type": "stack",
|
|
165
|
+
"direction": "vertical",
|
|
166
|
+
"gap": "md"
|
|
298
167
|
}
|
|
299
168
|
]
|
|
300
169
|
]
|
|
@@ -308,78 +177,6 @@
|
|
|
308
177
|
"render-ui",
|
|
309
178
|
"modal",
|
|
310
179
|
null
|
|
311
|
-
],
|
|
312
|
-
[
|
|
313
|
-
"fetch",
|
|
314
|
-
"ConfirmAction",
|
|
315
|
-
{
|
|
316
|
-
"emit": {
|
|
317
|
-
"success": "ConfirmActionLoaded",
|
|
318
|
-
"failure": "ConfirmActionLoadFailed"
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
],
|
|
322
|
-
[
|
|
323
|
-
"render-ui",
|
|
324
|
-
"main",
|
|
325
|
-
{
|
|
326
|
-
"type": "stack",
|
|
327
|
-
"direction": "vertical",
|
|
328
|
-
"gap": "lg",
|
|
329
|
-
"children": [
|
|
330
|
-
{
|
|
331
|
-
"type": "stack",
|
|
332
|
-
"direction": "horizontal",
|
|
333
|
-
"gap": "md",
|
|
334
|
-
"align": "center",
|
|
335
|
-
"children": [
|
|
336
|
-
{
|
|
337
|
-
"type": "icon",
|
|
338
|
-
"name": "shield-check",
|
|
339
|
-
"size": "lg"
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
"type": "typography",
|
|
343
|
-
"content": "ConfirmActions",
|
|
344
|
-
"variant": "h2"
|
|
345
|
-
}
|
|
346
|
-
]
|
|
347
|
-
},
|
|
348
|
-
{
|
|
349
|
-
"type": "divider"
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
"type": "data-grid",
|
|
353
|
-
"entity": "ConfirmAction",
|
|
354
|
-
"emptyIcon": "inbox",
|
|
355
|
-
"emptyTitle": "No confirmactions yet",
|
|
356
|
-
"emptyDescription": "Items will appear here.",
|
|
357
|
-
"itemActions": [
|
|
358
|
-
{
|
|
359
|
-
"label": "Confirm Action",
|
|
360
|
-
"event": "REQUEST",
|
|
361
|
-
"variant": "danger"
|
|
362
|
-
}
|
|
363
|
-
],
|
|
364
|
-
"renderItem": [
|
|
365
|
-
"fn",
|
|
366
|
-
"item",
|
|
367
|
-
{
|
|
368
|
-
"type": "stack",
|
|
369
|
-
"direction": "vertical",
|
|
370
|
-
"gap": "sm",
|
|
371
|
-
"children": [
|
|
372
|
-
{
|
|
373
|
-
"type": "typography",
|
|
374
|
-
"variant": "h4",
|
|
375
|
-
"content": "@item.name"
|
|
376
|
-
}
|
|
377
|
-
]
|
|
378
|
-
}
|
|
379
|
-
]
|
|
380
|
-
}
|
|
381
|
-
]
|
|
382
|
-
}
|
|
383
180
|
]
|
|
384
181
|
]
|
|
385
182
|
},
|
|
@@ -392,78 +189,6 @@
|
|
|
392
189
|
"render-ui",
|
|
393
190
|
"modal",
|
|
394
191
|
null
|
|
395
|
-
],
|
|
396
|
-
[
|
|
397
|
-
"fetch",
|
|
398
|
-
"ConfirmAction",
|
|
399
|
-
{
|
|
400
|
-
"emit": {
|
|
401
|
-
"success": "ConfirmActionLoaded",
|
|
402
|
-
"failure": "ConfirmActionLoadFailed"
|
|
403
|
-
}
|
|
404
|
-
}
|
|
405
|
-
],
|
|
406
|
-
[
|
|
407
|
-
"render-ui",
|
|
408
|
-
"main",
|
|
409
|
-
{
|
|
410
|
-
"type": "stack",
|
|
411
|
-
"direction": "vertical",
|
|
412
|
-
"gap": "lg",
|
|
413
|
-
"children": [
|
|
414
|
-
{
|
|
415
|
-
"type": "stack",
|
|
416
|
-
"direction": "horizontal",
|
|
417
|
-
"gap": "md",
|
|
418
|
-
"align": "center",
|
|
419
|
-
"children": [
|
|
420
|
-
{
|
|
421
|
-
"type": "icon",
|
|
422
|
-
"name": "shield-check",
|
|
423
|
-
"size": "lg"
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
"type": "typography",
|
|
427
|
-
"content": "ConfirmActions",
|
|
428
|
-
"variant": "h2"
|
|
429
|
-
}
|
|
430
|
-
]
|
|
431
|
-
},
|
|
432
|
-
{
|
|
433
|
-
"type": "divider"
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
"type": "data-grid",
|
|
437
|
-
"entity": "ConfirmAction",
|
|
438
|
-
"emptyIcon": "inbox",
|
|
439
|
-
"emptyTitle": "No confirmactions yet",
|
|
440
|
-
"emptyDescription": "Items will appear here.",
|
|
441
|
-
"itemActions": [
|
|
442
|
-
{
|
|
443
|
-
"label": "Confirm Action",
|
|
444
|
-
"event": "REQUEST",
|
|
445
|
-
"variant": "danger"
|
|
446
|
-
}
|
|
447
|
-
],
|
|
448
|
-
"renderItem": [
|
|
449
|
-
"fn",
|
|
450
|
-
"item",
|
|
451
|
-
{
|
|
452
|
-
"type": "stack",
|
|
453
|
-
"direction": "vertical",
|
|
454
|
-
"gap": "sm",
|
|
455
|
-
"children": [
|
|
456
|
-
{
|
|
457
|
-
"type": "typography",
|
|
458
|
-
"variant": "h4",
|
|
459
|
-
"content": "@item.name"
|
|
460
|
-
}
|
|
461
|
-
]
|
|
462
|
-
}
|
|
463
|
-
]
|
|
464
|
-
}
|
|
465
|
-
]
|
|
466
|
-
}
|
|
467
192
|
]
|
|
468
193
|
]
|
|
469
194
|
},
|
|
@@ -476,78 +201,6 @@
|
|
|
476
201
|
"render-ui",
|
|
477
202
|
"modal",
|
|
478
203
|
null
|
|
479
|
-
],
|
|
480
|
-
[
|
|
481
|
-
"fetch",
|
|
482
|
-
"ConfirmAction",
|
|
483
|
-
{
|
|
484
|
-
"emit": {
|
|
485
|
-
"success": "ConfirmActionLoaded",
|
|
486
|
-
"failure": "ConfirmActionLoadFailed"
|
|
487
|
-
}
|
|
488
|
-
}
|
|
489
|
-
],
|
|
490
|
-
[
|
|
491
|
-
"render-ui",
|
|
492
|
-
"main",
|
|
493
|
-
{
|
|
494
|
-
"type": "stack",
|
|
495
|
-
"direction": "vertical",
|
|
496
|
-
"gap": "lg",
|
|
497
|
-
"children": [
|
|
498
|
-
{
|
|
499
|
-
"type": "stack",
|
|
500
|
-
"direction": "horizontal",
|
|
501
|
-
"gap": "md",
|
|
502
|
-
"align": "center",
|
|
503
|
-
"children": [
|
|
504
|
-
{
|
|
505
|
-
"type": "icon",
|
|
506
|
-
"name": "shield-check",
|
|
507
|
-
"size": "lg"
|
|
508
|
-
},
|
|
509
|
-
{
|
|
510
|
-
"type": "typography",
|
|
511
|
-
"content": "ConfirmActions",
|
|
512
|
-
"variant": "h2"
|
|
513
|
-
}
|
|
514
|
-
]
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
"type": "divider"
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
"type": "data-grid",
|
|
521
|
-
"entity": "ConfirmAction",
|
|
522
|
-
"emptyIcon": "inbox",
|
|
523
|
-
"emptyTitle": "No confirmactions yet",
|
|
524
|
-
"emptyDescription": "Items will appear here.",
|
|
525
|
-
"itemActions": [
|
|
526
|
-
{
|
|
527
|
-
"label": "Confirm Action",
|
|
528
|
-
"event": "REQUEST",
|
|
529
|
-
"variant": "danger"
|
|
530
|
-
}
|
|
531
|
-
],
|
|
532
|
-
"renderItem": [
|
|
533
|
-
"fn",
|
|
534
|
-
"item",
|
|
535
|
-
{
|
|
536
|
-
"type": "stack",
|
|
537
|
-
"direction": "vertical",
|
|
538
|
-
"gap": "sm",
|
|
539
|
-
"children": [
|
|
540
|
-
{
|
|
541
|
-
"type": "typography",
|
|
542
|
-
"variant": "h4",
|
|
543
|
-
"content": "@item.name"
|
|
544
|
-
}
|
|
545
|
-
]
|
|
546
|
-
}
|
|
547
|
-
]
|
|
548
|
-
}
|
|
549
|
-
]
|
|
550
|
-
}
|
|
551
204
|
]
|
|
552
205
|
]
|
|
553
206
|
}
|
|
@@ -569,4 +222,4 @@
|
|
|
569
222
|
]
|
|
570
223
|
}
|
|
571
224
|
]
|
|
572
|
-
}
|
|
225
|
+
}
|