@almadar/std 6.5.2 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-service-storage",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-service-storage as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ServiceStorageOrbital",
|
|
@@ -70,8 +70,76 @@
|
|
|
70
70
|
"traits": [
|
|
71
71
|
{
|
|
72
72
|
"name": "ServiceStorageStorage",
|
|
73
|
-
"linkedEntity": "ServiceStorage",
|
|
74
73
|
"category": "interaction",
|
|
74
|
+
"linkedEntity": "ServiceStorage",
|
|
75
|
+
"emits": [
|
|
76
|
+
{
|
|
77
|
+
"event": "ServiceStorageLoaded",
|
|
78
|
+
"description": "Fired when ServiceStorage finishes loading",
|
|
79
|
+
"scope": "internal",
|
|
80
|
+
"payload": [
|
|
81
|
+
{
|
|
82
|
+
"name": "id",
|
|
83
|
+
"type": "string"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "name",
|
|
87
|
+
"type": "string"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"name": "description",
|
|
91
|
+
"type": "string"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "status",
|
|
95
|
+
"type": "string"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "createdAt",
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "bucket",
|
|
103
|
+
"type": "string"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "fileKey",
|
|
107
|
+
"type": "string"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "prefix",
|
|
111
|
+
"type": "string"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "content",
|
|
115
|
+
"type": "string"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "storageStatus",
|
|
119
|
+
"type": "string"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "result",
|
|
123
|
+
"type": "string"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "error",
|
|
127
|
+
"type": "string"
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"event": "ServiceStorageLoadFailed",
|
|
133
|
+
"description": "Fired when ServiceStorage fails to load",
|
|
134
|
+
"scope": "internal",
|
|
135
|
+
"payload": [
|
|
136
|
+
{
|
|
137
|
+
"name": "message",
|
|
138
|
+
"type": "string"
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
}
|
|
142
|
+
],
|
|
75
143
|
"stateMachine": {
|
|
76
144
|
"states": [
|
|
77
145
|
{
|
|
@@ -134,6 +202,20 @@
|
|
|
134
202
|
{
|
|
135
203
|
"key": "RESET",
|
|
136
204
|
"name": "Reset"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"key": "ServiceStorageLoaded",
|
|
208
|
+
"name": "ServiceStorage loaded"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"key": "ServiceStorageLoadFailed",
|
|
212
|
+
"name": "ServiceStorage load failed",
|
|
213
|
+
"payload": [
|
|
214
|
+
{
|
|
215
|
+
"name": "message",
|
|
216
|
+
"type": "string"
|
|
217
|
+
}
|
|
218
|
+
]
|
|
137
219
|
}
|
|
138
220
|
],
|
|
139
221
|
"transitions": [
|
|
@@ -144,99 +226,105 @@
|
|
|
144
226
|
"effects": [
|
|
145
227
|
[
|
|
146
228
|
"fetch",
|
|
147
|
-
"ServiceStorage"
|
|
229
|
+
"ServiceStorage",
|
|
230
|
+
{
|
|
231
|
+
"emit": {
|
|
232
|
+
"success": "ServiceStorageLoaded",
|
|
233
|
+
"failure": "ServiceStorageLoadFailed"
|
|
234
|
+
}
|
|
235
|
+
}
|
|
148
236
|
],
|
|
149
237
|
[
|
|
150
238
|
"render-ui",
|
|
151
239
|
"main",
|
|
152
240
|
{
|
|
153
|
-
"type": "stack",
|
|
154
|
-
"direction": "vertical",
|
|
155
241
|
"gap": "lg",
|
|
156
|
-
"align": "stretch",
|
|
157
242
|
"children": [
|
|
158
243
|
{
|
|
159
|
-
"type": "stack",
|
|
160
|
-
"direction": "horizontal",
|
|
161
|
-
"gap": "md",
|
|
162
244
|
"align": "center",
|
|
163
245
|
"children": [
|
|
164
246
|
{
|
|
247
|
+
"size": "lg",
|
|
165
248
|
"type": "icon",
|
|
166
|
-
"name": "hard-drive"
|
|
167
|
-
"size": "lg"
|
|
249
|
+
"name": "hard-drive"
|
|
168
250
|
},
|
|
169
251
|
{
|
|
170
252
|
"type": "typography",
|
|
171
253
|
"content": "ServiceStorage Storage",
|
|
172
254
|
"variant": "h2"
|
|
173
255
|
}
|
|
174
|
-
]
|
|
256
|
+
],
|
|
257
|
+
"type": "stack",
|
|
258
|
+
"gap": "md",
|
|
259
|
+
"direction": "horizontal"
|
|
175
260
|
},
|
|
176
261
|
{
|
|
177
262
|
"type": "divider"
|
|
178
263
|
},
|
|
179
264
|
{
|
|
180
|
-
"type": "input",
|
|
181
|
-
"label": "Bucket",
|
|
182
265
|
"bind": "@entity.bucket",
|
|
183
|
-
"
|
|
266
|
+
"type": "input",
|
|
267
|
+
"placeholder": "bucket-name",
|
|
268
|
+
"label": "Bucket"
|
|
184
269
|
},
|
|
185
270
|
{
|
|
186
|
-
"type": "input",
|
|
187
|
-
"label": "File Key",
|
|
188
271
|
"bind": "@entity.fileKey",
|
|
272
|
+
"label": "File Key",
|
|
273
|
+
"type": "input",
|
|
189
274
|
"placeholder": "path/to/file.txt"
|
|
190
275
|
},
|
|
191
276
|
{
|
|
277
|
+
"placeholder": "path/prefix/",
|
|
192
278
|
"type": "input",
|
|
193
279
|
"label": "Prefix",
|
|
194
|
-
"bind": "@entity.prefix"
|
|
195
|
-
"placeholder": "path/prefix/"
|
|
280
|
+
"bind": "@entity.prefix"
|
|
196
281
|
},
|
|
197
282
|
{
|
|
283
|
+
"bind": "@entity.content",
|
|
198
284
|
"type": "textarea",
|
|
199
285
|
"label": "Content",
|
|
200
|
-
"bind": "@entity.content",
|
|
201
286
|
"placeholder": "File content..."
|
|
202
287
|
},
|
|
203
288
|
{
|
|
204
|
-
"type": "stack",
|
|
205
|
-
"direction": "horizontal",
|
|
206
|
-
"gap": "sm",
|
|
207
|
-
"justify": "center",
|
|
208
289
|
"children": [
|
|
209
290
|
{
|
|
210
|
-
"type": "button",
|
|
211
291
|
"label": "Upload",
|
|
292
|
+
"type": "button",
|
|
212
293
|
"event": "UPLOAD_FILE",
|
|
213
294
|
"variant": "primary",
|
|
214
295
|
"icon": "upload"
|
|
215
296
|
},
|
|
216
297
|
{
|
|
298
|
+
"event": "DOWNLOAD_FILE",
|
|
217
299
|
"type": "button",
|
|
218
300
|
"label": "Download",
|
|
219
|
-
"event": "DOWNLOAD_FILE",
|
|
220
301
|
"variant": "secondary",
|
|
221
302
|
"icon": "download"
|
|
222
303
|
},
|
|
223
304
|
{
|
|
224
|
-
"type": "button",
|
|
225
|
-
"label": "List",
|
|
226
|
-
"event": "LIST_FILES",
|
|
227
305
|
"variant": "secondary",
|
|
228
|
-
"
|
|
306
|
+
"event": "LIST_FILES",
|
|
307
|
+
"icon": "list",
|
|
308
|
+
"type": "button",
|
|
309
|
+
"label": "List"
|
|
229
310
|
},
|
|
230
311
|
{
|
|
231
|
-
"
|
|
312
|
+
"icon": "trash-2",
|
|
232
313
|
"label": "Delete",
|
|
233
|
-
"
|
|
314
|
+
"type": "button",
|
|
234
315
|
"variant": "destructive",
|
|
235
|
-
"
|
|
316
|
+
"event": "DELETE_FILE"
|
|
236
317
|
}
|
|
237
|
-
]
|
|
318
|
+
],
|
|
319
|
+
"justify": "center",
|
|
320
|
+
"type": "stack",
|
|
321
|
+
"direction": "horizontal",
|
|
322
|
+
"gap": "sm"
|
|
238
323
|
}
|
|
239
|
-
]
|
|
324
|
+
],
|
|
325
|
+
"type": "stack",
|
|
326
|
+
"direction": "vertical",
|
|
327
|
+
"align": "stretch"
|
|
240
328
|
}
|
|
241
329
|
]
|
|
242
330
|
]
|
|
@@ -250,9 +338,9 @@
|
|
|
250
338
|
"render-ui",
|
|
251
339
|
"main",
|
|
252
340
|
{
|
|
341
|
+
"message": "Executing storage operation on servicestorage...",
|
|
253
342
|
"type": "loading-state",
|
|
254
|
-
"title": "Processing..."
|
|
255
|
-
"message": "Executing storage operation on servicestorage..."
|
|
343
|
+
"title": "Processing..."
|
|
256
344
|
}
|
|
257
345
|
],
|
|
258
346
|
[
|
|
@@ -260,9 +348,9 @@
|
|
|
260
348
|
"storage",
|
|
261
349
|
"upload",
|
|
262
350
|
{
|
|
263
|
-
"
|
|
351
|
+
"content": "@entity.content",
|
|
264
352
|
"key": "@entity.fileKey",
|
|
265
|
-
"
|
|
353
|
+
"bucket": "@entity.bucket"
|
|
266
354
|
}
|
|
267
355
|
]
|
|
268
356
|
]
|
|
@@ -276,9 +364,9 @@
|
|
|
276
364
|
"render-ui",
|
|
277
365
|
"main",
|
|
278
366
|
{
|
|
367
|
+
"message": "Executing storage operation on servicestorage...",
|
|
279
368
|
"type": "loading-state",
|
|
280
|
-
"title": "Processing..."
|
|
281
|
-
"message": "Executing storage operation on servicestorage..."
|
|
369
|
+
"title": "Processing..."
|
|
282
370
|
}
|
|
283
371
|
],
|
|
284
372
|
[
|
|
@@ -301,9 +389,9 @@
|
|
|
301
389
|
"render-ui",
|
|
302
390
|
"main",
|
|
303
391
|
{
|
|
304
|
-
"type": "loading-state",
|
|
305
392
|
"title": "Processing...",
|
|
306
|
-
"message": "Executing storage operation on servicestorage..."
|
|
393
|
+
"message": "Executing storage operation on servicestorage...",
|
|
394
|
+
"type": "loading-state"
|
|
307
395
|
}
|
|
308
396
|
],
|
|
309
397
|
[
|
|
@@ -326,9 +414,9 @@
|
|
|
326
414
|
"render-ui",
|
|
327
415
|
"main",
|
|
328
416
|
{
|
|
417
|
+
"message": "Executing storage operation on servicestorage...",
|
|
329
418
|
"type": "loading-state",
|
|
330
|
-
"title": "Processing..."
|
|
331
|
-
"message": "Executing storage operation on servicestorage..."
|
|
419
|
+
"title": "Processing..."
|
|
332
420
|
}
|
|
333
421
|
],
|
|
334
422
|
[
|
|
@@ -364,7 +452,6 @@
|
|
|
364
452
|
"type": "stack",
|
|
365
453
|
"direction": "vertical",
|
|
366
454
|
"gap": "lg",
|
|
367
|
-
"align": "center",
|
|
368
455
|
"children": [
|
|
369
456
|
{
|
|
370
457
|
"type": "icon",
|
|
@@ -372,24 +459,25 @@
|
|
|
372
459
|
"size": "lg"
|
|
373
460
|
},
|
|
374
461
|
{
|
|
375
|
-
"
|
|
462
|
+
"message": "Operation completed successfully",
|
|
376
463
|
"variant": "success",
|
|
377
|
-
"
|
|
464
|
+
"type": "alert"
|
|
378
465
|
},
|
|
379
466
|
{
|
|
380
|
-
"type": "typography",
|
|
381
|
-
"variant": "body",
|
|
382
467
|
"color": "muted",
|
|
383
|
-
"
|
|
468
|
+
"type": "typography",
|
|
469
|
+
"content": "@entity.result",
|
|
470
|
+
"variant": "body"
|
|
384
471
|
},
|
|
385
472
|
{
|
|
386
|
-
"type": "button",
|
|
387
473
|
"label": "Back",
|
|
388
|
-
"
|
|
474
|
+
"type": "button",
|
|
389
475
|
"variant": "ghost",
|
|
476
|
+
"event": "RESET",
|
|
390
477
|
"icon": "rotate-ccw"
|
|
391
478
|
}
|
|
392
|
-
]
|
|
479
|
+
],
|
|
480
|
+
"align": "center"
|
|
393
481
|
}
|
|
394
482
|
]
|
|
395
483
|
]
|
|
@@ -413,22 +501,22 @@
|
|
|
413
501
|
"render-ui",
|
|
414
502
|
"main",
|
|
415
503
|
{
|
|
504
|
+
"gap": "lg",
|
|
416
505
|
"type": "stack",
|
|
417
506
|
"direction": "vertical",
|
|
418
|
-
"gap": "lg",
|
|
419
507
|
"align": "center",
|
|
420
508
|
"children": [
|
|
421
509
|
{
|
|
422
|
-
"type": "error-state",
|
|
423
510
|
"title": "Operation Failed",
|
|
424
|
-
"message": "@entity.error"
|
|
511
|
+
"message": "@entity.error",
|
|
512
|
+
"type": "error-state"
|
|
425
513
|
},
|
|
426
514
|
{
|
|
427
|
-
"type": "button",
|
|
428
|
-
"label": "Back",
|
|
429
515
|
"event": "RESET",
|
|
430
516
|
"variant": "ghost",
|
|
431
|
-
"
|
|
517
|
+
"type": "button",
|
|
518
|
+
"icon": "rotate-ccw",
|
|
519
|
+
"label": "Back"
|
|
432
520
|
}
|
|
433
521
|
]
|
|
434
522
|
}
|
|
@@ -449,43 +537,43 @@
|
|
|
449
537
|
"render-ui",
|
|
450
538
|
"main",
|
|
451
539
|
{
|
|
452
|
-
"type": "stack",
|
|
453
|
-
"direction": "vertical",
|
|
454
540
|
"gap": "lg",
|
|
541
|
+
"type": "stack",
|
|
455
542
|
"align": "stretch",
|
|
543
|
+
"direction": "vertical",
|
|
456
544
|
"children": [
|
|
457
545
|
{
|
|
458
|
-
"type": "stack",
|
|
459
|
-
"direction": "horizontal",
|
|
460
|
-
"gap": "md",
|
|
461
546
|
"align": "center",
|
|
547
|
+
"type": "stack",
|
|
462
548
|
"children": [
|
|
463
549
|
{
|
|
464
|
-
"type": "icon",
|
|
465
550
|
"name": "hard-drive",
|
|
466
|
-
"size": "lg"
|
|
551
|
+
"size": "lg",
|
|
552
|
+
"type": "icon"
|
|
467
553
|
},
|
|
468
554
|
{
|
|
555
|
+
"variant": "h2",
|
|
469
556
|
"type": "typography",
|
|
470
|
-
"content": "ServiceStorage Storage"
|
|
471
|
-
"variant": "h2"
|
|
557
|
+
"content": "ServiceStorage Storage"
|
|
472
558
|
}
|
|
473
|
-
]
|
|
559
|
+
],
|
|
560
|
+
"gap": "md",
|
|
561
|
+
"direction": "horizontal"
|
|
474
562
|
},
|
|
475
563
|
{
|
|
476
564
|
"type": "divider"
|
|
477
565
|
},
|
|
478
566
|
{
|
|
567
|
+
"bind": "@entity.bucket",
|
|
479
568
|
"type": "input",
|
|
480
569
|
"label": "Bucket",
|
|
481
|
-
"bind": "@entity.bucket",
|
|
482
570
|
"placeholder": "bucket-name"
|
|
483
571
|
},
|
|
484
572
|
{
|
|
485
|
-
"
|
|
573
|
+
"placeholder": "path/to/file.txt",
|
|
486
574
|
"label": "File Key",
|
|
487
|
-
"
|
|
488
|
-
"
|
|
575
|
+
"type": "input",
|
|
576
|
+
"bind": "@entity.fileKey"
|
|
489
577
|
},
|
|
490
578
|
{
|
|
491
579
|
"type": "input",
|
|
@@ -494,37 +582,37 @@
|
|
|
494
582
|
"placeholder": "path/prefix/"
|
|
495
583
|
},
|
|
496
584
|
{
|
|
585
|
+
"bind": "@entity.content",
|
|
497
586
|
"type": "textarea",
|
|
498
587
|
"label": "Content",
|
|
499
|
-
"bind": "@entity.content",
|
|
500
588
|
"placeholder": "File content..."
|
|
501
589
|
},
|
|
502
590
|
{
|
|
503
|
-
"type": "stack",
|
|
504
591
|
"direction": "horizontal",
|
|
505
|
-
"gap": "sm",
|
|
506
592
|
"justify": "center",
|
|
593
|
+
"gap": "sm",
|
|
594
|
+
"type": "stack",
|
|
507
595
|
"children": [
|
|
508
596
|
{
|
|
509
|
-
"type": "button",
|
|
510
597
|
"label": "Upload",
|
|
511
|
-
"event": "UPLOAD_FILE",
|
|
512
598
|
"variant": "primary",
|
|
513
|
-
"icon": "upload"
|
|
599
|
+
"icon": "upload",
|
|
600
|
+
"event": "UPLOAD_FILE",
|
|
601
|
+
"type": "button"
|
|
514
602
|
},
|
|
515
603
|
{
|
|
516
|
-
"
|
|
604
|
+
"variant": "secondary",
|
|
517
605
|
"label": "Download",
|
|
518
606
|
"event": "DOWNLOAD_FILE",
|
|
519
|
-
"
|
|
520
|
-
"
|
|
607
|
+
"icon": "download",
|
|
608
|
+
"type": "button"
|
|
521
609
|
},
|
|
522
610
|
{
|
|
611
|
+
"variant": "secondary",
|
|
523
612
|
"type": "button",
|
|
524
613
|
"label": "List",
|
|
525
|
-
"
|
|
526
|
-
"
|
|
527
|
-
"icon": "list"
|
|
614
|
+
"icon": "list",
|
|
615
|
+
"event": "LIST_FILES"
|
|
528
616
|
},
|
|
529
617
|
{
|
|
530
618
|
"type": "button",
|
|
@@ -555,98 +643,99 @@
|
|
|
555
643
|
"main",
|
|
556
644
|
{
|
|
557
645
|
"type": "stack",
|
|
558
|
-
"direction": "vertical",
|
|
559
|
-
"gap": "lg",
|
|
560
|
-
"align": "stretch",
|
|
561
646
|
"children": [
|
|
562
647
|
{
|
|
563
648
|
"type": "stack",
|
|
564
|
-
"direction": "horizontal",
|
|
565
|
-
"gap": "md",
|
|
566
649
|
"align": "center",
|
|
567
650
|
"children": [
|
|
568
651
|
{
|
|
569
652
|
"type": "icon",
|
|
570
|
-
"
|
|
571
|
-
"
|
|
653
|
+
"size": "lg",
|
|
654
|
+
"name": "hard-drive"
|
|
572
655
|
},
|
|
573
656
|
{
|
|
657
|
+
"variant": "h2",
|
|
574
658
|
"type": "typography",
|
|
575
|
-
"content": "ServiceStorage Storage"
|
|
576
|
-
"variant": "h2"
|
|
659
|
+
"content": "ServiceStorage Storage"
|
|
577
660
|
}
|
|
578
|
-
]
|
|
661
|
+
],
|
|
662
|
+
"direction": "horizontal",
|
|
663
|
+
"gap": "md"
|
|
579
664
|
},
|
|
580
665
|
{
|
|
581
666
|
"type": "divider"
|
|
582
667
|
},
|
|
583
668
|
{
|
|
584
|
-
"type": "input",
|
|
585
669
|
"label": "Bucket",
|
|
586
|
-
"
|
|
587
|
-
"placeholder": "bucket-name"
|
|
670
|
+
"type": "input",
|
|
671
|
+
"placeholder": "bucket-name",
|
|
672
|
+
"bind": "@entity.bucket"
|
|
588
673
|
},
|
|
589
674
|
{
|
|
590
|
-
"type": "input",
|
|
591
675
|
"label": "File Key",
|
|
592
676
|
"bind": "@entity.fileKey",
|
|
677
|
+
"type": "input",
|
|
593
678
|
"placeholder": "path/to/file.txt"
|
|
594
679
|
},
|
|
595
680
|
{
|
|
596
|
-
"
|
|
681
|
+
"placeholder": "path/prefix/",
|
|
597
682
|
"label": "Prefix",
|
|
598
683
|
"bind": "@entity.prefix",
|
|
599
|
-
"
|
|
684
|
+
"type": "input"
|
|
600
685
|
},
|
|
601
686
|
{
|
|
602
|
-
"type": "textarea",
|
|
603
687
|
"label": "Content",
|
|
604
|
-
"
|
|
605
|
-
"placeholder": "File content..."
|
|
688
|
+
"type": "textarea",
|
|
689
|
+
"placeholder": "File content...",
|
|
690
|
+
"bind": "@entity.content"
|
|
606
691
|
},
|
|
607
692
|
{
|
|
608
693
|
"type": "stack",
|
|
609
|
-
"direction": "horizontal",
|
|
610
|
-
"gap": "sm",
|
|
611
694
|
"justify": "center",
|
|
612
695
|
"children": [
|
|
613
696
|
{
|
|
614
697
|
"type": "button",
|
|
615
698
|
"label": "Upload",
|
|
616
|
-
"
|
|
699
|
+
"icon": "upload",
|
|
617
700
|
"variant": "primary",
|
|
618
|
-
"
|
|
701
|
+
"event": "UPLOAD_FILE"
|
|
619
702
|
},
|
|
620
703
|
{
|
|
621
704
|
"type": "button",
|
|
622
|
-
"label": "Download",
|
|
623
|
-
"event": "DOWNLOAD_FILE",
|
|
624
705
|
"variant": "secondary",
|
|
625
|
-
"
|
|
706
|
+
"event": "DOWNLOAD_FILE",
|
|
707
|
+
"icon": "download",
|
|
708
|
+
"label": "Download"
|
|
626
709
|
},
|
|
627
710
|
{
|
|
628
711
|
"type": "button",
|
|
629
|
-
"
|
|
630
|
-
"event": "LIST_FILES",
|
|
712
|
+
"icon": "list",
|
|
631
713
|
"variant": "secondary",
|
|
632
|
-
"
|
|
714
|
+
"event": "LIST_FILES",
|
|
715
|
+
"label": "List"
|
|
633
716
|
},
|
|
634
717
|
{
|
|
718
|
+
"icon": "trash-2",
|
|
635
719
|
"type": "button",
|
|
636
|
-
"label": "Delete",
|
|
637
|
-
"event": "DELETE_FILE",
|
|
638
720
|
"variant": "destructive",
|
|
639
|
-
"
|
|
721
|
+
"label": "Delete",
|
|
722
|
+
"event": "DELETE_FILE"
|
|
640
723
|
}
|
|
641
|
-
]
|
|
724
|
+
],
|
|
725
|
+
"direction": "horizontal",
|
|
726
|
+
"gap": "sm"
|
|
642
727
|
}
|
|
643
|
-
]
|
|
728
|
+
],
|
|
729
|
+
"direction": "vertical",
|
|
730
|
+
"gap": "lg",
|
|
731
|
+
"align": "stretch"
|
|
644
732
|
}
|
|
645
733
|
]
|
|
646
734
|
]
|
|
647
735
|
}
|
|
648
736
|
]
|
|
649
|
-
}
|
|
737
|
+
},
|
|
738
|
+
"scope": "instance"
|
|
650
739
|
}
|
|
651
740
|
],
|
|
652
741
|
"pages": [
|
|
@@ -662,4 +751,4 @@
|
|
|
662
751
|
]
|
|
663
752
|
}
|
|
664
753
|
]
|
|
665
|
-
}
|
|
754
|
+
}
|