@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-rating",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-rating as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ReviewOrbital",
|
|
@@ -38,31 +38,68 @@
|
|
|
38
38
|
{
|
|
39
39
|
"name": "rating",
|
|
40
40
|
"type": "number",
|
|
41
|
-
"default": 0
|
|
41
|
+
"default": 0.0
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
44
|
"name": "comment",
|
|
45
45
|
"type": "string",
|
|
46
46
|
"default": ""
|
|
47
47
|
}
|
|
48
|
-
],
|
|
49
|
-
"instances": [
|
|
50
|
-
{
|
|
51
|
-
"id": "rev-1",
|
|
52
|
-
"name": "Great product",
|
|
53
|
-
"description": "Exceeded expectations",
|
|
54
|
-
"status": "active",
|
|
55
|
-
"createdAt": "2026-01-10",
|
|
56
|
-
"rating": 4,
|
|
57
|
-
"comment": "Really solid quality"
|
|
58
|
-
}
|
|
59
48
|
]
|
|
60
49
|
},
|
|
61
50
|
"traits": [
|
|
62
51
|
{
|
|
63
52
|
"name": "ReviewRating",
|
|
64
|
-
"linkedEntity": "Review",
|
|
65
53
|
"category": "interaction",
|
|
54
|
+
"linkedEntity": "Review",
|
|
55
|
+
"emits": [
|
|
56
|
+
{
|
|
57
|
+
"event": "ReviewLoaded",
|
|
58
|
+
"description": "Fired when Review finishes loading",
|
|
59
|
+
"scope": "internal",
|
|
60
|
+
"payload": [
|
|
61
|
+
{
|
|
62
|
+
"name": "id",
|
|
63
|
+
"type": "string"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "name",
|
|
67
|
+
"type": "string"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "description",
|
|
71
|
+
"type": "string"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "status",
|
|
75
|
+
"type": "string"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "createdAt",
|
|
79
|
+
"type": "string"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "rating",
|
|
83
|
+
"type": "number"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "comment",
|
|
87
|
+
"type": "string"
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"event": "ReviewLoadFailed",
|
|
93
|
+
"description": "Fired when Review fails to load",
|
|
94
|
+
"scope": "internal",
|
|
95
|
+
"payload": [
|
|
96
|
+
{
|
|
97
|
+
"name": "message",
|
|
98
|
+
"type": "string"
|
|
99
|
+
}
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
],
|
|
66
103
|
"stateMachine": {
|
|
67
104
|
"states": [
|
|
68
105
|
{
|
|
@@ -92,6 +129,20 @@
|
|
|
92
129
|
{
|
|
93
130
|
"key": "RESET",
|
|
94
131
|
"name": "Reset"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"key": "ReviewLoaded",
|
|
135
|
+
"name": "Review loaded"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"key": "ReviewLoadFailed",
|
|
139
|
+
"name": "Review load failed",
|
|
140
|
+
"payload": [
|
|
141
|
+
{
|
|
142
|
+
"name": "message",
|
|
143
|
+
"type": "string"
|
|
144
|
+
}
|
|
145
|
+
]
|
|
95
146
|
}
|
|
96
147
|
],
|
|
97
148
|
"transitions": [
|
|
@@ -102,46 +153,53 @@
|
|
|
102
153
|
"effects": [
|
|
103
154
|
[
|
|
104
155
|
"fetch",
|
|
105
|
-
"Review"
|
|
156
|
+
"Review",
|
|
157
|
+
{
|
|
158
|
+
"emit": {
|
|
159
|
+
"failure": "ReviewLoadFailed",
|
|
160
|
+
"success": "ReviewLoaded"
|
|
161
|
+
}
|
|
162
|
+
}
|
|
106
163
|
],
|
|
107
164
|
[
|
|
108
165
|
"render-ui",
|
|
109
166
|
"main",
|
|
110
167
|
{
|
|
111
168
|
"type": "stack",
|
|
112
|
-
"direction": "vertical",
|
|
113
169
|
"gap": "lg",
|
|
114
|
-
"
|
|
170
|
+
"direction": "vertical",
|
|
115
171
|
"children": [
|
|
116
172
|
{
|
|
117
173
|
"type": "stack",
|
|
118
|
-
"direction": "horizontal",
|
|
119
|
-
"gap": "sm",
|
|
120
174
|
"align": "center",
|
|
121
175
|
"children": [
|
|
122
176
|
{
|
|
123
|
-
"type": "icon",
|
|
124
177
|
"name": "star",
|
|
125
|
-
"size": "lg"
|
|
178
|
+
"size": "lg",
|
|
179
|
+
"type": "icon"
|
|
126
180
|
},
|
|
127
181
|
{
|
|
182
|
+
"variant": "h2",
|
|
128
183
|
"type": "typography",
|
|
129
|
-
"content": "Rating"
|
|
130
|
-
"variant": "h2"
|
|
184
|
+
"content": "Rating"
|
|
131
185
|
}
|
|
132
|
-
]
|
|
186
|
+
],
|
|
187
|
+
"gap": "sm",
|
|
188
|
+
"direction": "horizontal"
|
|
133
189
|
},
|
|
134
190
|
{
|
|
135
191
|
"type": "divider"
|
|
136
192
|
},
|
|
137
193
|
{
|
|
138
|
-
"type": "typography",
|
|
139
194
|
"variant": "body",
|
|
140
|
-
"
|
|
141
|
-
"
|
|
195
|
+
"content": "How would you rate this?",
|
|
196
|
+
"type": "typography",
|
|
197
|
+
"color": "muted"
|
|
142
198
|
},
|
|
143
199
|
{
|
|
144
|
-
"
|
|
200
|
+
"size": "lg",
|
|
201
|
+
"max": 5.0,
|
|
202
|
+
"event": "RATE",
|
|
145
203
|
"value": [
|
|
146
204
|
"object/get",
|
|
147
205
|
[
|
|
@@ -150,18 +208,17 @@
|
|
|
150
208
|
],
|
|
151
209
|
"rating"
|
|
152
210
|
],
|
|
153
|
-
"
|
|
154
|
-
"event": "RATE",
|
|
155
|
-
"size": "lg"
|
|
211
|
+
"type": "star-rating"
|
|
156
212
|
},
|
|
157
213
|
{
|
|
158
|
-
"type": "button",
|
|
159
|
-
"label": "Submit Rating",
|
|
160
214
|
"event": "RATE",
|
|
215
|
+
"type": "button",
|
|
161
216
|
"variant": "primary",
|
|
162
|
-
"icon": "star"
|
|
217
|
+
"icon": "star",
|
|
218
|
+
"label": "Submit Rating"
|
|
163
219
|
}
|
|
164
|
-
]
|
|
220
|
+
],
|
|
221
|
+
"align": "center"
|
|
165
222
|
}
|
|
166
223
|
]
|
|
167
224
|
]
|
|
@@ -180,33 +237,35 @@
|
|
|
180
237
|
"render-ui",
|
|
181
238
|
"main",
|
|
182
239
|
{
|
|
240
|
+
"gap": "lg",
|
|
183
241
|
"type": "stack",
|
|
184
242
|
"direction": "vertical",
|
|
185
|
-
"gap": "lg",
|
|
186
243
|
"align": "center",
|
|
187
244
|
"children": [
|
|
188
245
|
{
|
|
189
|
-
"type": "stack",
|
|
190
|
-
"direction": "horizontal",
|
|
191
246
|
"gap": "sm",
|
|
192
247
|
"align": "center",
|
|
248
|
+
"direction": "horizontal",
|
|
193
249
|
"children": [
|
|
194
250
|
{
|
|
195
|
-
"type": "icon",
|
|
196
251
|
"name": "check-circle",
|
|
197
|
-
"size": "lg"
|
|
252
|
+
"size": "lg",
|
|
253
|
+
"type": "icon"
|
|
198
254
|
},
|
|
199
255
|
{
|
|
200
256
|
"type": "typography",
|
|
201
|
-
"
|
|
202
|
-
"
|
|
257
|
+
"variant": "h2",
|
|
258
|
+
"content": "Thank You!"
|
|
203
259
|
}
|
|
204
|
-
]
|
|
260
|
+
],
|
|
261
|
+
"type": "stack"
|
|
205
262
|
},
|
|
206
263
|
{
|
|
207
264
|
"type": "divider"
|
|
208
265
|
},
|
|
209
266
|
{
|
|
267
|
+
"max": 5.0,
|
|
268
|
+
"readOnly": true,
|
|
210
269
|
"type": "star-rating",
|
|
211
270
|
"value": [
|
|
212
271
|
"object/get",
|
|
@@ -216,20 +275,18 @@
|
|
|
216
275
|
],
|
|
217
276
|
"rating"
|
|
218
277
|
],
|
|
219
|
-
"max": 5,
|
|
220
|
-
"readOnly": true,
|
|
221
278
|
"size": "lg"
|
|
222
279
|
},
|
|
223
280
|
{
|
|
224
|
-
"type": "alert",
|
|
225
281
|
"variant": "success",
|
|
282
|
+
"type": "alert",
|
|
226
283
|
"message": "Your rating has been recorded."
|
|
227
284
|
},
|
|
228
285
|
{
|
|
229
|
-
"
|
|
286
|
+
"variant": "ghost",
|
|
230
287
|
"label": "Rate Again",
|
|
231
288
|
"event": "RESET",
|
|
232
|
-
"
|
|
289
|
+
"type": "button",
|
|
233
290
|
"icon": "rotate-ccw"
|
|
234
291
|
}
|
|
235
292
|
]
|
|
@@ -245,32 +302,31 @@
|
|
|
245
302
|
[
|
|
246
303
|
"set",
|
|
247
304
|
"@entity.rating",
|
|
248
|
-
0
|
|
305
|
+
0.0
|
|
249
306
|
],
|
|
250
307
|
[
|
|
251
308
|
"render-ui",
|
|
252
309
|
"main",
|
|
253
310
|
{
|
|
254
|
-
"type": "stack",
|
|
255
311
|
"direction": "vertical",
|
|
256
312
|
"gap": "lg",
|
|
257
313
|
"align": "center",
|
|
258
314
|
"children": [
|
|
259
315
|
{
|
|
260
|
-
"type": "stack",
|
|
261
316
|
"direction": "horizontal",
|
|
262
317
|
"gap": "sm",
|
|
318
|
+
"type": "stack",
|
|
263
319
|
"align": "center",
|
|
264
320
|
"children": [
|
|
265
321
|
{
|
|
322
|
+
"size": "lg",
|
|
266
323
|
"type": "icon",
|
|
267
|
-
"name": "star"
|
|
268
|
-
"size": "lg"
|
|
324
|
+
"name": "star"
|
|
269
325
|
},
|
|
270
326
|
{
|
|
271
327
|
"type": "typography",
|
|
272
|
-
"
|
|
273
|
-
"
|
|
328
|
+
"variant": "h2",
|
|
329
|
+
"content": "Rating"
|
|
274
330
|
}
|
|
275
331
|
]
|
|
276
332
|
},
|
|
@@ -284,7 +340,9 @@
|
|
|
284
340
|
"content": "How would you rate this?"
|
|
285
341
|
},
|
|
286
342
|
{
|
|
287
|
-
"
|
|
343
|
+
"event": "RATE",
|
|
344
|
+
"size": "lg",
|
|
345
|
+
"max": 5.0,
|
|
288
346
|
"value": [
|
|
289
347
|
"object/get",
|
|
290
348
|
[
|
|
@@ -293,24 +351,24 @@
|
|
|
293
351
|
],
|
|
294
352
|
"rating"
|
|
295
353
|
],
|
|
296
|
-
"
|
|
297
|
-
"event": "RATE",
|
|
298
|
-
"size": "lg"
|
|
354
|
+
"type": "star-rating"
|
|
299
355
|
},
|
|
300
356
|
{
|
|
301
|
-
"type": "button",
|
|
302
|
-
"label": "Submit Rating",
|
|
303
357
|
"event": "RATE",
|
|
304
358
|
"variant": "primary",
|
|
305
|
-
"icon": "star"
|
|
359
|
+
"icon": "star",
|
|
360
|
+
"type": "button",
|
|
361
|
+
"label": "Submit Rating"
|
|
306
362
|
}
|
|
307
|
-
]
|
|
363
|
+
],
|
|
364
|
+
"type": "stack"
|
|
308
365
|
}
|
|
309
366
|
]
|
|
310
367
|
]
|
|
311
368
|
}
|
|
312
369
|
]
|
|
313
|
-
}
|
|
370
|
+
},
|
|
371
|
+
"scope": "instance"
|
|
314
372
|
}
|
|
315
373
|
],
|
|
316
374
|
"pages": [
|
|
@@ -326,4 +384,4 @@
|
|
|
326
384
|
]
|
|
327
385
|
}
|
|
328
386
|
]
|
|
329
|
-
}
|
|
387
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-related",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-related as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "RelatedItemOrbital",
|
|
@@ -28,44 +28,124 @@
|
|
|
28
28
|
"linkedEntity": "RelatedItem",
|
|
29
29
|
"emits": [
|
|
30
30
|
{
|
|
31
|
-
"event": "
|
|
31
|
+
"event": "RelatedItemLoaded",
|
|
32
|
+
"description": "Fired when RelatedItem finishes loading",
|
|
33
|
+
"scope": "internal",
|
|
34
|
+
"payload": [
|
|
35
|
+
{
|
|
36
|
+
"name": "id",
|
|
37
|
+
"type": "string",
|
|
38
|
+
"required": true
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"name": "name",
|
|
42
|
+
"type": "string"
|
|
43
|
+
}
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"event": "RelatedItemLoadFailed",
|
|
48
|
+
"description": "Fired when RelatedItem fails to load",
|
|
49
|
+
"scope": "internal",
|
|
50
|
+
"payload": [
|
|
51
|
+
{
|
|
52
|
+
"name": "message",
|
|
53
|
+
"type": "string"
|
|
54
|
+
}
|
|
55
|
+
]
|
|
32
56
|
}
|
|
33
57
|
],
|
|
34
58
|
"stateMachine": {
|
|
35
59
|
"states": [
|
|
36
60
|
{
|
|
37
|
-
"name": "
|
|
61
|
+
"name": "loading",
|
|
38
62
|
"isInitial": true
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "loaded"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "error"
|
|
39
69
|
}
|
|
40
70
|
],
|
|
41
71
|
"events": [
|
|
42
72
|
{
|
|
43
|
-
"key": "INIT"
|
|
73
|
+
"key": "INIT",
|
|
74
|
+
"name": "Initialize"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"key": "RelatedItemLoaded",
|
|
78
|
+
"name": "RelatedItem loaded"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"key": "RelatedItemLoadFailed",
|
|
82
|
+
"name": "RelatedItem load failed",
|
|
83
|
+
"payload": [
|
|
84
|
+
{
|
|
85
|
+
"name": "message",
|
|
86
|
+
"type": "string"
|
|
87
|
+
}
|
|
88
|
+
]
|
|
44
89
|
}
|
|
45
90
|
],
|
|
46
91
|
"transitions": [
|
|
47
92
|
{
|
|
48
|
-
"from": "
|
|
49
|
-
"to": "
|
|
93
|
+
"from": "loading",
|
|
94
|
+
"to": "loading",
|
|
50
95
|
"event": "INIT",
|
|
51
96
|
"effects": [
|
|
52
97
|
[
|
|
53
|
-
"
|
|
54
|
-
"RelatedItem"
|
|
98
|
+
"fetch",
|
|
99
|
+
"RelatedItem",
|
|
100
|
+
{
|
|
101
|
+
"emit": {
|
|
102
|
+
"success": "RelatedItemLoaded",
|
|
103
|
+
"failure": "RelatedItemLoadFailed"
|
|
104
|
+
}
|
|
105
|
+
}
|
|
55
106
|
],
|
|
56
107
|
[
|
|
57
108
|
"render-ui",
|
|
58
109
|
"main",
|
|
59
110
|
{
|
|
60
|
-
"direction": "vertical",
|
|
61
111
|
"type": "stack",
|
|
112
|
+
"direction": "vertical",
|
|
113
|
+
"align": "center",
|
|
114
|
+
"className": "py-8",
|
|
115
|
+
"gap": "sm",
|
|
116
|
+
"children": [
|
|
117
|
+
{
|
|
118
|
+
"type": "spinner",
|
|
119
|
+
"size": "md"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"content": "Loading related…",
|
|
123
|
+
"type": "typography",
|
|
124
|
+
"variant": "caption",
|
|
125
|
+
"color": "muted"
|
|
126
|
+
}
|
|
127
|
+
]
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"from": "loading",
|
|
134
|
+
"to": "loaded",
|
|
135
|
+
"event": "RelatedItemLoaded",
|
|
136
|
+
"effects": [
|
|
137
|
+
[
|
|
138
|
+
"render-ui",
|
|
139
|
+
"main",
|
|
140
|
+
{
|
|
141
|
+
"direction": "vertical",
|
|
62
142
|
"gap": "md",
|
|
63
143
|
"children": [
|
|
64
144
|
{
|
|
65
|
-
"align": "center",
|
|
66
|
-
"direction": "horizontal",
|
|
67
145
|
"type": "stack",
|
|
146
|
+
"direction": "horizontal",
|
|
68
147
|
"gap": "sm",
|
|
148
|
+
"align": "center",
|
|
69
149
|
"children": [
|
|
70
150
|
{
|
|
71
151
|
"size": "md",
|
|
@@ -74,8 +154,8 @@
|
|
|
74
154
|
},
|
|
75
155
|
{
|
|
76
156
|
"variant": "h3",
|
|
77
|
-
"
|
|
78
|
-
"
|
|
157
|
+
"type": "typography",
|
|
158
|
+
"content": "Related"
|
|
79
159
|
}
|
|
80
160
|
]
|
|
81
161
|
},
|
|
@@ -83,35 +163,131 @@
|
|
|
83
163
|
"type": "divider"
|
|
84
164
|
},
|
|
85
165
|
{
|
|
86
|
-
"type": "data-list",
|
|
87
|
-
"entity": "RelatedItem",
|
|
88
|
-
"emptyTitle": "No related items",
|
|
89
|
-
"emptyIcon": "inbox",
|
|
90
|
-
"emptyDescription": "Nothing to show.",
|
|
91
166
|
"renderItem": [
|
|
92
167
|
"fn",
|
|
93
168
|
"item",
|
|
94
169
|
{
|
|
170
|
+
"gap": "xs",
|
|
95
171
|
"children": [
|
|
96
172
|
{
|
|
97
173
|
"type": "typography",
|
|
98
|
-
"
|
|
99
|
-
"
|
|
174
|
+
"content": "@item.name",
|
|
175
|
+
"variant": "body"
|
|
100
176
|
}
|
|
101
177
|
],
|
|
102
|
-
"direction": "vertical",
|
|
103
178
|
"type": "stack",
|
|
104
|
-
"
|
|
179
|
+
"direction": "vertical"
|
|
105
180
|
}
|
|
106
|
-
]
|
|
181
|
+
],
|
|
182
|
+
"emptyIcon": "inbox",
|
|
183
|
+
"type": "data-list",
|
|
184
|
+
"emptyTitle": "No related items",
|
|
185
|
+
"entity": "RelatedItem",
|
|
186
|
+
"emptyDescription": "Nothing to show."
|
|
107
187
|
}
|
|
108
|
-
]
|
|
188
|
+
],
|
|
189
|
+
"type": "stack"
|
|
190
|
+
}
|
|
191
|
+
]
|
|
192
|
+
]
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"from": "loading",
|
|
196
|
+
"to": "error",
|
|
197
|
+
"event": "RelatedItemLoadFailed",
|
|
198
|
+
"effects": [
|
|
199
|
+
[
|
|
200
|
+
"render-ui",
|
|
201
|
+
"main",
|
|
202
|
+
{
|
|
203
|
+
"align": "center",
|
|
204
|
+
"className": "py-8",
|
|
205
|
+
"gap": "sm",
|
|
206
|
+
"children": [
|
|
207
|
+
{
|
|
208
|
+
"color": "destructive",
|
|
209
|
+
"type": "icon",
|
|
210
|
+
"name": "alert-triangle",
|
|
211
|
+
"size": "lg"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"type": "typography",
|
|
215
|
+
"content": "Failed to load related",
|
|
216
|
+
"variant": "body"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"variant": "caption",
|
|
220
|
+
"color": "muted",
|
|
221
|
+
"content": "@payload.message",
|
|
222
|
+
"type": "typography"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"type": "button",
|
|
226
|
+
"icon": "rotate-ccw",
|
|
227
|
+
"label": "Retry",
|
|
228
|
+
"variant": "ghost",
|
|
229
|
+
"event": "INIT"
|
|
230
|
+
}
|
|
231
|
+
],
|
|
232
|
+
"direction": "vertical",
|
|
233
|
+
"type": "stack"
|
|
234
|
+
}
|
|
235
|
+
]
|
|
236
|
+
]
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
"from": "loaded",
|
|
240
|
+
"to": "loading",
|
|
241
|
+
"event": "INIT",
|
|
242
|
+
"effects": [
|
|
243
|
+
[
|
|
244
|
+
"fetch",
|
|
245
|
+
"RelatedItem",
|
|
246
|
+
{
|
|
247
|
+
"emit": {
|
|
248
|
+
"success": "RelatedItemLoaded",
|
|
249
|
+
"failure": "RelatedItemLoadFailed"
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
],
|
|
253
|
+
[
|
|
254
|
+
"render-ui",
|
|
255
|
+
"main",
|
|
256
|
+
{
|
|
257
|
+
"size": "md",
|
|
258
|
+
"type": "spinner"
|
|
259
|
+
}
|
|
260
|
+
]
|
|
261
|
+
]
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"from": "error",
|
|
265
|
+
"to": "loading",
|
|
266
|
+
"event": "INIT",
|
|
267
|
+
"effects": [
|
|
268
|
+
[
|
|
269
|
+
"fetch",
|
|
270
|
+
"RelatedItem",
|
|
271
|
+
{
|
|
272
|
+
"emit": {
|
|
273
|
+
"failure": "RelatedItemLoadFailed",
|
|
274
|
+
"success": "RelatedItemLoaded"
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
],
|
|
278
|
+
[
|
|
279
|
+
"render-ui",
|
|
280
|
+
"main",
|
|
281
|
+
{
|
|
282
|
+
"size": "md",
|
|
283
|
+
"type": "spinner"
|
|
109
284
|
}
|
|
110
285
|
]
|
|
111
286
|
]
|
|
112
287
|
}
|
|
113
288
|
]
|
|
114
|
-
}
|
|
289
|
+
},
|
|
290
|
+
"scope": "collection"
|
|
115
291
|
}
|
|
116
292
|
],
|
|
117
293
|
"pages": [
|
|
@@ -127,4 +303,4 @@
|
|
|
127
303
|
]
|
|
128
304
|
}
|
|
129
305
|
]
|
|
130
|
-
}
|
|
306
|
+
}
|