@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-overworld",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-overworld as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "WorldRegionOrbital",
|
|
@@ -40,8 +40,48 @@
|
|
|
40
40
|
"traits": [
|
|
41
41
|
{
|
|
42
42
|
"name": "WorldRegionNavigation",
|
|
43
|
-
"linkedEntity": "WorldRegion",
|
|
44
43
|
"category": "interaction",
|
|
44
|
+
"linkedEntity": "WorldRegion",
|
|
45
|
+
"emits": [
|
|
46
|
+
{
|
|
47
|
+
"event": "WorldRegionLoaded",
|
|
48
|
+
"description": "Fired when WorldRegion finishes loading",
|
|
49
|
+
"scope": "internal",
|
|
50
|
+
"payload": [
|
|
51
|
+
{
|
|
52
|
+
"name": "id",
|
|
53
|
+
"type": "string"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "name",
|
|
57
|
+
"type": "string"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "description",
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"name": "status",
|
|
65
|
+
"type": "string"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "createdAt",
|
|
69
|
+
"type": "string"
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"event": "WorldRegionLoadFailed",
|
|
75
|
+
"description": "Fired when WorldRegion fails to load",
|
|
76
|
+
"scope": "internal",
|
|
77
|
+
"payload": [
|
|
78
|
+
{
|
|
79
|
+
"name": "message",
|
|
80
|
+
"type": "string"
|
|
81
|
+
}
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
],
|
|
45
85
|
"stateMachine": {
|
|
46
86
|
"states": [
|
|
47
87
|
{
|
|
@@ -78,6 +118,20 @@
|
|
|
78
118
|
{
|
|
79
119
|
"key": "BACK",
|
|
80
120
|
"name": "Back"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"key": "WorldRegionLoaded",
|
|
124
|
+
"name": "WorldRegion loaded"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"key": "WorldRegionLoadFailed",
|
|
128
|
+
"name": "WorldRegion load failed",
|
|
129
|
+
"payload": [
|
|
130
|
+
{
|
|
131
|
+
"name": "message",
|
|
132
|
+
"type": "string"
|
|
133
|
+
}
|
|
134
|
+
]
|
|
81
135
|
}
|
|
82
136
|
],
|
|
83
137
|
"transitions": [
|
|
@@ -88,26 +142,29 @@
|
|
|
88
142
|
"effects": [
|
|
89
143
|
[
|
|
90
144
|
"fetch",
|
|
91
|
-
"WorldRegion"
|
|
145
|
+
"WorldRegion",
|
|
146
|
+
{
|
|
147
|
+
"emit": {
|
|
148
|
+
"failure": "WorldRegionLoadFailed",
|
|
149
|
+
"success": "WorldRegionLoaded"
|
|
150
|
+
}
|
|
151
|
+
}
|
|
92
152
|
],
|
|
93
153
|
[
|
|
94
154
|
"render-ui",
|
|
95
155
|
"main",
|
|
96
156
|
{
|
|
97
|
-
"type": "stack",
|
|
98
157
|
"direction": "vertical",
|
|
158
|
+
"type": "stack",
|
|
99
159
|
"gap": "lg",
|
|
100
160
|
"children": [
|
|
101
161
|
{
|
|
102
|
-
"type": "stack",
|
|
103
162
|
"direction": "horizontal",
|
|
104
|
-
"
|
|
163
|
+
"type": "stack",
|
|
105
164
|
"justify": "space-between",
|
|
165
|
+
"gap": "md",
|
|
106
166
|
"children": [
|
|
107
167
|
{
|
|
108
|
-
"type": "stack",
|
|
109
|
-
"direction": "horizontal",
|
|
110
|
-
"gap": "md",
|
|
111
168
|
"children": [
|
|
112
169
|
{
|
|
113
170
|
"type": "icon",
|
|
@@ -115,17 +172,20 @@
|
|
|
115
172
|
"size": "lg"
|
|
116
173
|
},
|
|
117
174
|
{
|
|
175
|
+
"variant": "h2",
|
|
118
176
|
"type": "typography",
|
|
119
|
-
"content": "World Map"
|
|
120
|
-
"variant": "h2"
|
|
177
|
+
"content": "World Map"
|
|
121
178
|
}
|
|
122
|
-
]
|
|
179
|
+
],
|
|
180
|
+
"type": "stack",
|
|
181
|
+
"gap": "md",
|
|
182
|
+
"direction": "horizontal"
|
|
123
183
|
},
|
|
124
184
|
{
|
|
125
|
-
"type": "status-dot",
|
|
126
185
|
"status": "active",
|
|
127
|
-
"
|
|
128
|
-
"label": "Exploring"
|
|
186
|
+
"type": "status-dot",
|
|
187
|
+
"label": "Exploring",
|
|
188
|
+
"pulse": false
|
|
129
189
|
}
|
|
130
190
|
]
|
|
131
191
|
},
|
|
@@ -136,27 +196,21 @@
|
|
|
136
196
|
"type": "map-view",
|
|
137
197
|
"markers": [],
|
|
138
198
|
"height": "200px",
|
|
139
|
-
"zoom": 10
|
|
199
|
+
"zoom": 10.0
|
|
140
200
|
},
|
|
141
201
|
{
|
|
142
|
-
"type": "data-grid",
|
|
143
|
-
"entity": "WorldRegion",
|
|
144
|
-
"emptyIcon": "compass",
|
|
145
202
|
"emptyTitle": "No worldregions discovered",
|
|
146
|
-
"
|
|
203
|
+
"type": "data-grid",
|
|
147
204
|
"itemActions": [
|
|
148
205
|
{
|
|
149
|
-
"
|
|
150
|
-
"
|
|
206
|
+
"event": "TRAVEL",
|
|
207
|
+
"label": "Travel"
|
|
151
208
|
}
|
|
152
209
|
],
|
|
153
210
|
"renderItem": [
|
|
154
211
|
"fn",
|
|
155
212
|
"item",
|
|
156
213
|
{
|
|
157
|
-
"type": "stack",
|
|
158
|
-
"direction": "vertical",
|
|
159
|
-
"gap": "sm",
|
|
160
214
|
"children": [
|
|
161
215
|
{
|
|
162
216
|
"type": "stack",
|
|
@@ -167,20 +221,20 @@
|
|
|
167
221
|
{
|
|
168
222
|
"type": "stack",
|
|
169
223
|
"direction": "horizontal",
|
|
170
|
-
"gap": "sm",
|
|
171
224
|
"align": "center",
|
|
172
225
|
"children": [
|
|
173
226
|
{
|
|
174
|
-
"type": "icon",
|
|
175
227
|
"name": "map-pin",
|
|
228
|
+
"type": "icon",
|
|
176
229
|
"size": "sm"
|
|
177
230
|
},
|
|
178
231
|
{
|
|
179
|
-
"type": "typography",
|
|
180
232
|
"variant": "h4",
|
|
181
|
-
"content": "@item.name"
|
|
233
|
+
"content": "@item.name",
|
|
234
|
+
"type": "typography"
|
|
182
235
|
}
|
|
183
|
-
]
|
|
236
|
+
],
|
|
237
|
+
"gap": "sm"
|
|
184
238
|
},
|
|
185
239
|
{
|
|
186
240
|
"type": "badge",
|
|
@@ -193,9 +247,15 @@
|
|
|
193
247
|
"variant": "caption",
|
|
194
248
|
"content": "@item.status"
|
|
195
249
|
}
|
|
196
|
-
]
|
|
250
|
+
],
|
|
251
|
+
"type": "stack",
|
|
252
|
+
"direction": "vertical",
|
|
253
|
+
"gap": "sm"
|
|
197
254
|
}
|
|
198
|
-
]
|
|
255
|
+
],
|
|
256
|
+
"emptyIcon": "compass",
|
|
257
|
+
"entity": "WorldRegion",
|
|
258
|
+
"emptyDescription": "Explore to discover new worldregions."
|
|
199
259
|
}
|
|
200
260
|
]
|
|
201
261
|
}
|
|
@@ -211,10 +271,10 @@
|
|
|
211
271
|
"render-ui",
|
|
212
272
|
"main",
|
|
213
273
|
{
|
|
214
|
-
"type": "stack",
|
|
215
274
|
"direction": "vertical",
|
|
216
|
-
"gap": "lg",
|
|
217
275
|
"align": "center",
|
|
276
|
+
"gap": "lg",
|
|
277
|
+
"type": "stack",
|
|
218
278
|
"children": [
|
|
219
279
|
{
|
|
220
280
|
"type": "stack",
|
|
@@ -227,9 +287,9 @@
|
|
|
227
287
|
"size": "lg"
|
|
228
288
|
},
|
|
229
289
|
{
|
|
230
|
-
"
|
|
290
|
+
"variant": "h2",
|
|
231
291
|
"content": "Traveling...",
|
|
232
|
-
"
|
|
292
|
+
"type": "typography"
|
|
233
293
|
}
|
|
234
294
|
]
|
|
235
295
|
},
|
|
@@ -237,9 +297,9 @@
|
|
|
237
297
|
"type": "divider"
|
|
238
298
|
},
|
|
239
299
|
{
|
|
300
|
+
"variant": "body",
|
|
240
301
|
"type": "typography",
|
|
241
|
-
"content": "Traveling to the destination worldregions map."
|
|
242
|
-
"variant": "body"
|
|
302
|
+
"content": "Traveling to the destination worldregions map."
|
|
243
303
|
}
|
|
244
304
|
]
|
|
245
305
|
}
|
|
@@ -253,121 +313,127 @@
|
|
|
253
313
|
"effects": [
|
|
254
314
|
[
|
|
255
315
|
"fetch",
|
|
256
|
-
"WorldRegion"
|
|
316
|
+
"WorldRegion",
|
|
317
|
+
{
|
|
318
|
+
"emit": {
|
|
319
|
+
"success": "WorldRegionLoaded",
|
|
320
|
+
"failure": "WorldRegionLoadFailed"
|
|
321
|
+
}
|
|
322
|
+
}
|
|
257
323
|
],
|
|
258
324
|
[
|
|
259
325
|
"render-ui",
|
|
260
326
|
"main",
|
|
261
327
|
{
|
|
262
|
-
"type": "stack",
|
|
263
|
-
"direction": "vertical",
|
|
264
|
-
"gap": "lg",
|
|
265
328
|
"children": [
|
|
266
329
|
{
|
|
267
|
-
"type": "stack",
|
|
268
|
-
"direction": "horizontal",
|
|
269
|
-
"gap": "md",
|
|
270
330
|
"justify": "space-between",
|
|
331
|
+
"type": "stack",
|
|
271
332
|
"children": [
|
|
272
333
|
{
|
|
273
|
-
"type": "stack",
|
|
274
334
|
"direction": "horizontal",
|
|
275
|
-
"gap": "md",
|
|
276
335
|
"children": [
|
|
277
336
|
{
|
|
337
|
+
"size": "lg",
|
|
278
338
|
"type": "icon",
|
|
279
|
-
"name": "map"
|
|
280
|
-
"size": "lg"
|
|
339
|
+
"name": "map"
|
|
281
340
|
},
|
|
282
341
|
{
|
|
283
|
-
"type": "typography",
|
|
284
342
|
"content": "WorldRegions Map",
|
|
285
|
-
"variant": "h2"
|
|
343
|
+
"variant": "h2",
|
|
344
|
+
"type": "typography"
|
|
286
345
|
}
|
|
287
|
-
]
|
|
346
|
+
],
|
|
347
|
+
"type": "stack",
|
|
348
|
+
"gap": "md"
|
|
288
349
|
},
|
|
289
350
|
{
|
|
290
|
-
"type": "status-dot",
|
|
291
351
|
"status": "success",
|
|
352
|
+
"type": "status-dot",
|
|
292
353
|
"label": "Entered"
|
|
293
354
|
}
|
|
294
|
-
]
|
|
355
|
+
],
|
|
356
|
+
"direction": "horizontal",
|
|
357
|
+
"gap": "md"
|
|
295
358
|
},
|
|
296
359
|
{
|
|
297
360
|
"type": "divider"
|
|
298
361
|
},
|
|
299
362
|
{
|
|
300
|
-
"type": "data-grid",
|
|
301
|
-
"entity": "WorldRegion",
|
|
302
|
-
"emptyIcon": "inbox",
|
|
303
|
-
"emptyTitle": "Nothing here",
|
|
304
|
-
"emptyDescription": "This zone is empty.",
|
|
305
363
|
"renderItem": [
|
|
306
364
|
"fn",
|
|
307
365
|
"item",
|
|
308
366
|
{
|
|
309
|
-
"type": "stack",
|
|
310
|
-
"direction": "vertical",
|
|
311
367
|
"gap": "sm",
|
|
368
|
+
"direction": "vertical",
|
|
312
369
|
"children": [
|
|
313
370
|
{
|
|
314
371
|
"type": "stack",
|
|
315
|
-
"direction": "horizontal",
|
|
316
372
|
"justify": "space-between",
|
|
317
|
-
"align": "center",
|
|
318
373
|
"children": [
|
|
319
374
|
{
|
|
320
|
-
"type": "stack",
|
|
321
375
|
"direction": "horizontal",
|
|
322
376
|
"gap": "sm",
|
|
323
|
-
"align": "center",
|
|
324
377
|
"children": [
|
|
325
378
|
{
|
|
326
|
-
"type": "icon",
|
|
327
379
|
"name": "map-pin",
|
|
328
|
-
"size": "sm"
|
|
380
|
+
"size": "sm",
|
|
381
|
+
"type": "icon"
|
|
329
382
|
},
|
|
330
383
|
{
|
|
384
|
+
"content": "@item.name",
|
|
331
385
|
"type": "typography",
|
|
332
|
-
"variant": "h4"
|
|
333
|
-
"content": "@item.name"
|
|
386
|
+
"variant": "h4"
|
|
334
387
|
}
|
|
335
|
-
]
|
|
388
|
+
],
|
|
389
|
+
"type": "stack",
|
|
390
|
+
"align": "center"
|
|
336
391
|
},
|
|
337
392
|
{
|
|
338
|
-
"
|
|
339
|
-
"
|
|
393
|
+
"label": "@item.description",
|
|
394
|
+
"type": "badge"
|
|
340
395
|
}
|
|
341
|
-
]
|
|
396
|
+
],
|
|
397
|
+
"align": "center",
|
|
398
|
+
"direction": "horizontal"
|
|
342
399
|
},
|
|
343
400
|
{
|
|
344
401
|
"type": "typography",
|
|
345
402
|
"variant": "caption",
|
|
346
403
|
"content": "@item.status"
|
|
347
404
|
}
|
|
348
|
-
]
|
|
405
|
+
],
|
|
406
|
+
"type": "stack"
|
|
349
407
|
}
|
|
350
|
-
]
|
|
408
|
+
],
|
|
409
|
+
"emptyDescription": "This zone is empty.",
|
|
410
|
+
"emptyTitle": "Nothing here",
|
|
411
|
+
"emptyIcon": "inbox",
|
|
412
|
+
"entity": "WorldRegion",
|
|
413
|
+
"type": "data-grid"
|
|
351
414
|
},
|
|
352
415
|
{
|
|
353
416
|
"type": "divider"
|
|
354
417
|
},
|
|
355
418
|
{
|
|
356
|
-
"type": "stack",
|
|
357
419
|
"direction": "horizontal",
|
|
358
420
|
"gap": "sm",
|
|
359
421
|
"justify": "end",
|
|
422
|
+
"type": "stack",
|
|
360
423
|
"children": [
|
|
361
424
|
{
|
|
425
|
+
"variant": "ghost",
|
|
426
|
+
"event": "BACK",
|
|
362
427
|
"type": "button",
|
|
363
428
|
"label": "Back to Map",
|
|
364
|
-
"event": "BACK",
|
|
365
|
-
"variant": "ghost",
|
|
366
429
|
"icon": "arrow-left"
|
|
367
430
|
}
|
|
368
431
|
]
|
|
369
432
|
}
|
|
370
|
-
]
|
|
433
|
+
],
|
|
434
|
+
"type": "stack",
|
|
435
|
+
"gap": "lg",
|
|
436
|
+
"direction": "vertical"
|
|
371
437
|
}
|
|
372
438
|
]
|
|
373
439
|
]
|
|
@@ -379,30 +445,29 @@
|
|
|
379
445
|
"effects": [
|
|
380
446
|
[
|
|
381
447
|
"fetch",
|
|
382
|
-
"WorldRegion"
|
|
448
|
+
"WorldRegion",
|
|
449
|
+
{
|
|
450
|
+
"emit": {
|
|
451
|
+
"success": "WorldRegionLoaded",
|
|
452
|
+
"failure": "WorldRegionLoadFailed"
|
|
453
|
+
}
|
|
454
|
+
}
|
|
383
455
|
],
|
|
384
456
|
[
|
|
385
457
|
"render-ui",
|
|
386
458
|
"main",
|
|
387
459
|
{
|
|
388
|
-
"type": "stack",
|
|
389
|
-
"direction": "vertical",
|
|
390
|
-
"gap": "lg",
|
|
391
460
|
"children": [
|
|
392
461
|
{
|
|
393
|
-
"type": "stack",
|
|
394
462
|
"direction": "horizontal",
|
|
395
|
-
"gap": "md",
|
|
396
|
-
"justify": "space-between",
|
|
397
463
|
"children": [
|
|
398
464
|
{
|
|
399
|
-
"type": "stack",
|
|
400
|
-
"direction": "horizontal",
|
|
401
465
|
"gap": "md",
|
|
466
|
+
"type": "stack",
|
|
402
467
|
"children": [
|
|
403
468
|
{
|
|
404
|
-
"type": "icon",
|
|
405
469
|
"name": "map",
|
|
470
|
+
"type": "icon",
|
|
406
471
|
"size": "lg"
|
|
407
472
|
},
|
|
408
473
|
{
|
|
@@ -410,91 +475,99 @@
|
|
|
410
475
|
"content": "World Map",
|
|
411
476
|
"variant": "h2"
|
|
412
477
|
}
|
|
413
|
-
]
|
|
478
|
+
],
|
|
479
|
+
"direction": "horizontal"
|
|
414
480
|
},
|
|
415
481
|
{
|
|
416
|
-
"type": "status-dot",
|
|
417
482
|
"status": "active",
|
|
483
|
+
"type": "status-dot",
|
|
418
484
|
"pulse": false,
|
|
419
485
|
"label": "Exploring"
|
|
420
486
|
}
|
|
421
|
-
]
|
|
487
|
+
],
|
|
488
|
+
"gap": "md",
|
|
489
|
+
"justify": "space-between",
|
|
490
|
+
"type": "stack"
|
|
422
491
|
},
|
|
423
492
|
{
|
|
424
493
|
"type": "divider"
|
|
425
494
|
},
|
|
426
495
|
{
|
|
427
|
-
"type": "map-view",
|
|
428
|
-
"markers": [],
|
|
429
496
|
"height": "200px",
|
|
430
|
-
"
|
|
497
|
+
"markers": [],
|
|
498
|
+
"type": "map-view",
|
|
499
|
+
"zoom": 10.0
|
|
431
500
|
},
|
|
432
501
|
{
|
|
433
|
-
"type": "data-grid",
|
|
434
|
-
"entity": "WorldRegion",
|
|
435
502
|
"emptyIcon": "compass",
|
|
503
|
+
"type": "data-grid",
|
|
436
504
|
"emptyTitle": "No worldregions discovered",
|
|
437
505
|
"emptyDescription": "Explore to discover new worldregions.",
|
|
438
506
|
"itemActions": [
|
|
439
507
|
{
|
|
440
|
-
"
|
|
441
|
-
"
|
|
508
|
+
"event": "TRAVEL",
|
|
509
|
+
"label": "Travel"
|
|
442
510
|
}
|
|
443
511
|
],
|
|
444
512
|
"renderItem": [
|
|
445
513
|
"fn",
|
|
446
514
|
"item",
|
|
447
515
|
{
|
|
448
|
-
"type": "stack",
|
|
449
|
-
"direction": "vertical",
|
|
450
|
-
"gap": "sm",
|
|
451
516
|
"children": [
|
|
452
517
|
{
|
|
453
518
|
"type": "stack",
|
|
454
|
-
"direction": "horizontal",
|
|
455
|
-
"justify": "space-between",
|
|
456
|
-
"align": "center",
|
|
457
519
|
"children": [
|
|
458
520
|
{
|
|
459
|
-
"type": "stack",
|
|
460
|
-
"direction": "horizontal",
|
|
461
|
-
"gap": "sm",
|
|
462
|
-
"align": "center",
|
|
463
521
|
"children": [
|
|
464
522
|
{
|
|
465
|
-
"type": "icon",
|
|
466
523
|
"name": "map-pin",
|
|
524
|
+
"type": "icon",
|
|
467
525
|
"size": "sm"
|
|
468
526
|
},
|
|
469
527
|
{
|
|
528
|
+
"content": "@item.name",
|
|
470
529
|
"type": "typography",
|
|
471
|
-
"variant": "h4"
|
|
472
|
-
"content": "@item.name"
|
|
530
|
+
"variant": "h4"
|
|
473
531
|
}
|
|
474
|
-
]
|
|
532
|
+
],
|
|
533
|
+
"direction": "horizontal",
|
|
534
|
+
"type": "stack",
|
|
535
|
+
"gap": "sm",
|
|
536
|
+
"align": "center"
|
|
475
537
|
},
|
|
476
538
|
{
|
|
477
539
|
"type": "badge",
|
|
478
540
|
"label": "@item.description"
|
|
479
541
|
}
|
|
480
|
-
]
|
|
542
|
+
],
|
|
543
|
+
"align": "center",
|
|
544
|
+
"direction": "horizontal",
|
|
545
|
+
"justify": "space-between"
|
|
481
546
|
},
|
|
482
547
|
{
|
|
483
|
-
"
|
|
548
|
+
"content": "@item.status",
|
|
484
549
|
"variant": "caption",
|
|
485
|
-
"
|
|
550
|
+
"type": "typography"
|
|
486
551
|
}
|
|
487
|
-
]
|
|
552
|
+
],
|
|
553
|
+
"gap": "sm",
|
|
554
|
+
"direction": "vertical",
|
|
555
|
+
"type": "stack"
|
|
488
556
|
}
|
|
489
|
-
]
|
|
557
|
+
],
|
|
558
|
+
"entity": "WorldRegion"
|
|
490
559
|
}
|
|
491
|
-
]
|
|
560
|
+
],
|
|
561
|
+
"gap": "lg",
|
|
562
|
+
"type": "stack",
|
|
563
|
+
"direction": "vertical"
|
|
492
564
|
}
|
|
493
565
|
]
|
|
494
566
|
]
|
|
495
567
|
}
|
|
496
568
|
]
|
|
497
|
-
}
|
|
569
|
+
},
|
|
570
|
+
"scope": "collection"
|
|
498
571
|
}
|
|
499
572
|
],
|
|
500
573
|
"pages": [
|
|
@@ -510,4 +583,4 @@
|
|
|
510
583
|
]
|
|
511
584
|
}
|
|
512
585
|
]
|
|
513
|
-
}
|
|
586
|
+
}
|