@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-github",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-service-github as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ServiceGithubOrbital",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
{
|
|
43
43
|
"name": "prNumber",
|
|
44
44
|
"type": "number",
|
|
45
|
-
"default": 0
|
|
45
|
+
"default": 0.0
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
48
|
"name": "ghStatus",
|
|
@@ -81,8 +81,81 @@
|
|
|
81
81
|
"traits": [
|
|
82
82
|
{
|
|
83
83
|
"name": "ServiceGithubGithub",
|
|
84
|
-
"linkedEntity": "ServiceGithub",
|
|
85
84
|
"category": "interaction",
|
|
85
|
+
"linkedEntity": "ServiceGithub",
|
|
86
|
+
"emits": [
|
|
87
|
+
{
|
|
88
|
+
"event": "ServiceGithubLoaded",
|
|
89
|
+
"description": "Fired when ServiceGithub finishes loading",
|
|
90
|
+
"scope": "internal",
|
|
91
|
+
"payload": [
|
|
92
|
+
{
|
|
93
|
+
"name": "id",
|
|
94
|
+
"type": "string",
|
|
95
|
+
"required": true
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "title",
|
|
99
|
+
"type": "string"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "body",
|
|
103
|
+
"type": "string"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"name": "head",
|
|
107
|
+
"type": "string"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "base",
|
|
111
|
+
"type": "string"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"name": "prUrl",
|
|
115
|
+
"type": "string"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "prNumber",
|
|
119
|
+
"type": "number"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"name": "ghStatus",
|
|
123
|
+
"type": "string"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "error",
|
|
127
|
+
"type": "string"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "name",
|
|
131
|
+
"type": "string"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "description",
|
|
135
|
+
"type": "string"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "status",
|
|
139
|
+
"type": "string"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "createdAt",
|
|
143
|
+
"type": "string"
|
|
144
|
+
}
|
|
145
|
+
]
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"event": "ServiceGithubLoadFailed",
|
|
149
|
+
"description": "Fired when ServiceGithub fails to load",
|
|
150
|
+
"scope": "internal",
|
|
151
|
+
"payload": [
|
|
152
|
+
{
|
|
153
|
+
"name": "message",
|
|
154
|
+
"type": "string"
|
|
155
|
+
}
|
|
156
|
+
]
|
|
157
|
+
}
|
|
158
|
+
],
|
|
86
159
|
"stateMachine": {
|
|
87
160
|
"states": [
|
|
88
161
|
{
|
|
@@ -106,11 +179,11 @@
|
|
|
106
179
|
},
|
|
107
180
|
{
|
|
108
181
|
"key": "CREATE_PR",
|
|
109
|
-
"name": "Create
|
|
182
|
+
"name": "Create Pr"
|
|
110
183
|
},
|
|
111
184
|
{
|
|
112
185
|
"key": "PR_CREATED",
|
|
113
|
-
"name": "
|
|
186
|
+
"name": "Pr Created",
|
|
114
187
|
"payload": [
|
|
115
188
|
{
|
|
116
189
|
"name": "url",
|
|
@@ -135,13 +208,27 @@
|
|
|
135
208
|
}
|
|
136
209
|
]
|
|
137
210
|
},
|
|
211
|
+
{
|
|
212
|
+
"key": "RESET",
|
|
213
|
+
"name": "Reset"
|
|
214
|
+
},
|
|
138
215
|
{
|
|
139
216
|
"key": "RETRY",
|
|
140
217
|
"name": "Retry"
|
|
141
218
|
},
|
|
142
219
|
{
|
|
143
|
-
"key": "
|
|
144
|
-
"name": "
|
|
220
|
+
"key": "ServiceGithubLoaded",
|
|
221
|
+
"name": "ServiceGithub loaded"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"key": "ServiceGithubLoadFailed",
|
|
225
|
+
"name": "ServiceGithub load failed",
|
|
226
|
+
"payload": [
|
|
227
|
+
{
|
|
228
|
+
"name": "message",
|
|
229
|
+
"type": "string"
|
|
230
|
+
}
|
|
231
|
+
]
|
|
145
232
|
}
|
|
146
233
|
],
|
|
147
234
|
"transitions": [
|
|
@@ -152,77 +239,83 @@
|
|
|
152
239
|
"effects": [
|
|
153
240
|
[
|
|
154
241
|
"fetch",
|
|
155
|
-
"ServiceGithub"
|
|
242
|
+
"ServiceGithub",
|
|
243
|
+
{
|
|
244
|
+
"emit": {
|
|
245
|
+
"success": "ServiceGithubLoaded",
|
|
246
|
+
"failure": "ServiceGithubLoadFailed"
|
|
247
|
+
}
|
|
248
|
+
}
|
|
156
249
|
],
|
|
157
250
|
[
|
|
158
251
|
"render-ui",
|
|
159
252
|
"main",
|
|
160
253
|
{
|
|
161
254
|
"type": "stack",
|
|
162
|
-
"direction": "vertical",
|
|
163
|
-
"gap": "lg",
|
|
164
255
|
"align": "center",
|
|
256
|
+
"direction": "vertical",
|
|
165
257
|
"children": [
|
|
166
258
|
{
|
|
167
|
-
"type": "stack",
|
|
168
|
-
"direction": "horizontal",
|
|
169
|
-
"gap": "md",
|
|
170
259
|
"align": "center",
|
|
171
260
|
"children": [
|
|
172
261
|
{
|
|
173
262
|
"type": "icon",
|
|
174
|
-
"
|
|
175
|
-
"
|
|
263
|
+
"size": "lg",
|
|
264
|
+
"name": "git-pull-request"
|
|
176
265
|
},
|
|
177
266
|
{
|
|
178
267
|
"type": "typography",
|
|
179
268
|
"content": "Create Pull Request",
|
|
180
269
|
"variant": "h2"
|
|
181
270
|
}
|
|
182
|
-
]
|
|
271
|
+
],
|
|
272
|
+
"type": "stack",
|
|
273
|
+
"gap": "md",
|
|
274
|
+
"direction": "horizontal"
|
|
183
275
|
},
|
|
184
276
|
{
|
|
185
277
|
"type": "divider"
|
|
186
278
|
},
|
|
187
279
|
{
|
|
188
|
-
"type": "stack",
|
|
189
280
|
"direction": "vertical",
|
|
190
281
|
"gap": "md",
|
|
282
|
+
"type": "stack",
|
|
191
283
|
"children": [
|
|
192
284
|
{
|
|
193
|
-
"
|
|
194
|
-
"label": "Title",
|
|
285
|
+
"placeholder": "PR title",
|
|
195
286
|
"field": "title",
|
|
196
|
-
"
|
|
287
|
+
"type": "input",
|
|
288
|
+
"label": "Title"
|
|
197
289
|
},
|
|
198
290
|
{
|
|
199
|
-
"type": "textarea",
|
|
200
291
|
"label": "Body",
|
|
201
292
|
"field": "body",
|
|
202
|
-
"placeholder": "Describe your changes..."
|
|
293
|
+
"placeholder": "Describe your changes...",
|
|
294
|
+
"type": "textarea"
|
|
203
295
|
},
|
|
204
296
|
{
|
|
205
|
-
"type": "input",
|
|
206
|
-
"label": "Head Branch",
|
|
207
297
|
"field": "head",
|
|
208
|
-
"placeholder": "feature-branch"
|
|
298
|
+
"placeholder": "feature-branch",
|
|
299
|
+
"label": "Head Branch",
|
|
300
|
+
"type": "input"
|
|
209
301
|
},
|
|
210
302
|
{
|
|
211
|
-
"
|
|
212
|
-
"label": "Base Branch",
|
|
303
|
+
"placeholder": "main",
|
|
213
304
|
"field": "base",
|
|
214
|
-
"
|
|
305
|
+
"type": "input",
|
|
306
|
+
"label": "Base Branch"
|
|
215
307
|
}
|
|
216
308
|
]
|
|
217
309
|
},
|
|
218
310
|
{
|
|
311
|
+
"event": "CREATE_PR",
|
|
219
312
|
"type": "button",
|
|
220
313
|
"label": "Create PR",
|
|
221
|
-
"event": "CREATE_PR",
|
|
222
314
|
"variant": "primary",
|
|
223
315
|
"icon": "git-pull-request"
|
|
224
316
|
}
|
|
225
|
-
]
|
|
317
|
+
],
|
|
318
|
+
"gap": "lg"
|
|
226
319
|
}
|
|
227
320
|
]
|
|
228
321
|
]
|
|
@@ -236,9 +329,9 @@
|
|
|
236
329
|
"render-ui",
|
|
237
330
|
"main",
|
|
238
331
|
{
|
|
332
|
+
"message": "Submitting your PR to GitHub.",
|
|
239
333
|
"type": "loading-state",
|
|
240
|
-
"title": "Creating pull request..."
|
|
241
|
-
"message": "Submitting your PR to GitHub."
|
|
334
|
+
"title": "Creating pull request..."
|
|
242
335
|
}
|
|
243
336
|
],
|
|
244
337
|
[
|
|
@@ -246,10 +339,10 @@
|
|
|
246
339
|
"github",
|
|
247
340
|
"createPR",
|
|
248
341
|
{
|
|
249
|
-
"title": "@entity.title",
|
|
250
342
|
"body": "@entity.body",
|
|
251
343
|
"head": "@entity.head",
|
|
252
|
-
"base": "@entity.base"
|
|
344
|
+
"base": "@entity.base",
|
|
345
|
+
"title": "@entity.title"
|
|
253
346
|
}
|
|
254
347
|
]
|
|
255
348
|
]
|
|
@@ -278,15 +371,15 @@
|
|
|
278
371
|
"render-ui",
|
|
279
372
|
"main",
|
|
280
373
|
{
|
|
374
|
+
"align": "center",
|
|
375
|
+
"gap": "lg",
|
|
281
376
|
"type": "stack",
|
|
282
377
|
"direction": "vertical",
|
|
283
|
-
"gap": "lg",
|
|
284
|
-
"align": "center",
|
|
285
378
|
"children": [
|
|
286
379
|
{
|
|
380
|
+
"size": "lg",
|
|
287
381
|
"type": "icon",
|
|
288
|
-
"name": "check-circle"
|
|
289
|
-
"size": "lg"
|
|
382
|
+
"name": "check-circle"
|
|
290
383
|
},
|
|
291
384
|
{
|
|
292
385
|
"type": "alert",
|
|
@@ -294,16 +387,16 @@
|
|
|
294
387
|
"message": "Pull request created!"
|
|
295
388
|
},
|
|
296
389
|
{
|
|
297
|
-
"type": "typography",
|
|
298
390
|
"variant": "body",
|
|
299
391
|
"color": "muted",
|
|
392
|
+
"type": "typography",
|
|
300
393
|
"content": "@entity.prUrl"
|
|
301
394
|
},
|
|
302
395
|
{
|
|
303
|
-
"type": "button",
|
|
304
|
-
"label": "Create Another",
|
|
305
396
|
"event": "RESET",
|
|
397
|
+
"label": "Create Another",
|
|
306
398
|
"variant": "ghost",
|
|
399
|
+
"type": "button",
|
|
307
400
|
"icon": "rotate-ccw"
|
|
308
401
|
}
|
|
309
402
|
]
|
|
@@ -325,18 +418,18 @@
|
|
|
325
418
|
"render-ui",
|
|
326
419
|
"main",
|
|
327
420
|
{
|
|
328
|
-
"type": "error-state",
|
|
329
421
|
"title": "PR Creation Failed",
|
|
330
|
-
"
|
|
331
|
-
"
|
|
422
|
+
"onRetry": "RETRY",
|
|
423
|
+
"type": "error-state",
|
|
424
|
+
"message": "@entity.error"
|
|
332
425
|
}
|
|
333
426
|
]
|
|
334
427
|
]
|
|
335
428
|
},
|
|
336
429
|
{
|
|
337
|
-
"from": "
|
|
430
|
+
"from": "prCreated",
|
|
338
431
|
"to": "idle",
|
|
339
|
-
"event": "
|
|
432
|
+
"event": "RESET",
|
|
340
433
|
"effects": [
|
|
341
434
|
[
|
|
342
435
|
"render-ui",
|
|
@@ -344,58 +437,57 @@
|
|
|
344
437
|
{
|
|
345
438
|
"type": "stack",
|
|
346
439
|
"direction": "vertical",
|
|
347
|
-
"gap": "lg",
|
|
348
440
|
"align": "center",
|
|
349
441
|
"children": [
|
|
350
442
|
{
|
|
351
443
|
"type": "stack",
|
|
352
|
-
"direction": "horizontal",
|
|
353
|
-
"gap": "md",
|
|
354
|
-
"align": "center",
|
|
355
444
|
"children": [
|
|
356
445
|
{
|
|
446
|
+
"size": "lg",
|
|
357
447
|
"type": "icon",
|
|
358
|
-
"name": "git-pull-request"
|
|
359
|
-
"size": "lg"
|
|
448
|
+
"name": "git-pull-request"
|
|
360
449
|
},
|
|
361
450
|
{
|
|
451
|
+
"variant": "h2",
|
|
362
452
|
"type": "typography",
|
|
363
|
-
"content": "Create Pull Request"
|
|
364
|
-
"variant": "h2"
|
|
453
|
+
"content": "Create Pull Request"
|
|
365
454
|
}
|
|
366
|
-
]
|
|
455
|
+
],
|
|
456
|
+
"gap": "md",
|
|
457
|
+
"direction": "horizontal",
|
|
458
|
+
"align": "center"
|
|
367
459
|
},
|
|
368
460
|
{
|
|
369
461
|
"type": "divider"
|
|
370
462
|
},
|
|
371
463
|
{
|
|
372
|
-
"type": "stack",
|
|
373
464
|
"direction": "vertical",
|
|
374
465
|
"gap": "md",
|
|
466
|
+
"type": "stack",
|
|
375
467
|
"children": [
|
|
376
468
|
{
|
|
377
|
-
"
|
|
378
|
-
"label": "Title",
|
|
469
|
+
"placeholder": "PR title",
|
|
379
470
|
"field": "title",
|
|
380
|
-
"
|
|
471
|
+
"type": "input",
|
|
472
|
+
"label": "Title"
|
|
381
473
|
},
|
|
382
474
|
{
|
|
475
|
+
"placeholder": "Describe your changes...",
|
|
383
476
|
"type": "textarea",
|
|
384
477
|
"label": "Body",
|
|
385
|
-
"field": "body"
|
|
386
|
-
"placeholder": "Describe your changes..."
|
|
478
|
+
"field": "body"
|
|
387
479
|
},
|
|
388
480
|
{
|
|
389
|
-
"type": "input",
|
|
390
|
-
"label": "Head Branch",
|
|
391
481
|
"field": "head",
|
|
392
|
-
"placeholder": "feature-branch"
|
|
482
|
+
"placeholder": "feature-branch",
|
|
483
|
+
"type": "input",
|
|
484
|
+
"label": "Head Branch"
|
|
393
485
|
},
|
|
394
486
|
{
|
|
395
|
-
"type": "input",
|
|
396
|
-
"label": "Base Branch",
|
|
397
487
|
"field": "base",
|
|
398
|
-
"
|
|
488
|
+
"type": "input",
|
|
489
|
+
"placeholder": "main",
|
|
490
|
+
"label": "Base Branch"
|
|
399
491
|
}
|
|
400
492
|
]
|
|
401
493
|
},
|
|
@@ -406,85 +498,86 @@
|
|
|
406
498
|
"variant": "primary",
|
|
407
499
|
"icon": "git-pull-request"
|
|
408
500
|
}
|
|
409
|
-
]
|
|
501
|
+
],
|
|
502
|
+
"gap": "lg"
|
|
410
503
|
}
|
|
411
504
|
]
|
|
412
505
|
]
|
|
413
506
|
},
|
|
414
507
|
{
|
|
415
|
-
"from": "
|
|
508
|
+
"from": "error",
|
|
416
509
|
"to": "idle",
|
|
417
|
-
"event": "
|
|
510
|
+
"event": "RETRY",
|
|
418
511
|
"effects": [
|
|
419
512
|
[
|
|
420
513
|
"render-ui",
|
|
421
514
|
"main",
|
|
422
515
|
{
|
|
423
|
-
"type": "stack",
|
|
424
|
-
"direction": "vertical",
|
|
425
|
-
"gap": "lg",
|
|
426
|
-
"align": "center",
|
|
427
516
|
"children": [
|
|
428
517
|
{
|
|
429
|
-
"type": "stack",
|
|
430
|
-
"direction": "horizontal",
|
|
431
|
-
"gap": "md",
|
|
432
|
-
"align": "center",
|
|
433
518
|
"children": [
|
|
434
519
|
{
|
|
435
|
-
"
|
|
520
|
+
"size": "lg",
|
|
436
521
|
"name": "git-pull-request",
|
|
437
|
-
"
|
|
522
|
+
"type": "icon"
|
|
438
523
|
},
|
|
439
524
|
{
|
|
440
|
-
"type": "typography",
|
|
441
525
|
"content": "Create Pull Request",
|
|
526
|
+
"type": "typography",
|
|
442
527
|
"variant": "h2"
|
|
443
528
|
}
|
|
444
|
-
]
|
|
529
|
+
],
|
|
530
|
+
"direction": "horizontal",
|
|
531
|
+
"align": "center",
|
|
532
|
+
"type": "stack",
|
|
533
|
+
"gap": "md"
|
|
445
534
|
},
|
|
446
535
|
{
|
|
447
536
|
"type": "divider"
|
|
448
537
|
},
|
|
449
538
|
{
|
|
450
|
-
"type": "stack",
|
|
451
539
|
"direction": "vertical",
|
|
452
|
-
"gap": "md",
|
|
453
540
|
"children": [
|
|
454
541
|
{
|
|
542
|
+
"field": "title",
|
|
455
543
|
"type": "input",
|
|
456
544
|
"label": "Title",
|
|
457
|
-
"field": "title",
|
|
458
545
|
"placeholder": "PR title"
|
|
459
546
|
},
|
|
460
547
|
{
|
|
461
|
-
"type": "textarea",
|
|
462
548
|
"label": "Body",
|
|
549
|
+
"placeholder": "Describe your changes...",
|
|
463
550
|
"field": "body",
|
|
464
|
-
"
|
|
551
|
+
"type": "textarea"
|
|
465
552
|
},
|
|
466
553
|
{
|
|
467
|
-
"
|
|
554
|
+
"placeholder": "feature-branch",
|
|
468
555
|
"label": "Head Branch",
|
|
469
|
-
"
|
|
470
|
-
"
|
|
556
|
+
"type": "input",
|
|
557
|
+
"field": "head"
|
|
471
558
|
},
|
|
472
559
|
{
|
|
473
|
-
"type": "input",
|
|
474
560
|
"label": "Base Branch",
|
|
475
561
|
"field": "base",
|
|
476
|
-
"placeholder": "main"
|
|
562
|
+
"placeholder": "main",
|
|
563
|
+
"type": "input"
|
|
477
564
|
}
|
|
478
|
-
]
|
|
565
|
+
],
|
|
566
|
+
"gap": "md",
|
|
567
|
+
"type": "stack"
|
|
479
568
|
},
|
|
480
569
|
{
|
|
481
|
-
"type": "button",
|
|
482
570
|
"label": "Create PR",
|
|
483
|
-
"
|
|
571
|
+
"type": "button",
|
|
484
572
|
"variant": "primary",
|
|
573
|
+
"event": "CREATE_PR",
|
|
485
574
|
"icon": "git-pull-request"
|
|
486
575
|
}
|
|
487
|
-
]
|
|
576
|
+
],
|
|
577
|
+
"direction": "vertical",
|
|
578
|
+
"type": "stack",
|
|
579
|
+
"align": "center",
|
|
580
|
+
"gap": "lg"
|
|
488
581
|
}
|
|
489
582
|
]
|
|
490
583
|
]
|
|
@@ -498,28 +591,26 @@
|
|
|
498
591
|
"render-ui",
|
|
499
592
|
"main",
|
|
500
593
|
{
|
|
501
|
-
"type": "stack",
|
|
502
|
-
"direction": "vertical",
|
|
503
|
-
"gap": "lg",
|
|
504
594
|
"align": "center",
|
|
595
|
+
"type": "stack",
|
|
505
596
|
"children": [
|
|
506
597
|
{
|
|
507
|
-
"type": "stack",
|
|
508
|
-
"direction": "horizontal",
|
|
509
|
-
"gap": "md",
|
|
510
598
|
"align": "center",
|
|
511
599
|
"children": [
|
|
512
600
|
{
|
|
513
|
-
"type": "icon",
|
|
514
601
|
"name": "git-pull-request",
|
|
515
|
-
"size": "lg"
|
|
602
|
+
"size": "lg",
|
|
603
|
+
"type": "icon"
|
|
516
604
|
},
|
|
517
605
|
{
|
|
518
606
|
"type": "typography",
|
|
519
|
-
"
|
|
520
|
-
"
|
|
607
|
+
"variant": "h2",
|
|
608
|
+
"content": "Create Pull Request"
|
|
521
609
|
}
|
|
522
|
-
]
|
|
610
|
+
],
|
|
611
|
+
"direction": "horizontal",
|
|
612
|
+
"gap": "md",
|
|
613
|
+
"type": "stack"
|
|
523
614
|
},
|
|
524
615
|
{
|
|
525
616
|
"type": "divider"
|
|
@@ -527,48 +618,51 @@
|
|
|
527
618
|
{
|
|
528
619
|
"type": "stack",
|
|
529
620
|
"direction": "vertical",
|
|
530
|
-
"gap": "md",
|
|
531
621
|
"children": [
|
|
532
622
|
{
|
|
533
623
|
"type": "input",
|
|
534
|
-
"
|
|
624
|
+
"placeholder": "PR title",
|
|
535
625
|
"field": "title",
|
|
536
|
-
"
|
|
626
|
+
"label": "Title"
|
|
537
627
|
},
|
|
538
628
|
{
|
|
539
|
-
"type": "textarea",
|
|
540
629
|
"label": "Body",
|
|
630
|
+
"placeholder": "Describe your changes...",
|
|
541
631
|
"field": "body",
|
|
542
|
-
"
|
|
632
|
+
"type": "textarea"
|
|
543
633
|
},
|
|
544
634
|
{
|
|
545
635
|
"type": "input",
|
|
636
|
+
"placeholder": "feature-branch",
|
|
546
637
|
"label": "Head Branch",
|
|
547
|
-
"field": "head"
|
|
548
|
-
"placeholder": "feature-branch"
|
|
638
|
+
"field": "head"
|
|
549
639
|
},
|
|
550
640
|
{
|
|
551
|
-
"type": "input",
|
|
552
|
-
"label": "Base Branch",
|
|
553
641
|
"field": "base",
|
|
642
|
+
"label": "Base Branch",
|
|
643
|
+
"type": "input",
|
|
554
644
|
"placeholder": "main"
|
|
555
645
|
}
|
|
556
|
-
]
|
|
646
|
+
],
|
|
647
|
+
"gap": "md"
|
|
557
648
|
},
|
|
558
649
|
{
|
|
559
650
|
"type": "button",
|
|
560
|
-
"
|
|
651
|
+
"icon": "git-pull-request",
|
|
561
652
|
"event": "CREATE_PR",
|
|
562
653
|
"variant": "primary",
|
|
563
|
-
"
|
|
654
|
+
"label": "Create PR"
|
|
564
655
|
}
|
|
565
|
-
]
|
|
656
|
+
],
|
|
657
|
+
"gap": "lg",
|
|
658
|
+
"direction": "vertical"
|
|
566
659
|
}
|
|
567
660
|
]
|
|
568
661
|
]
|
|
569
662
|
}
|
|
570
663
|
]
|
|
571
|
-
}
|
|
664
|
+
},
|
|
665
|
+
"scope": "instance"
|
|
572
666
|
}
|
|
573
667
|
],
|
|
574
668
|
"pages": [
|
|
@@ -584,4 +678,4 @@
|
|
|
584
678
|
]
|
|
585
679
|
}
|
|
586
680
|
]
|
|
587
|
-
}
|
|
681
|
+
}
|