@almadar/std 6.5.2 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-service-email",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-service-email as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ServiceEmailOrbital",
|
|
@@ -69,8 +69,76 @@
|
|
|
69
69
|
"traits": [
|
|
70
70
|
{
|
|
71
71
|
"name": "ServiceEmailEmail",
|
|
72
|
-
"linkedEntity": "ServiceEmail",
|
|
73
72
|
"category": "interaction",
|
|
73
|
+
"linkedEntity": "ServiceEmail",
|
|
74
|
+
"emits": [
|
|
75
|
+
{
|
|
76
|
+
"event": "ServiceEmailLoaded",
|
|
77
|
+
"description": "Fired when ServiceEmail finishes loading",
|
|
78
|
+
"scope": "internal",
|
|
79
|
+
"payload": [
|
|
80
|
+
{
|
|
81
|
+
"name": "id",
|
|
82
|
+
"type": "string"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "name",
|
|
86
|
+
"type": "string"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "description",
|
|
90
|
+
"type": "string"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "status",
|
|
94
|
+
"type": "string"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "createdAt",
|
|
98
|
+
"type": "string"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"name": "to",
|
|
102
|
+
"type": "string"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "subject",
|
|
106
|
+
"type": "string"
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "body",
|
|
110
|
+
"type": "string"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"name": "from",
|
|
114
|
+
"type": "string"
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "sendStatus",
|
|
118
|
+
"type": "string"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "messageId",
|
|
122
|
+
"type": "string"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "error",
|
|
126
|
+
"type": "string"
|
|
127
|
+
}
|
|
128
|
+
]
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"event": "ServiceEmailLoadFailed",
|
|
132
|
+
"description": "Fired when ServiceEmail fails to load",
|
|
133
|
+
"scope": "internal",
|
|
134
|
+
"payload": [
|
|
135
|
+
{
|
|
136
|
+
"name": "message",
|
|
137
|
+
"type": "string"
|
|
138
|
+
}
|
|
139
|
+
]
|
|
140
|
+
}
|
|
141
|
+
],
|
|
74
142
|
"stateMachine": {
|
|
75
143
|
"states": [
|
|
76
144
|
{
|
|
@@ -94,22 +162,21 @@
|
|
|
94
162
|
},
|
|
95
163
|
{
|
|
96
164
|
"key": "SEND",
|
|
97
|
-
"name": "Send
|
|
165
|
+
"name": "Send"
|
|
98
166
|
},
|
|
99
167
|
{
|
|
100
168
|
"key": "SENT",
|
|
101
|
-
"name": "
|
|
169
|
+
"name": "Sent",
|
|
102
170
|
"payload": [
|
|
103
171
|
{
|
|
104
172
|
"name": "messageId",
|
|
105
|
-
"type": "string"
|
|
106
|
-
"required": false
|
|
173
|
+
"type": "string"
|
|
107
174
|
}
|
|
108
175
|
]
|
|
109
176
|
},
|
|
110
177
|
{
|
|
111
178
|
"key": "FAILED",
|
|
112
|
-
"name": "
|
|
179
|
+
"name": "Failed",
|
|
113
180
|
"payload": [
|
|
114
181
|
{
|
|
115
182
|
"name": "error",
|
|
@@ -118,13 +185,27 @@
|
|
|
118
185
|
}
|
|
119
186
|
]
|
|
120
187
|
},
|
|
188
|
+
{
|
|
189
|
+
"key": "RESET",
|
|
190
|
+
"name": "Reset"
|
|
191
|
+
},
|
|
121
192
|
{
|
|
122
193
|
"key": "RETRY",
|
|
123
194
|
"name": "Retry"
|
|
124
195
|
},
|
|
125
196
|
{
|
|
126
|
-
"key": "
|
|
127
|
-
"name": "
|
|
197
|
+
"key": "ServiceEmailLoaded",
|
|
198
|
+
"name": "ServiceEmail loaded"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"key": "ServiceEmailLoadFailed",
|
|
202
|
+
"name": "ServiceEmail load failed",
|
|
203
|
+
"payload": [
|
|
204
|
+
{
|
|
205
|
+
"name": "message",
|
|
206
|
+
"type": "string"
|
|
207
|
+
}
|
|
208
|
+
]
|
|
128
209
|
}
|
|
129
210
|
],
|
|
130
211
|
"transitions": [
|
|
@@ -135,34 +216,40 @@
|
|
|
135
216
|
"effects": [
|
|
136
217
|
[
|
|
137
218
|
"fetch",
|
|
138
|
-
"ServiceEmail"
|
|
219
|
+
"ServiceEmail",
|
|
220
|
+
{
|
|
221
|
+
"emit": {
|
|
222
|
+
"success": "ServiceEmailLoaded",
|
|
223
|
+
"failure": "ServiceEmailLoadFailed"
|
|
224
|
+
}
|
|
225
|
+
}
|
|
139
226
|
],
|
|
140
227
|
[
|
|
141
228
|
"render-ui",
|
|
142
229
|
"main",
|
|
143
230
|
{
|
|
144
|
-
"type": "stack",
|
|
145
231
|
"direction": "vertical",
|
|
232
|
+
"type": "stack",
|
|
146
233
|
"gap": "lg",
|
|
147
234
|
"align": "stretch",
|
|
148
235
|
"children": [
|
|
149
236
|
{
|
|
150
|
-
"type": "stack",
|
|
151
237
|
"direction": "horizontal",
|
|
152
|
-
"
|
|
238
|
+
"type": "stack",
|
|
153
239
|
"align": "center",
|
|
154
240
|
"children": [
|
|
155
241
|
{
|
|
156
|
-
"type": "icon",
|
|
157
242
|
"name": "mail",
|
|
243
|
+
"type": "icon",
|
|
158
244
|
"size": "lg"
|
|
159
245
|
},
|
|
160
246
|
{
|
|
161
247
|
"type": "typography",
|
|
162
|
-
"
|
|
163
|
-
"
|
|
248
|
+
"variant": "h2",
|
|
249
|
+
"content": "ServiceEmail Email"
|
|
164
250
|
}
|
|
165
|
-
]
|
|
251
|
+
],
|
|
252
|
+
"gap": "md"
|
|
166
253
|
},
|
|
167
254
|
{
|
|
168
255
|
"type": "divider"
|
|
@@ -176,21 +263,21 @@
|
|
|
176
263
|
{
|
|
177
264
|
"type": "input",
|
|
178
265
|
"label": "Subject",
|
|
179
|
-
"
|
|
180
|
-
"
|
|
266
|
+
"placeholder": "Email subject",
|
|
267
|
+
"bind": "@entity.subject"
|
|
181
268
|
},
|
|
182
269
|
{
|
|
183
|
-
"type": "textarea",
|
|
184
270
|
"label": "Body",
|
|
185
271
|
"bind": "@entity.body",
|
|
186
|
-
"placeholder": "Write your message..."
|
|
272
|
+
"placeholder": "Write your message...",
|
|
273
|
+
"type": "textarea"
|
|
187
274
|
},
|
|
188
275
|
{
|
|
189
|
-
"type": "button",
|
|
190
276
|
"label": "Send",
|
|
277
|
+
"icon": "send",
|
|
191
278
|
"event": "SEND",
|
|
192
|
-
"
|
|
193
|
-
"
|
|
279
|
+
"type": "button",
|
|
280
|
+
"variant": "primary"
|
|
194
281
|
}
|
|
195
282
|
]
|
|
196
283
|
}
|
|
@@ -206,9 +293,9 @@
|
|
|
206
293
|
"render-ui",
|
|
207
294
|
"main",
|
|
208
295
|
{
|
|
209
|
-
"
|
|
296
|
+
"message": "Delivering serviceemail email...",
|
|
210
297
|
"title": "Sending email...",
|
|
211
|
-
"
|
|
298
|
+
"type": "loading-state"
|
|
212
299
|
}
|
|
213
300
|
],
|
|
214
301
|
[
|
|
@@ -238,8 +325,6 @@
|
|
|
238
325
|
"main",
|
|
239
326
|
{
|
|
240
327
|
"type": "stack",
|
|
241
|
-
"direction": "vertical",
|
|
242
|
-
"gap": "lg",
|
|
243
328
|
"align": "center",
|
|
244
329
|
"children": [
|
|
245
330
|
{
|
|
@@ -253,13 +338,15 @@
|
|
|
253
338
|
"message": "Email sent successfully"
|
|
254
339
|
},
|
|
255
340
|
{
|
|
341
|
+
"icon": "rotate-ccw",
|
|
256
342
|
"type": "button",
|
|
257
343
|
"label": "Send Another",
|
|
258
344
|
"event": "RESET",
|
|
259
|
-
"variant": "ghost"
|
|
260
|
-
"icon": "rotate-ccw"
|
|
345
|
+
"variant": "ghost"
|
|
261
346
|
}
|
|
262
|
-
]
|
|
347
|
+
],
|
|
348
|
+
"gap": "lg",
|
|
349
|
+
"direction": "vertical"
|
|
263
350
|
}
|
|
264
351
|
]
|
|
265
352
|
]
|
|
@@ -279,37 +366,37 @@
|
|
|
279
366
|
"main",
|
|
280
367
|
{
|
|
281
368
|
"type": "stack",
|
|
282
|
-
"direction": "vertical",
|
|
283
369
|
"gap": "lg",
|
|
370
|
+
"direction": "vertical",
|
|
284
371
|
"align": "center",
|
|
285
372
|
"children": [
|
|
286
373
|
{
|
|
287
374
|
"type": "error-state",
|
|
288
|
-
"title": "Send Failed",
|
|
289
375
|
"message": "Could not deliver the email.",
|
|
290
|
-
"onRetry": "RETRY"
|
|
376
|
+
"onRetry": "RETRY",
|
|
377
|
+
"title": "Send Failed"
|
|
291
378
|
},
|
|
292
379
|
{
|
|
380
|
+
"justify": "center",
|
|
293
381
|
"type": "stack",
|
|
294
382
|
"direction": "horizontal",
|
|
295
|
-
"gap": "sm",
|
|
296
|
-
"justify": "center",
|
|
297
383
|
"children": [
|
|
298
384
|
{
|
|
299
|
-
"type": "button",
|
|
300
385
|
"label": "Retry",
|
|
386
|
+
"type": "button",
|
|
387
|
+
"icon": "refresh-cw",
|
|
301
388
|
"event": "RETRY",
|
|
302
|
-
"variant": "primary"
|
|
303
|
-
"icon": "refresh-cw"
|
|
389
|
+
"variant": "primary"
|
|
304
390
|
},
|
|
305
391
|
{
|
|
306
|
-
"type": "button",
|
|
307
|
-
"label": "Reset",
|
|
308
392
|
"event": "RESET",
|
|
393
|
+
"label": "Reset",
|
|
309
394
|
"variant": "ghost",
|
|
310
|
-
"icon": "rotate-ccw"
|
|
395
|
+
"icon": "rotate-ccw",
|
|
396
|
+
"type": "button"
|
|
311
397
|
}
|
|
312
|
-
]
|
|
398
|
+
],
|
|
399
|
+
"gap": "sm"
|
|
313
400
|
}
|
|
314
401
|
]
|
|
315
402
|
}
|
|
@@ -317,23 +404,24 @@
|
|
|
317
404
|
]
|
|
318
405
|
},
|
|
319
406
|
{
|
|
320
|
-
"from": "
|
|
407
|
+
"from": "sent",
|
|
321
408
|
"to": "idle",
|
|
322
|
-
"event": "
|
|
409
|
+
"event": "RESET",
|
|
323
410
|
"effects": [
|
|
411
|
+
[
|
|
412
|
+
"set",
|
|
413
|
+
"@entity.sendStatus",
|
|
414
|
+
"idle"
|
|
415
|
+
],
|
|
324
416
|
[
|
|
325
417
|
"render-ui",
|
|
326
418
|
"main",
|
|
327
419
|
{
|
|
328
|
-
"type": "stack",
|
|
329
|
-
"direction": "vertical",
|
|
330
|
-
"gap": "lg",
|
|
331
|
-
"align": "stretch",
|
|
332
420
|
"children": [
|
|
333
421
|
{
|
|
334
422
|
"type": "stack",
|
|
335
|
-
"direction": "horizontal",
|
|
336
423
|
"gap": "md",
|
|
424
|
+
"direction": "horizontal",
|
|
337
425
|
"align": "center",
|
|
338
426
|
"children": [
|
|
339
427
|
{
|
|
@@ -353,100 +441,99 @@
|
|
|
353
441
|
},
|
|
354
442
|
{
|
|
355
443
|
"type": "input",
|
|
356
|
-
"label": "To",
|
|
357
444
|
"bind": "@entity.to",
|
|
445
|
+
"label": "To",
|
|
358
446
|
"placeholder": "recipient@example.com"
|
|
359
447
|
},
|
|
360
448
|
{
|
|
361
|
-
"
|
|
449
|
+
"placeholder": "Email subject",
|
|
362
450
|
"label": "Subject",
|
|
363
|
-
"
|
|
364
|
-
"
|
|
451
|
+
"type": "input",
|
|
452
|
+
"bind": "@entity.subject"
|
|
365
453
|
},
|
|
366
454
|
{
|
|
367
|
-
"type": "textarea",
|
|
368
|
-
"label": "Body",
|
|
369
455
|
"bind": "@entity.body",
|
|
370
|
-
"
|
|
456
|
+
"label": "Body",
|
|
457
|
+
"placeholder": "Write your message...",
|
|
458
|
+
"type": "textarea"
|
|
371
459
|
},
|
|
372
460
|
{
|
|
461
|
+
"variant": "primary",
|
|
462
|
+
"event": "SEND",
|
|
373
463
|
"type": "button",
|
|
374
464
|
"label": "Send",
|
|
375
|
-
"event": "SEND",
|
|
376
|
-
"variant": "primary",
|
|
377
465
|
"icon": "send"
|
|
378
466
|
}
|
|
379
|
-
]
|
|
467
|
+
],
|
|
468
|
+
"align": "stretch",
|
|
469
|
+
"type": "stack",
|
|
470
|
+
"direction": "vertical",
|
|
471
|
+
"gap": "lg"
|
|
380
472
|
}
|
|
381
473
|
]
|
|
382
474
|
]
|
|
383
475
|
},
|
|
384
476
|
{
|
|
385
|
-
"from": "
|
|
477
|
+
"from": "error",
|
|
386
478
|
"to": "idle",
|
|
387
|
-
"event": "
|
|
479
|
+
"event": "RETRY",
|
|
388
480
|
"effects": [
|
|
389
|
-
[
|
|
390
|
-
"set",
|
|
391
|
-
"@entity.sendStatus",
|
|
392
|
-
"idle"
|
|
393
|
-
],
|
|
394
481
|
[
|
|
395
482
|
"render-ui",
|
|
396
483
|
"main",
|
|
397
484
|
{
|
|
398
485
|
"type": "stack",
|
|
399
|
-
"direction": "vertical",
|
|
400
|
-
"gap": "lg",
|
|
401
486
|
"align": "stretch",
|
|
402
487
|
"children": [
|
|
403
488
|
{
|
|
404
489
|
"type": "stack",
|
|
405
|
-
"direction": "horizontal",
|
|
406
|
-
"gap": "md",
|
|
407
490
|
"align": "center",
|
|
408
491
|
"children": [
|
|
409
492
|
{
|
|
493
|
+
"size": "lg",
|
|
410
494
|
"type": "icon",
|
|
411
|
-
"name": "mail"
|
|
412
|
-
"size": "lg"
|
|
495
|
+
"name": "mail"
|
|
413
496
|
},
|
|
414
497
|
{
|
|
415
|
-
"type": "typography",
|
|
416
498
|
"content": "ServiceEmail Email",
|
|
417
|
-
"variant": "h2"
|
|
499
|
+
"variant": "h2",
|
|
500
|
+
"type": "typography"
|
|
418
501
|
}
|
|
419
|
-
]
|
|
502
|
+
],
|
|
503
|
+
"gap": "md",
|
|
504
|
+
"direction": "horizontal"
|
|
420
505
|
},
|
|
421
506
|
{
|
|
422
507
|
"type": "divider"
|
|
423
508
|
},
|
|
424
509
|
{
|
|
425
510
|
"type": "input",
|
|
426
|
-
"
|
|
511
|
+
"placeholder": "recipient@example.com",
|
|
427
512
|
"bind": "@entity.to",
|
|
428
|
-
"
|
|
513
|
+
"label": "To"
|
|
429
514
|
},
|
|
430
515
|
{
|
|
431
516
|
"type": "input",
|
|
432
517
|
"label": "Subject",
|
|
433
|
-
"
|
|
434
|
-
"
|
|
518
|
+
"placeholder": "Email subject",
|
|
519
|
+
"bind": "@entity.subject"
|
|
435
520
|
},
|
|
436
521
|
{
|
|
437
|
-
"type": "textarea",
|
|
438
522
|
"label": "Body",
|
|
439
523
|
"bind": "@entity.body",
|
|
440
|
-
"placeholder": "Write your message..."
|
|
524
|
+
"placeholder": "Write your message...",
|
|
525
|
+
"type": "textarea"
|
|
441
526
|
},
|
|
442
527
|
{
|
|
443
|
-
"type": "button",
|
|
444
|
-
"label": "Send",
|
|
445
528
|
"event": "SEND",
|
|
529
|
+
"icon": "send",
|
|
446
530
|
"variant": "primary",
|
|
447
|
-
"
|
|
531
|
+
"label": "Send",
|
|
532
|
+
"type": "button"
|
|
448
533
|
}
|
|
449
|
-
]
|
|
534
|
+
],
|
|
535
|
+
"direction": "vertical",
|
|
536
|
+
"gap": "lg"
|
|
450
537
|
}
|
|
451
538
|
]
|
|
452
539
|
]
|
|
@@ -467,24 +554,22 @@
|
|
|
467
554
|
{
|
|
468
555
|
"type": "stack",
|
|
469
556
|
"direction": "vertical",
|
|
470
|
-
"gap": "lg",
|
|
471
|
-
"align": "stretch",
|
|
472
557
|
"children": [
|
|
473
558
|
{
|
|
474
|
-
"type": "stack",
|
|
475
|
-
"direction": "horizontal",
|
|
476
|
-
"gap": "md",
|
|
477
559
|
"align": "center",
|
|
560
|
+
"gap": "md",
|
|
561
|
+
"direction": "horizontal",
|
|
562
|
+
"type": "stack",
|
|
478
563
|
"children": [
|
|
479
564
|
{
|
|
480
565
|
"type": "icon",
|
|
481
|
-
"
|
|
482
|
-
"
|
|
566
|
+
"size": "lg",
|
|
567
|
+
"name": "mail"
|
|
483
568
|
},
|
|
484
569
|
{
|
|
485
|
-
"type": "typography",
|
|
486
570
|
"content": "ServiceEmail Email",
|
|
487
|
-
"variant": "h2"
|
|
571
|
+
"variant": "h2",
|
|
572
|
+
"type": "typography"
|
|
488
573
|
}
|
|
489
574
|
]
|
|
490
575
|
},
|
|
@@ -492,37 +577,40 @@
|
|
|
492
577
|
"type": "divider"
|
|
493
578
|
},
|
|
494
579
|
{
|
|
495
|
-
"
|
|
496
|
-
"label": "To",
|
|
580
|
+
"placeholder": "recipient@example.com",
|
|
497
581
|
"bind": "@entity.to",
|
|
498
|
-
"
|
|
582
|
+
"label": "To",
|
|
583
|
+
"type": "input"
|
|
499
584
|
},
|
|
500
585
|
{
|
|
501
|
-
"type": "input",
|
|
502
|
-
"label": "Subject",
|
|
503
586
|
"bind": "@entity.subject",
|
|
504
|
-
"placeholder": "Email subject"
|
|
587
|
+
"placeholder": "Email subject",
|
|
588
|
+
"label": "Subject",
|
|
589
|
+
"type": "input"
|
|
505
590
|
},
|
|
506
591
|
{
|
|
592
|
+
"bind": "@entity.body",
|
|
507
593
|
"type": "textarea",
|
|
508
594
|
"label": "Body",
|
|
509
|
-
"bind": "@entity.body",
|
|
510
595
|
"placeholder": "Write your message..."
|
|
511
596
|
},
|
|
512
597
|
{
|
|
513
|
-
"type": "button",
|
|
514
|
-
"label": "Send",
|
|
515
598
|
"event": "SEND",
|
|
599
|
+
"label": "Send",
|
|
600
|
+
"type": "button",
|
|
516
601
|
"variant": "primary",
|
|
517
602
|
"icon": "send"
|
|
518
603
|
}
|
|
519
|
-
]
|
|
604
|
+
],
|
|
605
|
+
"align": "stretch",
|
|
606
|
+
"gap": "lg"
|
|
520
607
|
}
|
|
521
608
|
]
|
|
522
609
|
]
|
|
523
610
|
}
|
|
524
611
|
]
|
|
525
|
-
}
|
|
612
|
+
},
|
|
613
|
+
"scope": "instance"
|
|
526
614
|
}
|
|
527
615
|
],
|
|
528
616
|
"pages": [
|
|
@@ -538,4 +626,4 @@
|
|
|
538
626
|
]
|
|
539
627
|
}
|
|
540
628
|
]
|
|
541
|
-
}
|
|
629
|
+
}
|