@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-notification-hub",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-service-notification-hub as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ServiceNotificationHubOrbital",
|
|
@@ -66,8 +66,72 @@
|
|
|
66
66
|
"traits": [
|
|
67
67
|
{
|
|
68
68
|
"name": "ServiceNotificationHubNotificationHub",
|
|
69
|
-
"linkedEntity": "ServiceNotificationHub",
|
|
70
69
|
"category": "interaction",
|
|
70
|
+
"linkedEntity": "ServiceNotificationHub",
|
|
71
|
+
"emits": [
|
|
72
|
+
{
|
|
73
|
+
"event": "ServiceNotificationHubLoaded",
|
|
74
|
+
"description": "Fired when ServiceNotificationHub finishes loading",
|
|
75
|
+
"scope": "internal",
|
|
76
|
+
"payload": [
|
|
77
|
+
{
|
|
78
|
+
"name": "id",
|
|
79
|
+
"type": "string"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "name",
|
|
83
|
+
"type": "string"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "description",
|
|
87
|
+
"type": "string"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "status",
|
|
91
|
+
"type": "string"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "createdAt",
|
|
95
|
+
"type": "string"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "recipient",
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "subject",
|
|
103
|
+
"type": "string"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "messageBody",
|
|
107
|
+
"type": "string"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "channel",
|
|
111
|
+
"type": "string"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "sendStatus",
|
|
115
|
+
"type": "string"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "error",
|
|
119
|
+
"type": "string"
|
|
120
|
+
}
|
|
121
|
+
]
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"event": "ServiceNotificationHubLoadFailed",
|
|
125
|
+
"description": "Fired when ServiceNotificationHub fails to load",
|
|
126
|
+
"scope": "internal",
|
|
127
|
+
"payload": [
|
|
128
|
+
{
|
|
129
|
+
"name": "message",
|
|
130
|
+
"type": "string"
|
|
131
|
+
}
|
|
132
|
+
]
|
|
133
|
+
}
|
|
134
|
+
],
|
|
71
135
|
"stateMachine": {
|
|
72
136
|
"states": [
|
|
73
137
|
{
|
|
@@ -95,19 +159,19 @@
|
|
|
95
159
|
},
|
|
96
160
|
{
|
|
97
161
|
"key": "SEND_SMS",
|
|
98
|
-
"name": "Send
|
|
162
|
+
"name": "Send Sms"
|
|
99
163
|
},
|
|
100
164
|
{
|
|
101
165
|
"key": "SEND_WHATSAPP",
|
|
102
|
-
"name": "Send
|
|
166
|
+
"name": "Send Whatsapp"
|
|
103
167
|
},
|
|
104
168
|
{
|
|
105
169
|
"key": "SENT",
|
|
106
|
-
"name": "
|
|
170
|
+
"name": "Sent"
|
|
107
171
|
},
|
|
108
172
|
{
|
|
109
173
|
"key": "FAILED",
|
|
110
|
-
"name": "
|
|
174
|
+
"name": "Failed",
|
|
111
175
|
"payload": [
|
|
112
176
|
{
|
|
113
177
|
"name": "error",
|
|
@@ -116,13 +180,27 @@
|
|
|
116
180
|
}
|
|
117
181
|
]
|
|
118
182
|
},
|
|
183
|
+
{
|
|
184
|
+
"key": "RESET",
|
|
185
|
+
"name": "Reset"
|
|
186
|
+
},
|
|
119
187
|
{
|
|
120
188
|
"key": "RETRY",
|
|
121
189
|
"name": "Retry"
|
|
122
190
|
},
|
|
123
191
|
{
|
|
124
|
-
"key": "
|
|
125
|
-
"name": "
|
|
192
|
+
"key": "ServiceNotificationHubLoaded",
|
|
193
|
+
"name": "ServiceNotificationHub loaded"
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"key": "ServiceNotificationHubLoadFailed",
|
|
197
|
+
"name": "ServiceNotificationHub load failed",
|
|
198
|
+
"payload": [
|
|
199
|
+
{
|
|
200
|
+
"name": "message",
|
|
201
|
+
"type": "string"
|
|
202
|
+
}
|
|
203
|
+
]
|
|
126
204
|
}
|
|
127
205
|
],
|
|
128
206
|
"transitions": [
|
|
@@ -133,7 +211,13 @@
|
|
|
133
211
|
"effects": [
|
|
134
212
|
[
|
|
135
213
|
"fetch",
|
|
136
|
-
"ServiceNotificationHub"
|
|
214
|
+
"ServiceNotificationHub",
|
|
215
|
+
{
|
|
216
|
+
"emit": {
|
|
217
|
+
"success": "ServiceNotificationHubLoaded",
|
|
218
|
+
"failure": "ServiceNotificationHubLoadFailed"
|
|
219
|
+
}
|
|
220
|
+
}
|
|
137
221
|
],
|
|
138
222
|
[
|
|
139
223
|
"render-ui",
|
|
@@ -141,24 +225,23 @@
|
|
|
141
225
|
{
|
|
142
226
|
"type": "stack",
|
|
143
227
|
"direction": "vertical",
|
|
144
|
-
"gap": "lg",
|
|
145
228
|
"align": "stretch",
|
|
146
229
|
"children": [
|
|
147
230
|
{
|
|
148
231
|
"type": "stack",
|
|
149
232
|
"direction": "horizontal",
|
|
150
|
-
"gap": "md",
|
|
151
233
|
"align": "center",
|
|
234
|
+
"gap": "md",
|
|
152
235
|
"children": [
|
|
153
236
|
{
|
|
154
237
|
"type": "icon",
|
|
155
|
-
"
|
|
156
|
-
"
|
|
238
|
+
"size": "lg",
|
|
239
|
+
"name": "bell"
|
|
157
240
|
},
|
|
158
241
|
{
|
|
159
|
-
"type": "typography",
|
|
160
242
|
"content": "ServiceNotificationHub Notification Hub",
|
|
161
|
-
"variant": "h2"
|
|
243
|
+
"variant": "h2",
|
|
244
|
+
"type": "typography"
|
|
162
245
|
}
|
|
163
246
|
]
|
|
164
247
|
},
|
|
@@ -166,53 +249,54 @@
|
|
|
166
249
|
"type": "divider"
|
|
167
250
|
},
|
|
168
251
|
{
|
|
252
|
+
"placeholder": "Email or phone number",
|
|
169
253
|
"type": "input",
|
|
170
254
|
"label": "Recipient",
|
|
171
|
-
"bind": "@entity.recipient"
|
|
172
|
-
"placeholder": "Email or phone number"
|
|
255
|
+
"bind": "@entity.recipient"
|
|
173
256
|
},
|
|
174
257
|
{
|
|
175
|
-
"type": "input",
|
|
176
|
-
"label": "Subject",
|
|
177
258
|
"bind": "@entity.subject",
|
|
178
|
-
"placeholder": "Notification subject"
|
|
259
|
+
"placeholder": "Notification subject",
|
|
260
|
+
"label": "Subject",
|
|
261
|
+
"type": "input"
|
|
179
262
|
},
|
|
180
263
|
{
|
|
181
|
-
"type": "textarea",
|
|
182
|
-
"label": "Message",
|
|
183
264
|
"bind": "@entity.messageBody",
|
|
184
|
-
"placeholder": "Write your message..."
|
|
265
|
+
"placeholder": "Write your message...",
|
|
266
|
+
"label": "Message",
|
|
267
|
+
"type": "textarea"
|
|
185
268
|
},
|
|
186
269
|
{
|
|
270
|
+
"justify": "center",
|
|
271
|
+
"gap": "sm",
|
|
187
272
|
"type": "stack",
|
|
188
273
|
"direction": "horizontal",
|
|
189
|
-
"gap": "sm",
|
|
190
|
-
"justify": "center",
|
|
191
274
|
"children": [
|
|
192
275
|
{
|
|
193
|
-
"type": "button",
|
|
194
276
|
"label": "Email",
|
|
195
|
-
"event": "SEND_EMAIL",
|
|
196
277
|
"variant": "primary",
|
|
197
|
-
"icon": "mail"
|
|
278
|
+
"icon": "mail",
|
|
279
|
+
"type": "button",
|
|
280
|
+
"event": "SEND_EMAIL"
|
|
198
281
|
},
|
|
199
282
|
{
|
|
200
|
-
"type": "button",
|
|
201
283
|
"label": "SMS",
|
|
202
|
-
"event": "SEND_SMS",
|
|
203
284
|
"variant": "secondary",
|
|
204
|
-
"icon": "message-circle"
|
|
285
|
+
"icon": "message-circle",
|
|
286
|
+
"event": "SEND_SMS",
|
|
287
|
+
"type": "button"
|
|
205
288
|
},
|
|
206
289
|
{
|
|
290
|
+
"icon": "phone",
|
|
291
|
+
"event": "SEND_WHATSAPP",
|
|
207
292
|
"type": "button",
|
|
208
293
|
"label": "WhatsApp",
|
|
209
|
-
"
|
|
210
|
-
"variant": "secondary",
|
|
211
|
-
"icon": "phone"
|
|
294
|
+
"variant": "secondary"
|
|
212
295
|
}
|
|
213
296
|
]
|
|
214
297
|
}
|
|
215
|
-
]
|
|
298
|
+
],
|
|
299
|
+
"gap": "lg"
|
|
216
300
|
}
|
|
217
301
|
]
|
|
218
302
|
]
|
|
@@ -232,8 +316,8 @@
|
|
|
232
316
|
"main",
|
|
233
317
|
{
|
|
234
318
|
"type": "loading-state",
|
|
235
|
-
"
|
|
236
|
-
"
|
|
319
|
+
"message": "Delivering servicenotificationhub notification...",
|
|
320
|
+
"title": "Sending notification..."
|
|
237
321
|
}
|
|
238
322
|
],
|
|
239
323
|
[
|
|
@@ -241,9 +325,9 @@
|
|
|
241
325
|
"email",
|
|
242
326
|
"send",
|
|
243
327
|
{
|
|
244
|
-
"to": "@entity.recipient",
|
|
245
328
|
"subject": "@entity.subject",
|
|
246
|
-
"body": "@entity.messageBody"
|
|
329
|
+
"body": "@entity.messageBody",
|
|
330
|
+
"to": "@entity.recipient"
|
|
247
331
|
}
|
|
248
332
|
]
|
|
249
333
|
]
|
|
@@ -272,8 +356,8 @@
|
|
|
272
356
|
"twilio",
|
|
273
357
|
"sendSMS",
|
|
274
358
|
{
|
|
275
|
-
"
|
|
276
|
-
"
|
|
359
|
+
"body": "@entity.messageBody",
|
|
360
|
+
"to": "@entity.recipient"
|
|
277
361
|
}
|
|
278
362
|
]
|
|
279
363
|
]
|
|
@@ -292,9 +376,9 @@
|
|
|
292
376
|
"render-ui",
|
|
293
377
|
"main",
|
|
294
378
|
{
|
|
379
|
+
"message": "Delivering servicenotificationhub notification...",
|
|
295
380
|
"type": "loading-state",
|
|
296
|
-
"title": "Sending notification..."
|
|
297
|
-
"message": "Delivering servicenotificationhub notification..."
|
|
381
|
+
"title": "Sending notification..."
|
|
298
382
|
}
|
|
299
383
|
],
|
|
300
384
|
[
|
|
@@ -302,8 +386,8 @@
|
|
|
302
386
|
"twilio",
|
|
303
387
|
"sendWhatsApp",
|
|
304
388
|
{
|
|
305
|
-
"
|
|
306
|
-
"
|
|
389
|
+
"body": "@entity.messageBody",
|
|
390
|
+
"to": "@entity.recipient"
|
|
307
391
|
}
|
|
308
392
|
]
|
|
309
393
|
]
|
|
@@ -322,29 +406,29 @@
|
|
|
322
406
|
"render-ui",
|
|
323
407
|
"main",
|
|
324
408
|
{
|
|
325
|
-
"type": "stack",
|
|
326
|
-
"direction": "vertical",
|
|
327
|
-
"gap": "lg",
|
|
328
409
|
"align": "center",
|
|
329
410
|
"children": [
|
|
330
411
|
{
|
|
331
|
-
"type": "icon",
|
|
332
412
|
"name": "check-circle",
|
|
333
|
-
"size": "lg"
|
|
413
|
+
"size": "lg",
|
|
414
|
+
"type": "icon"
|
|
334
415
|
},
|
|
335
416
|
{
|
|
336
|
-
"type": "alert",
|
|
337
417
|
"variant": "success",
|
|
418
|
+
"type": "alert",
|
|
338
419
|
"message": "Notification sent successfully"
|
|
339
420
|
},
|
|
340
421
|
{
|
|
341
422
|
"type": "button",
|
|
342
423
|
"label": "Send Another",
|
|
343
|
-
"event": "RESET",
|
|
344
424
|
"variant": "ghost",
|
|
425
|
+
"event": "RESET",
|
|
345
426
|
"icon": "rotate-ccw"
|
|
346
427
|
}
|
|
347
|
-
]
|
|
428
|
+
],
|
|
429
|
+
"type": "stack",
|
|
430
|
+
"gap": "lg",
|
|
431
|
+
"direction": "vertical"
|
|
348
432
|
}
|
|
349
433
|
]
|
|
350
434
|
]
|
|
@@ -368,9 +452,7 @@
|
|
|
368
452
|
"render-ui",
|
|
369
453
|
"main",
|
|
370
454
|
{
|
|
371
|
-
"type": "stack",
|
|
372
455
|
"direction": "vertical",
|
|
373
|
-
"gap": "lg",
|
|
374
456
|
"align": "center",
|
|
375
457
|
"children": [
|
|
376
458
|
{
|
|
@@ -381,50 +463,51 @@
|
|
|
381
463
|
},
|
|
382
464
|
{
|
|
383
465
|
"type": "stack",
|
|
466
|
+
"justify": "center",
|
|
384
467
|
"direction": "horizontal",
|
|
385
468
|
"gap": "sm",
|
|
386
|
-
"justify": "center",
|
|
387
469
|
"children": [
|
|
388
470
|
{
|
|
389
471
|
"type": "button",
|
|
390
472
|
"label": "Retry",
|
|
391
473
|
"event": "RETRY",
|
|
392
|
-
"
|
|
393
|
-
"
|
|
474
|
+
"icon": "refresh-cw",
|
|
475
|
+
"variant": "primary"
|
|
394
476
|
},
|
|
395
477
|
{
|
|
396
478
|
"type": "button",
|
|
479
|
+
"variant": "ghost",
|
|
397
480
|
"label": "Reset",
|
|
398
481
|
"event": "RESET",
|
|
399
|
-
"variant": "ghost",
|
|
400
482
|
"icon": "rotate-ccw"
|
|
401
483
|
}
|
|
402
484
|
]
|
|
403
485
|
}
|
|
404
|
-
]
|
|
486
|
+
],
|
|
487
|
+
"type": "stack",
|
|
488
|
+
"gap": "lg"
|
|
405
489
|
}
|
|
406
490
|
]
|
|
407
491
|
]
|
|
408
492
|
},
|
|
409
493
|
{
|
|
410
|
-
"from": "
|
|
494
|
+
"from": "sent",
|
|
411
495
|
"to": "idle",
|
|
412
|
-
"event": "
|
|
496
|
+
"event": "RESET",
|
|
413
497
|
"effects": [
|
|
498
|
+
[
|
|
499
|
+
"set",
|
|
500
|
+
"@entity.sendStatus",
|
|
501
|
+
"idle"
|
|
502
|
+
],
|
|
414
503
|
[
|
|
415
504
|
"render-ui",
|
|
416
505
|
"main",
|
|
417
506
|
{
|
|
418
|
-
"type": "stack",
|
|
419
507
|
"direction": "vertical",
|
|
420
508
|
"gap": "lg",
|
|
421
|
-
"align": "stretch",
|
|
422
509
|
"children": [
|
|
423
510
|
{
|
|
424
|
-
"type": "stack",
|
|
425
|
-
"direction": "horizontal",
|
|
426
|
-
"gap": "md",
|
|
427
|
-
"align": "center",
|
|
428
511
|
"children": [
|
|
429
512
|
{
|
|
430
513
|
"type": "icon",
|
|
@@ -432,20 +515,24 @@
|
|
|
432
515
|
"size": "lg"
|
|
433
516
|
},
|
|
434
517
|
{
|
|
435
|
-
"type": "typography",
|
|
436
518
|
"content": "ServiceNotificationHub Notification Hub",
|
|
519
|
+
"type": "typography",
|
|
437
520
|
"variant": "h2"
|
|
438
521
|
}
|
|
439
|
-
]
|
|
522
|
+
],
|
|
523
|
+
"gap": "md",
|
|
524
|
+
"type": "stack",
|
|
525
|
+
"align": "center",
|
|
526
|
+
"direction": "horizontal"
|
|
440
527
|
},
|
|
441
528
|
{
|
|
442
529
|
"type": "divider"
|
|
443
530
|
},
|
|
444
531
|
{
|
|
445
|
-
"type": "input",
|
|
446
532
|
"label": "Recipient",
|
|
533
|
+
"placeholder": "Email or phone number",
|
|
447
534
|
"bind": "@entity.recipient",
|
|
448
|
-
"
|
|
535
|
+
"type": "input"
|
|
449
536
|
},
|
|
450
537
|
{
|
|
451
538
|
"type": "input",
|
|
@@ -454,16 +541,15 @@
|
|
|
454
541
|
"placeholder": "Notification subject"
|
|
455
542
|
},
|
|
456
543
|
{
|
|
457
|
-
"type": "textarea",
|
|
458
|
-
"label": "Message",
|
|
459
544
|
"bind": "@entity.messageBody",
|
|
460
|
-
"
|
|
545
|
+
"label": "Message",
|
|
546
|
+
"placeholder": "Write your message...",
|
|
547
|
+
"type": "textarea"
|
|
461
548
|
},
|
|
462
549
|
{
|
|
463
|
-
"type": "stack",
|
|
464
|
-
"direction": "horizontal",
|
|
465
|
-
"gap": "sm",
|
|
466
550
|
"justify": "center",
|
|
551
|
+
"gap": "sm",
|
|
552
|
+
"type": "stack",
|
|
467
553
|
"children": [
|
|
468
554
|
{
|
|
469
555
|
"type": "button",
|
|
@@ -473,60 +559,55 @@
|
|
|
473
559
|
"icon": "mail"
|
|
474
560
|
},
|
|
475
561
|
{
|
|
562
|
+
"icon": "message-circle",
|
|
563
|
+
"variant": "secondary",
|
|
476
564
|
"type": "button",
|
|
477
|
-
"label": "SMS",
|
|
478
565
|
"event": "SEND_SMS",
|
|
479
|
-
"
|
|
480
|
-
"icon": "message-circle"
|
|
566
|
+
"label": "SMS"
|
|
481
567
|
},
|
|
482
568
|
{
|
|
483
|
-
"type": "button",
|
|
484
569
|
"label": "WhatsApp",
|
|
485
|
-
"event": "SEND_WHATSAPP",
|
|
486
570
|
"variant": "secondary",
|
|
571
|
+
"event": "SEND_WHATSAPP",
|
|
572
|
+
"type": "button",
|
|
487
573
|
"icon": "phone"
|
|
488
574
|
}
|
|
489
|
-
]
|
|
575
|
+
],
|
|
576
|
+
"direction": "horizontal"
|
|
490
577
|
}
|
|
491
|
-
]
|
|
578
|
+
],
|
|
579
|
+
"align": "stretch",
|
|
580
|
+
"type": "stack"
|
|
492
581
|
}
|
|
493
582
|
]
|
|
494
583
|
]
|
|
495
584
|
},
|
|
496
585
|
{
|
|
497
|
-
"from": "
|
|
586
|
+
"from": "error",
|
|
498
587
|
"to": "idle",
|
|
499
|
-
"event": "
|
|
588
|
+
"event": "RETRY",
|
|
500
589
|
"effects": [
|
|
501
|
-
[
|
|
502
|
-
"set",
|
|
503
|
-
"@entity.sendStatus",
|
|
504
|
-
"idle"
|
|
505
|
-
],
|
|
506
590
|
[
|
|
507
591
|
"render-ui",
|
|
508
592
|
"main",
|
|
509
593
|
{
|
|
510
|
-
"type": "stack",
|
|
511
|
-
"direction": "vertical",
|
|
512
|
-
"gap": "lg",
|
|
513
594
|
"align": "stretch",
|
|
514
595
|
"children": [
|
|
515
596
|
{
|
|
516
|
-
"type": "stack",
|
|
517
597
|
"direction": "horizontal",
|
|
518
|
-
"
|
|
598
|
+
"type": "stack",
|
|
519
599
|
"align": "center",
|
|
600
|
+
"gap": "md",
|
|
520
601
|
"children": [
|
|
521
602
|
{
|
|
522
603
|
"type": "icon",
|
|
523
|
-
"
|
|
524
|
-
"
|
|
604
|
+
"size": "lg",
|
|
605
|
+
"name": "bell"
|
|
525
606
|
},
|
|
526
607
|
{
|
|
527
|
-
"type": "typography",
|
|
528
608
|
"content": "ServiceNotificationHub Notification Hub",
|
|
529
|
-
"variant": "h2"
|
|
609
|
+
"variant": "h2",
|
|
610
|
+
"type": "typography"
|
|
530
611
|
}
|
|
531
612
|
]
|
|
532
613
|
},
|
|
@@ -534,53 +615,56 @@
|
|
|
534
615
|
"type": "divider"
|
|
535
616
|
},
|
|
536
617
|
{
|
|
537
|
-
"type": "input",
|
|
538
|
-
"label": "Recipient",
|
|
539
618
|
"bind": "@entity.recipient",
|
|
540
|
-
"
|
|
619
|
+
"label": "Recipient",
|
|
620
|
+
"placeholder": "Email or phone number",
|
|
621
|
+
"type": "input"
|
|
541
622
|
},
|
|
542
623
|
{
|
|
543
624
|
"type": "input",
|
|
625
|
+
"placeholder": "Notification subject",
|
|
544
626
|
"label": "Subject",
|
|
545
|
-
"bind": "@entity.subject"
|
|
546
|
-
"placeholder": "Notification subject"
|
|
627
|
+
"bind": "@entity.subject"
|
|
547
628
|
},
|
|
548
629
|
{
|
|
549
|
-
"
|
|
550
|
-
"label": "Message",
|
|
630
|
+
"placeholder": "Write your message...",
|
|
551
631
|
"bind": "@entity.messageBody",
|
|
552
|
-
"
|
|
632
|
+
"type": "textarea",
|
|
633
|
+
"label": "Message"
|
|
553
634
|
},
|
|
554
635
|
{
|
|
555
636
|
"type": "stack",
|
|
556
|
-
"direction": "horizontal",
|
|
557
|
-
"gap": "sm",
|
|
558
|
-
"justify": "center",
|
|
559
637
|
"children": [
|
|
560
638
|
{
|
|
561
|
-
"type": "button",
|
|
562
639
|
"label": "Email",
|
|
563
|
-
"event": "SEND_EMAIL",
|
|
564
640
|
"variant": "primary",
|
|
565
|
-
"
|
|
641
|
+
"type": "button",
|
|
642
|
+
"icon": "mail",
|
|
643
|
+
"event": "SEND_EMAIL"
|
|
566
644
|
},
|
|
567
645
|
{
|
|
568
|
-
"type": "button",
|
|
569
646
|
"label": "SMS",
|
|
570
|
-
"
|
|
647
|
+
"icon": "message-circle",
|
|
571
648
|
"variant": "secondary",
|
|
572
|
-
"
|
|
649
|
+
"type": "button",
|
|
650
|
+
"event": "SEND_SMS"
|
|
573
651
|
},
|
|
574
652
|
{
|
|
575
|
-
"type": "button",
|
|
576
653
|
"label": "WhatsApp",
|
|
577
|
-
"
|
|
654
|
+
"icon": "phone",
|
|
578
655
|
"variant": "secondary",
|
|
579
|
-
"
|
|
656
|
+
"event": "SEND_WHATSAPP",
|
|
657
|
+
"type": "button"
|
|
580
658
|
}
|
|
581
|
-
]
|
|
659
|
+
],
|
|
660
|
+
"justify": "center",
|
|
661
|
+
"direction": "horizontal",
|
|
662
|
+
"gap": "sm"
|
|
582
663
|
}
|
|
583
|
-
]
|
|
664
|
+
],
|
|
665
|
+
"gap": "lg",
|
|
666
|
+
"type": "stack",
|
|
667
|
+
"direction": "vertical"
|
|
584
668
|
}
|
|
585
669
|
]
|
|
586
670
|
]
|
|
@@ -599,21 +683,18 @@
|
|
|
599
683
|
"render-ui",
|
|
600
684
|
"main",
|
|
601
685
|
{
|
|
602
|
-
"type": "stack",
|
|
603
|
-
"direction": "vertical",
|
|
604
686
|
"gap": "lg",
|
|
605
|
-
"align": "stretch",
|
|
606
687
|
"children": [
|
|
607
688
|
{
|
|
608
|
-
"type": "stack",
|
|
609
|
-
"direction": "horizontal",
|
|
610
689
|
"gap": "md",
|
|
690
|
+
"type": "stack",
|
|
611
691
|
"align": "center",
|
|
692
|
+
"direction": "horizontal",
|
|
612
693
|
"children": [
|
|
613
694
|
{
|
|
614
695
|
"type": "icon",
|
|
615
|
-
"
|
|
616
|
-
"
|
|
696
|
+
"size": "lg",
|
|
697
|
+
"name": "bell"
|
|
617
698
|
},
|
|
618
699
|
{
|
|
619
700
|
"type": "typography",
|
|
@@ -627,58 +708,62 @@
|
|
|
627
708
|
},
|
|
628
709
|
{
|
|
629
710
|
"type": "input",
|
|
630
|
-
"label": "Recipient",
|
|
631
711
|
"bind": "@entity.recipient",
|
|
712
|
+
"label": "Recipient",
|
|
632
713
|
"placeholder": "Email or phone number"
|
|
633
714
|
},
|
|
634
715
|
{
|
|
635
|
-
"
|
|
716
|
+
"placeholder": "Notification subject",
|
|
636
717
|
"label": "Subject",
|
|
637
718
|
"bind": "@entity.subject",
|
|
638
|
-
"
|
|
719
|
+
"type": "input"
|
|
639
720
|
},
|
|
640
721
|
{
|
|
641
|
-
"type": "textarea",
|
|
642
722
|
"label": "Message",
|
|
723
|
+
"placeholder": "Write your message...",
|
|
643
724
|
"bind": "@entity.messageBody",
|
|
644
|
-
"
|
|
725
|
+
"type": "textarea"
|
|
645
726
|
},
|
|
646
727
|
{
|
|
647
|
-
"type": "stack",
|
|
648
|
-
"direction": "horizontal",
|
|
649
|
-
"gap": "sm",
|
|
650
|
-
"justify": "center",
|
|
651
728
|
"children": [
|
|
652
729
|
{
|
|
653
730
|
"type": "button",
|
|
731
|
+
"icon": "mail",
|
|
654
732
|
"label": "Email",
|
|
655
733
|
"event": "SEND_EMAIL",
|
|
656
|
-
"variant": "primary"
|
|
657
|
-
"icon": "mail"
|
|
734
|
+
"variant": "primary"
|
|
658
735
|
},
|
|
659
736
|
{
|
|
660
|
-
"type": "button",
|
|
661
|
-
"label": "SMS",
|
|
662
737
|
"event": "SEND_SMS",
|
|
663
|
-
"
|
|
664
|
-
"icon": "message-circle"
|
|
738
|
+
"label": "SMS",
|
|
739
|
+
"icon": "message-circle",
|
|
740
|
+
"type": "button",
|
|
741
|
+
"variant": "secondary"
|
|
665
742
|
},
|
|
666
743
|
{
|
|
667
|
-
"type": "button",
|
|
668
744
|
"label": "WhatsApp",
|
|
669
|
-
"event": "SEND_WHATSAPP",
|
|
670
745
|
"variant": "secondary",
|
|
671
|
-
"
|
|
746
|
+
"event": "SEND_WHATSAPP",
|
|
747
|
+
"icon": "phone",
|
|
748
|
+
"type": "button"
|
|
672
749
|
}
|
|
673
|
-
]
|
|
750
|
+
],
|
|
751
|
+
"justify": "center",
|
|
752
|
+
"gap": "sm",
|
|
753
|
+
"direction": "horizontal",
|
|
754
|
+
"type": "stack"
|
|
674
755
|
}
|
|
675
|
-
]
|
|
756
|
+
],
|
|
757
|
+
"align": "stretch",
|
|
758
|
+
"type": "stack",
|
|
759
|
+
"direction": "vertical"
|
|
676
760
|
}
|
|
677
761
|
]
|
|
678
762
|
]
|
|
679
763
|
}
|
|
680
764
|
]
|
|
681
|
-
}
|
|
765
|
+
},
|
|
766
|
+
"scope": "instance"
|
|
682
767
|
}
|
|
683
768
|
],
|
|
684
769
|
"pages": [
|
|
@@ -694,4 +779,4 @@
|
|
|
694
779
|
]
|
|
695
780
|
}
|
|
696
781
|
]
|
|
697
|
-
}
|
|
782
|
+
}
|