@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-twilio",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-service-twilio as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ServiceTwilioOrbital",
|
|
@@ -66,8 +66,72 @@
|
|
|
66
66
|
"traits": [
|
|
67
67
|
{
|
|
68
68
|
"name": "ServiceTwilioTwilio",
|
|
69
|
-
"linkedEntity": "ServiceTwilio",
|
|
70
69
|
"category": "interaction",
|
|
70
|
+
"linkedEntity": "ServiceTwilio",
|
|
71
|
+
"emits": [
|
|
72
|
+
{
|
|
73
|
+
"event": "ServiceTwilioLoaded",
|
|
74
|
+
"description": "Fired when ServiceTwilio 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": "to",
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "messageBody",
|
|
103
|
+
"type": "string"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "channel",
|
|
107
|
+
"type": "string"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "messageSid",
|
|
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": "ServiceTwilioLoadFailed",
|
|
125
|
+
"description": "Fired when ServiceTwilio 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
|
{
|
|
@@ -91,26 +155,25 @@
|
|
|
91
155
|
},
|
|
92
156
|
{
|
|
93
157
|
"key": "SEND_SMS",
|
|
94
|
-
"name": "Send
|
|
158
|
+
"name": "Send Sms"
|
|
95
159
|
},
|
|
96
160
|
{
|
|
97
161
|
"key": "SEND_WHATSAPP",
|
|
98
|
-
"name": "Send
|
|
162
|
+
"name": "Send Whatsapp"
|
|
99
163
|
},
|
|
100
164
|
{
|
|
101
165
|
"key": "SENT",
|
|
102
|
-
"name": "
|
|
166
|
+
"name": "Sent",
|
|
103
167
|
"payload": [
|
|
104
168
|
{
|
|
105
169
|
"name": "messageSid",
|
|
106
|
-
"type": "string"
|
|
107
|
-
"required": false
|
|
170
|
+
"type": "string"
|
|
108
171
|
}
|
|
109
172
|
]
|
|
110
173
|
},
|
|
111
174
|
{
|
|
112
175
|
"key": "FAILED",
|
|
113
|
-
"name": "
|
|
176
|
+
"name": "Failed",
|
|
114
177
|
"payload": [
|
|
115
178
|
{
|
|
116
179
|
"name": "error",
|
|
@@ -119,13 +182,27 @@
|
|
|
119
182
|
}
|
|
120
183
|
]
|
|
121
184
|
},
|
|
185
|
+
{
|
|
186
|
+
"key": "RESET",
|
|
187
|
+
"name": "Reset"
|
|
188
|
+
},
|
|
122
189
|
{
|
|
123
190
|
"key": "RETRY",
|
|
124
191
|
"name": "Retry"
|
|
125
192
|
},
|
|
126
193
|
{
|
|
127
|
-
"key": "
|
|
128
|
-
"name": "
|
|
194
|
+
"key": "ServiceTwilioLoaded",
|
|
195
|
+
"name": "ServiceTwilio loaded"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"key": "ServiceTwilioLoadFailed",
|
|
199
|
+
"name": "ServiceTwilio load failed",
|
|
200
|
+
"payload": [
|
|
201
|
+
{
|
|
202
|
+
"name": "message",
|
|
203
|
+
"type": "string"
|
|
204
|
+
}
|
|
205
|
+
]
|
|
129
206
|
}
|
|
130
207
|
],
|
|
131
208
|
"transitions": [
|
|
@@ -136,22 +213,23 @@
|
|
|
136
213
|
"effects": [
|
|
137
214
|
[
|
|
138
215
|
"fetch",
|
|
139
|
-
"ServiceTwilio"
|
|
216
|
+
"ServiceTwilio",
|
|
217
|
+
{
|
|
218
|
+
"emit": {
|
|
219
|
+
"success": "ServiceTwilioLoaded",
|
|
220
|
+
"failure": "ServiceTwilioLoadFailed"
|
|
221
|
+
}
|
|
222
|
+
}
|
|
140
223
|
],
|
|
141
224
|
[
|
|
142
225
|
"render-ui",
|
|
143
226
|
"main",
|
|
144
227
|
{
|
|
145
|
-
"type": "stack",
|
|
146
|
-
"direction": "vertical",
|
|
147
|
-
"gap": "lg",
|
|
148
228
|
"align": "stretch",
|
|
149
229
|
"children": [
|
|
150
230
|
{
|
|
151
|
-
"type": "stack",
|
|
152
231
|
"direction": "horizontal",
|
|
153
232
|
"gap": "md",
|
|
154
|
-
"align": "center",
|
|
155
233
|
"children": [
|
|
156
234
|
{
|
|
157
235
|
"type": "icon",
|
|
@@ -159,50 +237,55 @@
|
|
|
159
237
|
"size": "lg"
|
|
160
238
|
},
|
|
161
239
|
{
|
|
162
|
-
"type": "typography",
|
|
163
240
|
"content": "ServiceTwilio Messaging",
|
|
164
|
-
"variant": "h2"
|
|
241
|
+
"variant": "h2",
|
|
242
|
+
"type": "typography"
|
|
165
243
|
}
|
|
166
|
-
]
|
|
244
|
+
],
|
|
245
|
+
"align": "center",
|
|
246
|
+
"type": "stack"
|
|
167
247
|
},
|
|
168
248
|
{
|
|
169
249
|
"type": "divider"
|
|
170
250
|
},
|
|
171
251
|
{
|
|
172
|
-
"
|
|
173
|
-
"label": "To",
|
|
252
|
+
"placeholder": "+1234567890",
|
|
174
253
|
"bind": "@entity.to",
|
|
175
|
-
"
|
|
254
|
+
"label": "To",
|
|
255
|
+
"type": "input"
|
|
176
256
|
},
|
|
177
257
|
{
|
|
178
|
-
"type": "textarea",
|
|
179
258
|
"label": "Message",
|
|
259
|
+
"placeholder": "Write your message...",
|
|
180
260
|
"bind": "@entity.messageBody",
|
|
181
|
-
"
|
|
261
|
+
"type": "textarea"
|
|
182
262
|
},
|
|
183
263
|
{
|
|
184
264
|
"type": "stack",
|
|
185
|
-
"direction": "horizontal",
|
|
186
265
|
"gap": "sm",
|
|
266
|
+
"direction": "horizontal",
|
|
187
267
|
"justify": "center",
|
|
188
268
|
"children": [
|
|
189
269
|
{
|
|
270
|
+
"icon": "message-circle",
|
|
271
|
+
"variant": "primary",
|
|
190
272
|
"type": "button",
|
|
191
273
|
"label": "Send SMS",
|
|
192
|
-
"event": "SEND_SMS"
|
|
193
|
-
"variant": "primary",
|
|
194
|
-
"icon": "message-circle"
|
|
274
|
+
"event": "SEND_SMS"
|
|
195
275
|
},
|
|
196
276
|
{
|
|
197
|
-
"type": "button",
|
|
198
277
|
"label": "Send WhatsApp",
|
|
199
|
-
"event": "SEND_WHATSAPP",
|
|
200
278
|
"variant": "secondary",
|
|
201
|
-
"icon": "phone"
|
|
279
|
+
"icon": "phone",
|
|
280
|
+
"event": "SEND_WHATSAPP",
|
|
281
|
+
"type": "button"
|
|
202
282
|
}
|
|
203
283
|
]
|
|
204
284
|
}
|
|
205
|
-
]
|
|
285
|
+
],
|
|
286
|
+
"direction": "vertical",
|
|
287
|
+
"type": "stack",
|
|
288
|
+
"gap": "lg"
|
|
206
289
|
}
|
|
207
290
|
]
|
|
208
291
|
]
|
|
@@ -216,8 +299,8 @@
|
|
|
216
299
|
"render-ui",
|
|
217
300
|
"main",
|
|
218
301
|
{
|
|
219
|
-
"type": "loading-state",
|
|
220
302
|
"title": "Sending message...",
|
|
303
|
+
"type": "loading-state",
|
|
221
304
|
"message": "Delivering servicetwilio message..."
|
|
222
305
|
}
|
|
223
306
|
],
|
|
@@ -276,10 +359,8 @@
|
|
|
276
359
|
"render-ui",
|
|
277
360
|
"main",
|
|
278
361
|
{
|
|
279
|
-
"type": "stack",
|
|
280
362
|
"direction": "vertical",
|
|
281
363
|
"gap": "lg",
|
|
282
|
-
"align": "center",
|
|
283
364
|
"children": [
|
|
284
365
|
{
|
|
285
366
|
"type": "icon",
|
|
@@ -287,18 +368,20 @@
|
|
|
287
368
|
"size": "lg"
|
|
288
369
|
},
|
|
289
370
|
{
|
|
290
|
-
"type": "alert",
|
|
291
371
|
"variant": "success",
|
|
292
|
-
"message": "Message sent successfully"
|
|
372
|
+
"message": "Message sent successfully",
|
|
373
|
+
"type": "alert"
|
|
293
374
|
},
|
|
294
375
|
{
|
|
295
|
-
"
|
|
376
|
+
"variant": "ghost",
|
|
296
377
|
"label": "Send Another",
|
|
297
378
|
"event": "RESET",
|
|
298
|
-
"
|
|
379
|
+
"type": "button",
|
|
299
380
|
"icon": "rotate-ccw"
|
|
300
381
|
}
|
|
301
|
-
]
|
|
382
|
+
],
|
|
383
|
+
"align": "center",
|
|
384
|
+
"type": "stack"
|
|
302
385
|
}
|
|
303
386
|
]
|
|
304
387
|
]
|
|
@@ -322,63 +405,60 @@
|
|
|
322
405
|
"render-ui",
|
|
323
406
|
"main",
|
|
324
407
|
{
|
|
325
|
-
"type": "stack",
|
|
326
|
-
"direction": "vertical",
|
|
327
|
-
"gap": "lg",
|
|
328
|
-
"align": "center",
|
|
329
408
|
"children": [
|
|
330
409
|
{
|
|
331
|
-
"type": "error-state",
|
|
332
|
-
"title": "Send Failed",
|
|
333
410
|
"message": "Could not deliver the message.",
|
|
334
|
-
"onRetry": "RETRY"
|
|
411
|
+
"onRetry": "RETRY",
|
|
412
|
+
"type": "error-state",
|
|
413
|
+
"title": "Send Failed"
|
|
335
414
|
},
|
|
336
415
|
{
|
|
337
|
-
"type": "stack",
|
|
338
|
-
"direction": "horizontal",
|
|
339
416
|
"gap": "sm",
|
|
340
|
-
"
|
|
417
|
+
"direction": "horizontal",
|
|
341
418
|
"children": [
|
|
342
419
|
{
|
|
343
420
|
"type": "button",
|
|
344
|
-
"label": "Retry",
|
|
345
|
-
"event": "RETRY",
|
|
346
421
|
"variant": "primary",
|
|
347
|
-
"icon": "refresh-cw"
|
|
422
|
+
"icon": "refresh-cw",
|
|
423
|
+
"label": "Retry",
|
|
424
|
+
"event": "RETRY"
|
|
348
425
|
},
|
|
349
426
|
{
|
|
350
|
-
"type": "button",
|
|
351
|
-
"label": "Reset",
|
|
352
427
|
"event": "RESET",
|
|
353
428
|
"variant": "ghost",
|
|
354
|
-
"
|
|
429
|
+
"label": "Reset",
|
|
430
|
+
"icon": "rotate-ccw",
|
|
431
|
+
"type": "button"
|
|
355
432
|
}
|
|
356
|
-
]
|
|
433
|
+
],
|
|
434
|
+
"justify": "center",
|
|
435
|
+
"type": "stack"
|
|
357
436
|
}
|
|
358
|
-
]
|
|
437
|
+
],
|
|
438
|
+
"type": "stack",
|
|
439
|
+
"gap": "lg",
|
|
440
|
+
"direction": "vertical",
|
|
441
|
+
"align": "center"
|
|
359
442
|
}
|
|
360
443
|
]
|
|
361
444
|
]
|
|
362
445
|
},
|
|
363
446
|
{
|
|
364
|
-
"from": "
|
|
447
|
+
"from": "sent",
|
|
365
448
|
"to": "idle",
|
|
366
|
-
"event": "
|
|
449
|
+
"event": "RESET",
|
|
367
450
|
"effects": [
|
|
451
|
+
[
|
|
452
|
+
"set",
|
|
453
|
+
"@entity.sendStatus",
|
|
454
|
+
"idle"
|
|
455
|
+
],
|
|
368
456
|
[
|
|
369
457
|
"render-ui",
|
|
370
458
|
"main",
|
|
371
459
|
{
|
|
372
|
-
"type": "stack",
|
|
373
|
-
"direction": "vertical",
|
|
374
|
-
"gap": "lg",
|
|
375
|
-
"align": "stretch",
|
|
376
460
|
"children": [
|
|
377
461
|
{
|
|
378
|
-
"type": "stack",
|
|
379
|
-
"direction": "horizontal",
|
|
380
|
-
"gap": "md",
|
|
381
|
-
"align": "center",
|
|
382
462
|
"children": [
|
|
383
463
|
{
|
|
384
464
|
"type": "icon",
|
|
@@ -386,129 +466,132 @@
|
|
|
386
466
|
"size": "lg"
|
|
387
467
|
},
|
|
388
468
|
{
|
|
469
|
+
"variant": "h2",
|
|
389
470
|
"type": "typography",
|
|
390
|
-
"content": "ServiceTwilio Messaging"
|
|
391
|
-
"variant": "h2"
|
|
471
|
+
"content": "ServiceTwilio Messaging"
|
|
392
472
|
}
|
|
393
|
-
]
|
|
473
|
+
],
|
|
474
|
+
"gap": "md",
|
|
475
|
+
"align": "center",
|
|
476
|
+
"type": "stack",
|
|
477
|
+
"direction": "horizontal"
|
|
394
478
|
},
|
|
395
479
|
{
|
|
396
480
|
"type": "divider"
|
|
397
481
|
},
|
|
398
482
|
{
|
|
399
483
|
"type": "input",
|
|
400
|
-
"label": "To",
|
|
401
484
|
"bind": "@entity.to",
|
|
485
|
+
"label": "To",
|
|
402
486
|
"placeholder": "+1234567890"
|
|
403
487
|
},
|
|
404
488
|
{
|
|
405
|
-
"type": "textarea",
|
|
406
|
-
"label": "Message",
|
|
407
489
|
"bind": "@entity.messageBody",
|
|
408
|
-
"
|
|
490
|
+
"type": "textarea",
|
|
491
|
+
"placeholder": "Write your message...",
|
|
492
|
+
"label": "Message"
|
|
409
493
|
},
|
|
410
494
|
{
|
|
411
|
-
"type": "stack",
|
|
412
|
-
"direction": "horizontal",
|
|
413
495
|
"gap": "sm",
|
|
414
|
-
"justify": "center",
|
|
415
496
|
"children": [
|
|
416
497
|
{
|
|
417
|
-
"type": "button",
|
|
418
498
|
"label": "Send SMS",
|
|
419
|
-
"event": "SEND_SMS",
|
|
420
499
|
"variant": "primary",
|
|
421
|
-
"icon": "message-circle"
|
|
500
|
+
"icon": "message-circle",
|
|
501
|
+
"type": "button",
|
|
502
|
+
"event": "SEND_SMS"
|
|
422
503
|
},
|
|
423
504
|
{
|
|
424
|
-
"type": "button",
|
|
425
505
|
"label": "Send WhatsApp",
|
|
426
|
-
"
|
|
506
|
+
"type": "button",
|
|
427
507
|
"variant": "secondary",
|
|
428
|
-
"icon": "phone"
|
|
508
|
+
"icon": "phone",
|
|
509
|
+
"event": "SEND_WHATSAPP"
|
|
429
510
|
}
|
|
430
|
-
]
|
|
511
|
+
],
|
|
512
|
+
"justify": "center",
|
|
513
|
+
"type": "stack",
|
|
514
|
+
"direction": "horizontal"
|
|
431
515
|
}
|
|
432
|
-
]
|
|
516
|
+
],
|
|
517
|
+
"direction": "vertical",
|
|
518
|
+
"align": "stretch",
|
|
519
|
+
"type": "stack",
|
|
520
|
+
"gap": "lg"
|
|
433
521
|
}
|
|
434
522
|
]
|
|
435
523
|
]
|
|
436
524
|
},
|
|
437
525
|
{
|
|
438
|
-
"from": "
|
|
526
|
+
"from": "error",
|
|
439
527
|
"to": "idle",
|
|
440
|
-
"event": "
|
|
528
|
+
"event": "RETRY",
|
|
441
529
|
"effects": [
|
|
442
|
-
[
|
|
443
|
-
"set",
|
|
444
|
-
"@entity.sendStatus",
|
|
445
|
-
"idle"
|
|
446
|
-
],
|
|
447
530
|
[
|
|
448
531
|
"render-ui",
|
|
449
532
|
"main",
|
|
450
533
|
{
|
|
451
|
-
"type": "stack",
|
|
452
|
-
"direction": "vertical",
|
|
453
534
|
"gap": "lg",
|
|
454
|
-
"
|
|
535
|
+
"direction": "vertical",
|
|
455
536
|
"children": [
|
|
456
537
|
{
|
|
457
|
-
"type": "stack",
|
|
458
|
-
"direction": "horizontal",
|
|
459
538
|
"gap": "md",
|
|
460
|
-
"
|
|
539
|
+
"type": "stack",
|
|
461
540
|
"children": [
|
|
462
541
|
{
|
|
463
|
-
"type": "icon",
|
|
464
542
|
"name": "message-circle",
|
|
465
|
-
"size": "lg"
|
|
543
|
+
"size": "lg",
|
|
544
|
+
"type": "icon"
|
|
466
545
|
},
|
|
467
546
|
{
|
|
468
|
-
"
|
|
547
|
+
"variant": "h2",
|
|
469
548
|
"content": "ServiceTwilio Messaging",
|
|
470
|
-
"
|
|
549
|
+
"type": "typography"
|
|
471
550
|
}
|
|
472
|
-
]
|
|
551
|
+
],
|
|
552
|
+
"direction": "horizontal",
|
|
553
|
+
"align": "center"
|
|
473
554
|
},
|
|
474
555
|
{
|
|
475
556
|
"type": "divider"
|
|
476
557
|
},
|
|
477
558
|
{
|
|
478
|
-
"
|
|
559
|
+
"placeholder": "+1234567890",
|
|
479
560
|
"label": "To",
|
|
480
561
|
"bind": "@entity.to",
|
|
481
|
-
"
|
|
562
|
+
"type": "input"
|
|
482
563
|
},
|
|
483
564
|
{
|
|
484
|
-
"type": "textarea",
|
|
485
565
|
"label": "Message",
|
|
566
|
+
"type": "textarea",
|
|
486
567
|
"bind": "@entity.messageBody",
|
|
487
568
|
"placeholder": "Write your message..."
|
|
488
569
|
},
|
|
489
570
|
{
|
|
490
|
-
"type": "stack",
|
|
491
|
-
"direction": "horizontal",
|
|
492
571
|
"gap": "sm",
|
|
493
|
-
"justify": "center",
|
|
494
572
|
"children": [
|
|
495
573
|
{
|
|
496
574
|
"type": "button",
|
|
497
575
|
"label": "Send SMS",
|
|
498
576
|
"event": "SEND_SMS",
|
|
499
|
-
"
|
|
500
|
-
"
|
|
577
|
+
"icon": "message-circle",
|
|
578
|
+
"variant": "primary"
|
|
501
579
|
},
|
|
502
580
|
{
|
|
503
|
-
"type": "button",
|
|
504
581
|
"label": "Send WhatsApp",
|
|
582
|
+
"type": "button",
|
|
505
583
|
"event": "SEND_WHATSAPP",
|
|
506
|
-
"
|
|
507
|
-
"
|
|
584
|
+
"icon": "phone",
|
|
585
|
+
"variant": "secondary"
|
|
508
586
|
}
|
|
509
|
-
]
|
|
587
|
+
],
|
|
588
|
+
"justify": "center",
|
|
589
|
+
"type": "stack",
|
|
590
|
+
"direction": "horizontal"
|
|
510
591
|
}
|
|
511
|
-
]
|
|
592
|
+
],
|
|
593
|
+
"align": "stretch",
|
|
594
|
+
"type": "stack"
|
|
512
595
|
}
|
|
513
596
|
]
|
|
514
597
|
]
|
|
@@ -528,20 +611,18 @@
|
|
|
528
611
|
"main",
|
|
529
612
|
{
|
|
530
613
|
"type": "stack",
|
|
531
|
-
"direction": "vertical",
|
|
532
|
-
"gap": "lg",
|
|
533
614
|
"align": "stretch",
|
|
534
615
|
"children": [
|
|
535
616
|
{
|
|
536
617
|
"type": "stack",
|
|
537
|
-
"direction": "horizontal",
|
|
538
618
|
"gap": "md",
|
|
619
|
+
"direction": "horizontal",
|
|
539
620
|
"align": "center",
|
|
540
621
|
"children": [
|
|
541
622
|
{
|
|
542
|
-
"type": "icon",
|
|
543
623
|
"name": "message-circle",
|
|
544
|
-
"size": "lg"
|
|
624
|
+
"size": "lg",
|
|
625
|
+
"type": "icon"
|
|
545
626
|
},
|
|
546
627
|
{
|
|
547
628
|
"type": "typography",
|
|
@@ -555,45 +636,48 @@
|
|
|
555
636
|
},
|
|
556
637
|
{
|
|
557
638
|
"type": "input",
|
|
558
|
-
"label": "To",
|
|
559
639
|
"bind": "@entity.to",
|
|
640
|
+
"label": "To",
|
|
560
641
|
"placeholder": "+1234567890"
|
|
561
642
|
},
|
|
562
643
|
{
|
|
563
|
-
"
|
|
644
|
+
"placeholder": "Write your message...",
|
|
564
645
|
"label": "Message",
|
|
565
646
|
"bind": "@entity.messageBody",
|
|
566
|
-
"
|
|
647
|
+
"type": "textarea"
|
|
567
648
|
},
|
|
568
649
|
{
|
|
569
650
|
"type": "stack",
|
|
570
|
-
"direction": "horizontal",
|
|
571
651
|
"gap": "sm",
|
|
572
|
-
"justify": "center",
|
|
573
652
|
"children": [
|
|
574
653
|
{
|
|
575
|
-
"type": "button",
|
|
576
654
|
"label": "Send SMS",
|
|
655
|
+
"icon": "message-circle",
|
|
577
656
|
"event": "SEND_SMS",
|
|
578
|
-
"
|
|
579
|
-
"
|
|
657
|
+
"type": "button",
|
|
658
|
+
"variant": "primary"
|
|
580
659
|
},
|
|
581
660
|
{
|
|
582
|
-
"
|
|
661
|
+
"variant": "secondary",
|
|
662
|
+
"icon": "phone",
|
|
583
663
|
"label": "Send WhatsApp",
|
|
584
664
|
"event": "SEND_WHATSAPP",
|
|
585
|
-
"
|
|
586
|
-
"icon": "phone"
|
|
665
|
+
"type": "button"
|
|
587
666
|
}
|
|
588
|
-
]
|
|
667
|
+
],
|
|
668
|
+
"direction": "horizontal",
|
|
669
|
+
"justify": "center"
|
|
589
670
|
}
|
|
590
|
-
]
|
|
671
|
+
],
|
|
672
|
+
"gap": "lg",
|
|
673
|
+
"direction": "vertical"
|
|
591
674
|
}
|
|
592
675
|
]
|
|
593
676
|
]
|
|
594
677
|
}
|
|
595
678
|
]
|
|
596
|
-
}
|
|
679
|
+
},
|
|
680
|
+
"scope": "instance"
|
|
597
681
|
}
|
|
598
682
|
],
|
|
599
683
|
"pages": [
|
|
@@ -609,4 +693,4 @@
|
|
|
609
693
|
]
|
|
610
694
|
}
|
|
611
695
|
]
|
|
612
|
-
}
|
|
696
|
+
}
|