@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-game-audio",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-game-audio as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "AudioTrackOrbital",
|
|
@@ -40,8 +40,48 @@
|
|
|
40
40
|
"traits": [
|
|
41
41
|
{
|
|
42
42
|
"name": "AudioTrackGameAudio",
|
|
43
|
-
"linkedEntity": "AudioTrack",
|
|
44
43
|
"category": "interaction",
|
|
44
|
+
"linkedEntity": "AudioTrack",
|
|
45
|
+
"emits": [
|
|
46
|
+
{
|
|
47
|
+
"event": "AudioTrackLoaded",
|
|
48
|
+
"description": "Fired when AudioTrack 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": "AudioTrackLoadFailed",
|
|
75
|
+
"description": "Fired when AudioTrack 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
|
{
|
|
@@ -57,6 +97,20 @@
|
|
|
57
97
|
{
|
|
58
98
|
"key": "TOGGLE_MUTE",
|
|
59
99
|
"name": "Toggle Mute"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"key": "AudioTrackLoaded",
|
|
103
|
+
"name": "AudioTrack loaded"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"key": "AudioTrackLoadFailed",
|
|
107
|
+
"name": "AudioTrack load failed",
|
|
108
|
+
"payload": [
|
|
109
|
+
{
|
|
110
|
+
"name": "message",
|
|
111
|
+
"type": "string"
|
|
112
|
+
}
|
|
113
|
+
]
|
|
60
114
|
}
|
|
61
115
|
],
|
|
62
116
|
"transitions": [
|
|
@@ -67,108 +121,112 @@
|
|
|
67
121
|
"effects": [
|
|
68
122
|
[
|
|
69
123
|
"fetch",
|
|
70
|
-
"AudioTrack"
|
|
124
|
+
"AudioTrack",
|
|
125
|
+
{
|
|
126
|
+
"emit": {
|
|
127
|
+
"success": "AudioTrackLoaded",
|
|
128
|
+
"failure": "AudioTrackLoadFailed"
|
|
129
|
+
}
|
|
130
|
+
}
|
|
71
131
|
],
|
|
72
132
|
[
|
|
73
133
|
"render-ui",
|
|
74
134
|
"main",
|
|
75
135
|
{
|
|
76
|
-
"
|
|
136
|
+
"baseUrl": "https://almadar-kflow-assets.web.app/shared/audio",
|
|
77
137
|
"manifest": {
|
|
138
|
+
"drop": "https://almadar-kflow-assets.web.app/shared/audio/sfx/drop_001.ogg",
|
|
78
139
|
"click": "https://almadar-kflow-assets.web.app/shared/audio/sfx/close_001.ogg",
|
|
79
|
-
"confirm": "https://almadar-kflow-assets.web.app/shared/audio/sfx/confirmation_001.ogg"
|
|
80
|
-
"drop": "https://almadar-kflow-assets.web.app/shared/audio/sfx/drop_001.ogg"
|
|
140
|
+
"confirm": "https://almadar-kflow-assets.web.app/shared/audio/sfx/confirmation_001.ogg"
|
|
81
141
|
},
|
|
82
|
-
"
|
|
142
|
+
"type": "game-audio-provider",
|
|
83
143
|
"initialMuted": false,
|
|
84
144
|
"children": [
|
|
85
145
|
{
|
|
86
|
-
"type": "stack",
|
|
87
146
|
"direction": "vertical",
|
|
88
|
-
"gap": "lg",
|
|
89
147
|
"className": "max-w-md mx-auto",
|
|
148
|
+
"gap": "lg",
|
|
90
149
|
"children": [
|
|
91
150
|
{
|
|
92
|
-
"type": "stack",
|
|
93
|
-
"direction": "horizontal",
|
|
94
|
-
"gap": "sm",
|
|
95
|
-
"align": "center",
|
|
96
151
|
"children": [
|
|
97
152
|
{
|
|
98
153
|
"type": "icon",
|
|
99
|
-
"
|
|
100
|
-
"
|
|
154
|
+
"size": "lg",
|
|
155
|
+
"name": "volume-2"
|
|
101
156
|
},
|
|
102
157
|
{
|
|
103
|
-
"
|
|
158
|
+
"variant": "h2",
|
|
104
159
|
"content": "Audio Controls",
|
|
105
|
-
"
|
|
160
|
+
"type": "typography"
|
|
106
161
|
}
|
|
107
|
-
]
|
|
162
|
+
],
|
|
163
|
+
"gap": "sm",
|
|
164
|
+
"direction": "horizontal",
|
|
165
|
+
"align": "center",
|
|
166
|
+
"type": "stack"
|
|
108
167
|
},
|
|
109
168
|
{
|
|
110
169
|
"type": "divider"
|
|
111
170
|
},
|
|
112
171
|
{
|
|
113
|
-
"type": "card",
|
|
114
172
|
"children": [
|
|
115
173
|
{
|
|
116
|
-
"type": "stack",
|
|
117
174
|
"direction": "vertical",
|
|
175
|
+
"type": "stack",
|
|
118
176
|
"gap": "md",
|
|
119
177
|
"children": [
|
|
120
178
|
{
|
|
179
|
+
"variant": "h4",
|
|
121
180
|
"type": "typography",
|
|
122
|
-
"content": "Audio Active"
|
|
123
|
-
"variant": "h4"
|
|
181
|
+
"content": "Audio Active"
|
|
124
182
|
},
|
|
125
183
|
{
|
|
126
|
-
"type": "typography",
|
|
127
184
|
"content": "Toggle mute to control game audio playback.",
|
|
128
185
|
"variant": "body",
|
|
129
|
-
"color": "muted"
|
|
186
|
+
"color": "muted",
|
|
187
|
+
"type": "typography"
|
|
130
188
|
},
|
|
131
189
|
{
|
|
132
190
|
"type": "stack",
|
|
133
|
-
"direction": "horizontal",
|
|
134
|
-
"gap": "sm",
|
|
135
191
|
"children": [
|
|
136
192
|
{
|
|
137
|
-
"
|
|
193
|
+
"event": "TOGGLE_MUTE",
|
|
194
|
+
"variant": "primary",
|
|
138
195
|
"label": "Toggle Mute",
|
|
139
196
|
"icon": "volume-2",
|
|
140
|
-
"
|
|
141
|
-
"variant": "primary"
|
|
197
|
+
"type": "button"
|
|
142
198
|
}
|
|
143
|
-
]
|
|
199
|
+
],
|
|
200
|
+
"direction": "horizontal",
|
|
201
|
+
"gap": "sm"
|
|
144
202
|
}
|
|
145
203
|
]
|
|
146
204
|
}
|
|
147
|
-
]
|
|
205
|
+
],
|
|
206
|
+
"type": "card"
|
|
148
207
|
},
|
|
149
208
|
{
|
|
150
|
-
"type": "card",
|
|
151
209
|
"children": [
|
|
152
210
|
{
|
|
211
|
+
"gap": "sm",
|
|
153
212
|
"type": "stack",
|
|
154
213
|
"direction": "vertical",
|
|
155
|
-
"gap": "sm",
|
|
156
214
|
"children": [
|
|
157
215
|
{
|
|
158
216
|
"type": "typography",
|
|
159
|
-
"
|
|
160
|
-
"
|
|
217
|
+
"variant": "h4",
|
|
218
|
+
"content": "Sound Effects"
|
|
161
219
|
},
|
|
162
220
|
{
|
|
221
|
+
"gap": "sm",
|
|
163
222
|
"type": "stack",
|
|
164
223
|
"direction": "horizontal",
|
|
165
|
-
"gap": "sm",
|
|
166
224
|
"children": [
|
|
167
225
|
{
|
|
168
226
|
"type": "button",
|
|
227
|
+
"variant": "outline",
|
|
169
228
|
"label": "Play Click",
|
|
170
|
-
"icon": "play"
|
|
171
|
-
"variant": "outline"
|
|
229
|
+
"icon": "play"
|
|
172
230
|
},
|
|
173
231
|
{
|
|
174
232
|
"type": "button",
|
|
@@ -186,9 +244,11 @@
|
|
|
186
244
|
}
|
|
187
245
|
]
|
|
188
246
|
}
|
|
189
|
-
]
|
|
247
|
+
],
|
|
248
|
+
"type": "card"
|
|
190
249
|
}
|
|
191
|
-
]
|
|
250
|
+
],
|
|
251
|
+
"type": "stack"
|
|
192
252
|
}
|
|
193
253
|
]
|
|
194
254
|
}
|
|
@@ -205,25 +265,16 @@
|
|
|
205
265
|
"main",
|
|
206
266
|
{
|
|
207
267
|
"type": "game-audio-provider",
|
|
208
|
-
"manifest": {
|
|
209
|
-
"click": "https://almadar-kflow-assets.web.app/shared/audio/sfx/close_001.ogg",
|
|
210
|
-
"confirm": "https://almadar-kflow-assets.web.app/shared/audio/sfx/confirmation_001.ogg",
|
|
211
|
-
"drop": "https://almadar-kflow-assets.web.app/shared/audio/sfx/drop_001.ogg"
|
|
212
|
-
},
|
|
213
268
|
"baseUrl": "https://almadar-kflow-assets.web.app/shared/audio",
|
|
214
269
|
"initialMuted": false,
|
|
215
270
|
"children": [
|
|
216
271
|
{
|
|
217
|
-
"type": "stack",
|
|
218
|
-
"direction": "vertical",
|
|
219
|
-
"gap": "lg",
|
|
220
272
|
"className": "max-w-md mx-auto",
|
|
221
273
|
"children": [
|
|
222
274
|
{
|
|
223
275
|
"type": "stack",
|
|
224
|
-
"direction": "horizontal",
|
|
225
276
|
"gap": "sm",
|
|
226
|
-
"
|
|
277
|
+
"direction": "horizontal",
|
|
227
278
|
"children": [
|
|
228
279
|
{
|
|
229
280
|
"type": "icon",
|
|
@@ -231,11 +282,12 @@
|
|
|
231
282
|
"size": "lg"
|
|
232
283
|
},
|
|
233
284
|
{
|
|
234
|
-
"type": "typography",
|
|
235
285
|
"content": "Audio Controls",
|
|
236
|
-
"variant": "h2"
|
|
286
|
+
"variant": "h2",
|
|
287
|
+
"type": "typography"
|
|
237
288
|
}
|
|
238
|
-
]
|
|
289
|
+
],
|
|
290
|
+
"align": "center"
|
|
239
291
|
},
|
|
240
292
|
{
|
|
241
293
|
"type": "divider"
|
|
@@ -245,19 +297,17 @@
|
|
|
245
297
|
"children": [
|
|
246
298
|
{
|
|
247
299
|
"type": "stack",
|
|
248
|
-
"direction": "vertical",
|
|
249
|
-
"gap": "md",
|
|
250
300
|
"children": [
|
|
251
301
|
{
|
|
302
|
+
"variant": "h4",
|
|
252
303
|
"type": "typography",
|
|
253
|
-
"content": "Audio Active"
|
|
254
|
-
"variant": "h4"
|
|
304
|
+
"content": "Audio Active"
|
|
255
305
|
},
|
|
256
306
|
{
|
|
257
|
-
"type": "typography",
|
|
258
307
|
"content": "Toggle mute to control game audio playback.",
|
|
259
|
-
"
|
|
260
|
-
"color": "muted"
|
|
308
|
+
"type": "typography",
|
|
309
|
+
"color": "muted",
|
|
310
|
+
"variant": "body"
|
|
261
311
|
},
|
|
262
312
|
{
|
|
263
313
|
"type": "stack",
|
|
@@ -266,14 +316,16 @@
|
|
|
266
316
|
"children": [
|
|
267
317
|
{
|
|
268
318
|
"type": "button",
|
|
319
|
+
"event": "TOGGLE_MUTE",
|
|
269
320
|
"label": "Toggle Mute",
|
|
270
321
|
"icon": "volume-2",
|
|
271
|
-
"event": "TOGGLE_MUTE",
|
|
272
322
|
"variant": "primary"
|
|
273
323
|
}
|
|
274
324
|
]
|
|
275
325
|
}
|
|
276
|
-
]
|
|
326
|
+
],
|
|
327
|
+
"direction": "vertical",
|
|
328
|
+
"gap": "md"
|
|
277
329
|
}
|
|
278
330
|
]
|
|
279
331
|
},
|
|
@@ -282,8 +334,8 @@
|
|
|
282
334
|
"children": [
|
|
283
335
|
{
|
|
284
336
|
"type": "stack",
|
|
285
|
-
"direction": "vertical",
|
|
286
337
|
"gap": "sm",
|
|
338
|
+
"direction": "vertical",
|
|
287
339
|
"children": [
|
|
288
340
|
{
|
|
289
341
|
"type": "typography",
|
|
@@ -291,9 +343,6 @@
|
|
|
291
343
|
"variant": "h4"
|
|
292
344
|
},
|
|
293
345
|
{
|
|
294
|
-
"type": "stack",
|
|
295
|
-
"direction": "horizontal",
|
|
296
|
-
"gap": "sm",
|
|
297
346
|
"children": [
|
|
298
347
|
{
|
|
299
348
|
"type": "button",
|
|
@@ -309,25 +358,37 @@
|
|
|
309
358
|
},
|
|
310
359
|
{
|
|
311
360
|
"type": "button",
|
|
312
|
-
"label": "Play Drop",
|
|
313
361
|
"icon": "play",
|
|
362
|
+
"label": "Play Drop",
|
|
314
363
|
"variant": "outline"
|
|
315
364
|
}
|
|
316
|
-
]
|
|
365
|
+
],
|
|
366
|
+
"type": "stack",
|
|
367
|
+
"gap": "sm",
|
|
368
|
+
"direction": "horizontal"
|
|
317
369
|
}
|
|
318
370
|
]
|
|
319
371
|
}
|
|
320
372
|
]
|
|
321
373
|
}
|
|
322
|
-
]
|
|
374
|
+
],
|
|
375
|
+
"gap": "lg",
|
|
376
|
+
"type": "stack",
|
|
377
|
+
"direction": "vertical"
|
|
323
378
|
}
|
|
324
|
-
]
|
|
379
|
+
],
|
|
380
|
+
"manifest": {
|
|
381
|
+
"confirm": "https://almadar-kflow-assets.web.app/shared/audio/sfx/confirmation_001.ogg",
|
|
382
|
+
"drop": "https://almadar-kflow-assets.web.app/shared/audio/sfx/drop_001.ogg",
|
|
383
|
+
"click": "https://almadar-kflow-assets.web.app/shared/audio/sfx/close_001.ogg"
|
|
384
|
+
}
|
|
325
385
|
}
|
|
326
386
|
]
|
|
327
387
|
]
|
|
328
388
|
}
|
|
329
389
|
]
|
|
330
|
-
}
|
|
390
|
+
},
|
|
391
|
+
"scope": "instance"
|
|
331
392
|
}
|
|
332
393
|
],
|
|
333
394
|
"pages": [
|
|
@@ -343,4 +404,4 @@
|
|
|
343
404
|
]
|
|
344
405
|
}
|
|
345
406
|
]
|
|
346
|
-
}
|
|
407
|
+
}
|