@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,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-cicd-pipeline",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-cicd-pipeline as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "BuildOrbital",
|
|
8
8
|
"entity": {
|
|
9
9
|
"name": "Build",
|
|
10
|
-
"persistence": "persistent",
|
|
11
10
|
"collection": "builds",
|
|
11
|
+
"persistence": "persistent",
|
|
12
12
|
"fields": [
|
|
13
13
|
{
|
|
14
14
|
"name": "id",
|
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
{
|
|
24
24
|
"name": "status",
|
|
25
25
|
"type": "string",
|
|
26
|
-
"required": true,
|
|
27
26
|
"values": [
|
|
28
27
|
"pending",
|
|
29
28
|
"running",
|
|
@@ -49,23 +48,78 @@
|
|
|
49
48
|
"traits": [
|
|
50
49
|
{
|
|
51
50
|
"name": "BuildBrowse",
|
|
52
|
-
"linkedEntity": "Build",
|
|
53
51
|
"category": "interaction",
|
|
52
|
+
"linkedEntity": "Build",
|
|
53
|
+
"emits": [
|
|
54
|
+
{
|
|
55
|
+
"event": "BuildLoaded",
|
|
56
|
+
"description": "Fired when Build finishes loading",
|
|
57
|
+
"scope": "internal",
|
|
58
|
+
"payload": [
|
|
59
|
+
{
|
|
60
|
+
"name": "id",
|
|
61
|
+
"type": "string",
|
|
62
|
+
"required": true
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"name": "branch",
|
|
66
|
+
"type": "string",
|
|
67
|
+
"required": true
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"name": "status",
|
|
71
|
+
"type": "string"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"name": "commit",
|
|
75
|
+
"type": "string"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"name": "triggeredBy",
|
|
79
|
+
"type": "string"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "pendingId",
|
|
83
|
+
"type": "string"
|
|
84
|
+
}
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"event": "BuildLoadFailed",
|
|
89
|
+
"description": "Fired when Build fails to load",
|
|
90
|
+
"scope": "internal",
|
|
91
|
+
"payload": [
|
|
92
|
+
{
|
|
93
|
+
"name": "message",
|
|
94
|
+
"type": "string"
|
|
95
|
+
}
|
|
96
|
+
]
|
|
97
|
+
}
|
|
98
|
+
],
|
|
54
99
|
"listens": [
|
|
55
100
|
{
|
|
56
101
|
"event": "BUILD_CREATED",
|
|
57
102
|
"triggers": "INIT",
|
|
58
|
-
"
|
|
103
|
+
"source": {
|
|
104
|
+
"kind": "trait",
|
|
105
|
+
"trait": "BuildCreate"
|
|
106
|
+
}
|
|
59
107
|
},
|
|
60
108
|
{
|
|
61
109
|
"event": "BUILD_UPDATED",
|
|
62
110
|
"triggers": "INIT",
|
|
63
|
-
"
|
|
111
|
+
"source": {
|
|
112
|
+
"kind": "trait",
|
|
113
|
+
"trait": "BuildEdit"
|
|
114
|
+
}
|
|
64
115
|
},
|
|
65
116
|
{
|
|
66
117
|
"event": "BUILD_DELETED",
|
|
67
118
|
"triggers": "INIT",
|
|
68
|
-
"
|
|
119
|
+
"source": {
|
|
120
|
+
"kind": "trait",
|
|
121
|
+
"trait": "BuildDelete"
|
|
122
|
+
}
|
|
69
123
|
}
|
|
70
124
|
],
|
|
71
125
|
"stateMachine": {
|
|
@@ -81,12 +135,22 @@
|
|
|
81
135
|
"name": "Initialize"
|
|
82
136
|
},
|
|
83
137
|
{
|
|
84
|
-
"key": "
|
|
85
|
-
"name": "
|
|
138
|
+
"key": "BuildLoaded",
|
|
139
|
+
"name": "Build loaded"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"key": "BuildLoadFailed",
|
|
143
|
+
"name": "Build load failed",
|
|
144
|
+
"payload": [
|
|
145
|
+
{
|
|
146
|
+
"name": "message",
|
|
147
|
+
"type": "string"
|
|
148
|
+
}
|
|
149
|
+
]
|
|
86
150
|
},
|
|
87
151
|
{
|
|
88
152
|
"key": "VIEW",
|
|
89
|
-
"name": "
|
|
153
|
+
"name": "View",
|
|
90
154
|
"payload": [
|
|
91
155
|
{
|
|
92
156
|
"name": "id",
|
|
@@ -101,7 +165,7 @@
|
|
|
101
165
|
},
|
|
102
166
|
{
|
|
103
167
|
"key": "EDIT",
|
|
104
|
-
"name": "
|
|
168
|
+
"name": "Edit",
|
|
105
169
|
"payload": [
|
|
106
170
|
{
|
|
107
171
|
"name": "id",
|
|
@@ -116,7 +180,7 @@
|
|
|
116
180
|
},
|
|
117
181
|
{
|
|
118
182
|
"key": "DELETE",
|
|
119
|
-
"name": "
|
|
183
|
+
"name": "Delete",
|
|
120
184
|
"payload": [
|
|
121
185
|
{
|
|
122
186
|
"name": "id",
|
|
@@ -144,18 +208,16 @@
|
|
|
144
208
|
"render-ui",
|
|
145
209
|
"main",
|
|
146
210
|
{
|
|
147
|
-
"type": "dashboard-layout",
|
|
148
|
-
"appName": "CI/CD Pipeline",
|
|
149
211
|
"navItems": [
|
|
150
212
|
{
|
|
213
|
+
"icon": "hammer",
|
|
151
214
|
"label": "Builds",
|
|
152
|
-
"href": "/builds"
|
|
153
|
-
"icon": "hammer"
|
|
215
|
+
"href": "/builds"
|
|
154
216
|
},
|
|
155
217
|
{
|
|
218
|
+
"icon": "layers",
|
|
156
219
|
"label": "Stages",
|
|
157
|
-
"href": "/stages"
|
|
158
|
-
"icon": "layers"
|
|
220
|
+
"href": "/stages"
|
|
159
221
|
},
|
|
160
222
|
{
|
|
161
223
|
"label": "Deploy",
|
|
@@ -163,24 +225,25 @@
|
|
|
163
225
|
"icon": "rocket"
|
|
164
226
|
}
|
|
165
227
|
],
|
|
228
|
+
"appName": "CI/CD Pipeline",
|
|
229
|
+
"type": "dashboard-layout",
|
|
166
230
|
"children": [
|
|
167
231
|
{
|
|
168
232
|
"type": "stack",
|
|
169
|
-
"direction": "vertical",
|
|
170
|
-
"gap": "lg",
|
|
171
233
|
"className": "max-w-5xl mx-auto w-full",
|
|
234
|
+
"direction": "vertical",
|
|
172
235
|
"children": [
|
|
173
236
|
{
|
|
174
|
-
"type": "stack",
|
|
175
|
-
"direction": "horizontal",
|
|
176
237
|
"gap": "md",
|
|
177
|
-
"justify": "space-between",
|
|
178
238
|
"align": "center",
|
|
239
|
+
"direction": "horizontal",
|
|
240
|
+
"type": "stack",
|
|
241
|
+
"justify": "space-between",
|
|
179
242
|
"children": [
|
|
180
243
|
{
|
|
181
|
-
"type": "stack",
|
|
182
|
-
"direction": "horizontal",
|
|
183
244
|
"gap": "sm",
|
|
245
|
+
"direction": "horizontal",
|
|
246
|
+
"type": "stack",
|
|
184
247
|
"align": "center",
|
|
185
248
|
"children": [
|
|
186
249
|
{
|
|
@@ -190,24 +253,24 @@
|
|
|
190
253
|
},
|
|
191
254
|
{
|
|
192
255
|
"type": "typography",
|
|
193
|
-
"
|
|
194
|
-
"
|
|
256
|
+
"variant": "h2",
|
|
257
|
+
"content": "Builds"
|
|
195
258
|
}
|
|
196
259
|
]
|
|
197
260
|
},
|
|
198
261
|
{
|
|
199
262
|
"type": "stack",
|
|
200
|
-
"direction": "horizontal",
|
|
201
|
-
"gap": "sm",
|
|
202
263
|
"children": [
|
|
203
264
|
{
|
|
204
|
-
"type": "button",
|
|
205
|
-
"label": "Create Build",
|
|
206
265
|
"event": "CREATE",
|
|
207
266
|
"variant": "primary",
|
|
208
|
-
"icon": "plus"
|
|
267
|
+
"icon": "plus",
|
|
268
|
+
"type": "button",
|
|
269
|
+
"label": "Create Build"
|
|
209
270
|
}
|
|
210
|
-
]
|
|
271
|
+
],
|
|
272
|
+
"gap": "sm",
|
|
273
|
+
"direction": "horizontal"
|
|
211
274
|
}
|
|
212
275
|
]
|
|
213
276
|
},
|
|
@@ -215,44 +278,45 @@
|
|
|
215
278
|
"type": "divider"
|
|
216
279
|
},
|
|
217
280
|
{
|
|
218
|
-
"type": "data-list",
|
|
219
|
-
"entity": "Build",
|
|
220
|
-
"emptyIcon": "inbox",
|
|
221
281
|
"emptyTitle": "No builds yet",
|
|
282
|
+
"variant": "card",
|
|
283
|
+
"emptyIcon": "inbox",
|
|
284
|
+
"gap": "sm",
|
|
285
|
+
"entity": "Build",
|
|
222
286
|
"emptyDescription": "Trigger a build to get started.",
|
|
223
287
|
"itemActions": [
|
|
224
288
|
{
|
|
225
|
-
"label": "View",
|
|
226
|
-
"event": "VIEW",
|
|
227
289
|
"variant": "ghost",
|
|
228
|
-
"size": "sm"
|
|
290
|
+
"size": "sm",
|
|
291
|
+
"event": "VIEW",
|
|
292
|
+
"label": "View"
|
|
229
293
|
},
|
|
230
294
|
{
|
|
295
|
+
"size": "sm",
|
|
231
296
|
"label": "Edit",
|
|
232
|
-
"event": "EDIT",
|
|
233
297
|
"variant": "ghost",
|
|
234
|
-
"
|
|
298
|
+
"event": "EDIT"
|
|
235
299
|
},
|
|
236
300
|
{
|
|
237
|
-
"label": "Delete",
|
|
238
301
|
"event": "DELETE",
|
|
239
302
|
"variant": "danger",
|
|
303
|
+
"label": "Delete",
|
|
240
304
|
"size": "sm"
|
|
241
305
|
}
|
|
242
306
|
],
|
|
243
307
|
"columns": [
|
|
244
308
|
{
|
|
245
|
-
"name": "branch",
|
|
246
309
|
"variant": "h3",
|
|
310
|
+
"name": "branch",
|
|
247
311
|
"icon": "git-branch"
|
|
248
312
|
},
|
|
249
313
|
{
|
|
250
|
-
"
|
|
251
|
-
"
|
|
314
|
+
"variant": "badge",
|
|
315
|
+
"name": "status"
|
|
252
316
|
},
|
|
253
317
|
{
|
|
254
|
-
"
|
|
255
|
-
"
|
|
318
|
+
"variant": "body",
|
|
319
|
+
"name": "commit"
|
|
256
320
|
},
|
|
257
321
|
{
|
|
258
322
|
"name": "triggeredBy",
|
|
@@ -260,10 +324,10 @@
|
|
|
260
324
|
"variant": "caption"
|
|
261
325
|
}
|
|
262
326
|
],
|
|
263
|
-
"
|
|
264
|
-
"gap": "sm"
|
|
327
|
+
"type": "data-list"
|
|
265
328
|
}
|
|
266
|
-
]
|
|
329
|
+
],
|
|
330
|
+
"gap": "lg"
|
|
267
331
|
}
|
|
268
332
|
]
|
|
269
333
|
}
|
|
@@ -271,20 +335,67 @@
|
|
|
271
335
|
]
|
|
272
336
|
}
|
|
273
337
|
]
|
|
274
|
-
}
|
|
338
|
+
},
|
|
339
|
+
"scope": "collection"
|
|
275
340
|
},
|
|
276
341
|
{
|
|
277
342
|
"name": "BuildCreate",
|
|
278
|
-
"linkedEntity": "Build",
|
|
279
343
|
"category": "interaction",
|
|
344
|
+
"linkedEntity": "Build",
|
|
280
345
|
"emits": [
|
|
281
346
|
{
|
|
282
|
-
"event": "
|
|
283
|
-
"scope": "
|
|
347
|
+
"event": "BUILD_CREATED",
|
|
348
|
+
"scope": "external",
|
|
349
|
+
"payload": [
|
|
350
|
+
{
|
|
351
|
+
"name": "id",
|
|
352
|
+
"type": "string"
|
|
353
|
+
}
|
|
354
|
+
]
|
|
284
355
|
},
|
|
285
356
|
{
|
|
286
|
-
"event": "
|
|
287
|
-
"
|
|
357
|
+
"event": "BuildLoaded",
|
|
358
|
+
"description": "Fired when Build finishes loading",
|
|
359
|
+
"scope": "internal",
|
|
360
|
+
"payload": [
|
|
361
|
+
{
|
|
362
|
+
"name": "id",
|
|
363
|
+
"type": "string",
|
|
364
|
+
"required": true
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"name": "branch",
|
|
368
|
+
"type": "string",
|
|
369
|
+
"required": true
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"name": "status",
|
|
373
|
+
"type": "string"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"name": "commit",
|
|
377
|
+
"type": "string"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"name": "triggeredBy",
|
|
381
|
+
"type": "string"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"name": "pendingId",
|
|
385
|
+
"type": "string"
|
|
386
|
+
}
|
|
387
|
+
]
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"event": "BuildLoadFailed",
|
|
391
|
+
"description": "Fired when Build fails to load",
|
|
392
|
+
"scope": "internal",
|
|
393
|
+
"payload": [
|
|
394
|
+
{
|
|
395
|
+
"name": "message",
|
|
396
|
+
"type": "string"
|
|
397
|
+
}
|
|
398
|
+
]
|
|
288
399
|
}
|
|
289
400
|
],
|
|
290
401
|
"stateMachine": {
|
|
@@ -304,7 +415,7 @@
|
|
|
304
415
|
},
|
|
305
416
|
{
|
|
306
417
|
"key": "CREATE",
|
|
307
|
-
"name": "
|
|
418
|
+
"name": "Create"
|
|
308
419
|
},
|
|
309
420
|
{
|
|
310
421
|
"key": "CLOSE",
|
|
@@ -320,6 +431,24 @@
|
|
|
320
431
|
"required": true
|
|
321
432
|
}
|
|
322
433
|
]
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"key": "BUILD_CREATED",
|
|
437
|
+
"name": "Build Created"
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"key": "BuildLoaded",
|
|
441
|
+
"name": "Build loaded"
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"key": "BuildLoadFailed",
|
|
445
|
+
"name": "Build load failed",
|
|
446
|
+
"payload": [
|
|
447
|
+
{
|
|
448
|
+
"name": "message",
|
|
449
|
+
"type": "string"
|
|
450
|
+
}
|
|
451
|
+
]
|
|
323
452
|
}
|
|
324
453
|
],
|
|
325
454
|
"transitions": [
|
|
@@ -341,29 +470,34 @@
|
|
|
341
470
|
"effects": [
|
|
342
471
|
[
|
|
343
472
|
"fetch",
|
|
344
|
-
"Build"
|
|
473
|
+
"Build",
|
|
474
|
+
{
|
|
475
|
+
"emit": {
|
|
476
|
+
"failure": "BuildLoadFailed",
|
|
477
|
+
"success": "BuildLoaded"
|
|
478
|
+
}
|
|
479
|
+
}
|
|
345
480
|
],
|
|
346
481
|
[
|
|
347
482
|
"render-ui",
|
|
348
483
|
"modal",
|
|
349
484
|
{
|
|
350
485
|
"type": "stack",
|
|
351
|
-
"direction": "vertical",
|
|
352
486
|
"gap": "md",
|
|
353
487
|
"children": [
|
|
354
488
|
{
|
|
355
|
-
"type": "stack",
|
|
356
489
|
"direction": "horizontal",
|
|
490
|
+
"type": "stack",
|
|
357
491
|
"gap": "sm",
|
|
358
492
|
"children": [
|
|
359
493
|
{
|
|
360
|
-
"
|
|
494
|
+
"size": "md",
|
|
361
495
|
"name": "plus-circle",
|
|
362
|
-
"
|
|
496
|
+
"type": "icon"
|
|
363
497
|
},
|
|
364
498
|
{
|
|
365
|
-
"type": "typography",
|
|
366
499
|
"content": "Create Build",
|
|
500
|
+
"type": "typography",
|
|
367
501
|
"variant": "h3"
|
|
368
502
|
}
|
|
369
503
|
]
|
|
@@ -373,18 +507,19 @@
|
|
|
373
507
|
},
|
|
374
508
|
{
|
|
375
509
|
"type": "form-section",
|
|
376
|
-
"entity": "Build",
|
|
377
510
|
"mode": "create",
|
|
378
|
-
"submitEvent": "SAVE",
|
|
379
511
|
"cancelEvent": "CLOSE",
|
|
380
512
|
"fields": [
|
|
381
513
|
"branch",
|
|
382
514
|
"status",
|
|
383
515
|
"commit",
|
|
384
516
|
"triggeredBy"
|
|
385
|
-
]
|
|
517
|
+
],
|
|
518
|
+
"submitEvent": "SAVE",
|
|
519
|
+
"entity": "Build"
|
|
386
520
|
}
|
|
387
|
-
]
|
|
521
|
+
],
|
|
522
|
+
"direction": "vertical"
|
|
388
523
|
}
|
|
389
524
|
]
|
|
390
525
|
]
|
|
@@ -399,6 +534,13 @@
|
|
|
399
534
|
"modal",
|
|
400
535
|
null
|
|
401
536
|
],
|
|
537
|
+
[
|
|
538
|
+
"render-ui",
|
|
539
|
+
"main",
|
|
540
|
+
{
|
|
541
|
+
"type": "box"
|
|
542
|
+
}
|
|
543
|
+
],
|
|
402
544
|
[
|
|
403
545
|
"notify",
|
|
404
546
|
"Cancelled",
|
|
@@ -422,6 +564,13 @@
|
|
|
422
564
|
"modal",
|
|
423
565
|
null
|
|
424
566
|
],
|
|
567
|
+
[
|
|
568
|
+
"render-ui",
|
|
569
|
+
"main",
|
|
570
|
+
{
|
|
571
|
+
"type": "box"
|
|
572
|
+
}
|
|
573
|
+
],
|
|
425
574
|
[
|
|
426
575
|
"emit",
|
|
427
576
|
"BUILD_CREATED"
|
|
@@ -429,20 +578,67 @@
|
|
|
429
578
|
]
|
|
430
579
|
}
|
|
431
580
|
]
|
|
432
|
-
}
|
|
581
|
+
},
|
|
582
|
+
"scope": "collection"
|
|
433
583
|
},
|
|
434
584
|
{
|
|
435
585
|
"name": "BuildEdit",
|
|
436
|
-
"linkedEntity": "Build",
|
|
437
586
|
"category": "interaction",
|
|
587
|
+
"linkedEntity": "Build",
|
|
438
588
|
"emits": [
|
|
439
589
|
{
|
|
440
|
-
"event": "
|
|
441
|
-
"scope": "
|
|
590
|
+
"event": "BUILD_UPDATED",
|
|
591
|
+
"scope": "external",
|
|
592
|
+
"payload": [
|
|
593
|
+
{
|
|
594
|
+
"name": "id",
|
|
595
|
+
"type": "string"
|
|
596
|
+
}
|
|
597
|
+
]
|
|
442
598
|
},
|
|
443
599
|
{
|
|
444
|
-
"event": "
|
|
445
|
-
"
|
|
600
|
+
"event": "BuildLoaded",
|
|
601
|
+
"description": "Fired when Build finishes loading",
|
|
602
|
+
"scope": "internal",
|
|
603
|
+
"payload": [
|
|
604
|
+
{
|
|
605
|
+
"name": "id",
|
|
606
|
+
"type": "string",
|
|
607
|
+
"required": true
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"name": "branch",
|
|
611
|
+
"type": "string",
|
|
612
|
+
"required": true
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"name": "status",
|
|
616
|
+
"type": "string"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"name": "commit",
|
|
620
|
+
"type": "string"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"name": "triggeredBy",
|
|
624
|
+
"type": "string"
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
"name": "pendingId",
|
|
628
|
+
"type": "string"
|
|
629
|
+
}
|
|
630
|
+
]
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"event": "BuildLoadFailed",
|
|
634
|
+
"description": "Fired when Build fails to load",
|
|
635
|
+
"scope": "internal",
|
|
636
|
+
"payload": [
|
|
637
|
+
{
|
|
638
|
+
"name": "message",
|
|
639
|
+
"type": "string"
|
|
640
|
+
}
|
|
641
|
+
]
|
|
446
642
|
}
|
|
447
643
|
],
|
|
448
644
|
"stateMachine": {
|
|
@@ -462,7 +658,7 @@
|
|
|
462
658
|
},
|
|
463
659
|
{
|
|
464
660
|
"key": "EDIT",
|
|
465
|
-
"name": "
|
|
661
|
+
"name": "Edit",
|
|
466
662
|
"payload": [
|
|
467
663
|
{
|
|
468
664
|
"name": "id",
|
|
@@ -485,6 +681,24 @@
|
|
|
485
681
|
"required": true
|
|
486
682
|
}
|
|
487
683
|
]
|
|
684
|
+
},
|
|
685
|
+
{
|
|
686
|
+
"key": "BUILD_UPDATED",
|
|
687
|
+
"name": "Build Updated"
|
|
688
|
+
},
|
|
689
|
+
{
|
|
690
|
+
"key": "BuildLoaded",
|
|
691
|
+
"name": "Build loaded"
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"key": "BuildLoadFailed",
|
|
695
|
+
"name": "Build load failed",
|
|
696
|
+
"payload": [
|
|
697
|
+
{
|
|
698
|
+
"name": "message",
|
|
699
|
+
"type": "string"
|
|
700
|
+
}
|
|
701
|
+
]
|
|
488
702
|
}
|
|
489
703
|
],
|
|
490
704
|
"transitions": [
|
|
@@ -508,33 +722,36 @@
|
|
|
508
722
|
"fetch",
|
|
509
723
|
"Build",
|
|
510
724
|
{
|
|
511
|
-
"id": "@payload.id"
|
|
725
|
+
"id": "@payload.id",
|
|
726
|
+
"emit": {
|
|
727
|
+
"success": "BuildLoaded",
|
|
728
|
+
"failure": "BuildLoadFailed"
|
|
729
|
+
}
|
|
512
730
|
}
|
|
513
731
|
],
|
|
514
732
|
[
|
|
515
733
|
"render-ui",
|
|
516
734
|
"modal",
|
|
517
735
|
{
|
|
518
|
-
"type": "stack",
|
|
519
|
-
"direction": "vertical",
|
|
520
736
|
"gap": "md",
|
|
737
|
+
"type": "stack",
|
|
521
738
|
"children": [
|
|
522
739
|
{
|
|
523
|
-
"type": "stack",
|
|
524
740
|
"direction": "horizontal",
|
|
525
|
-
"gap": "sm",
|
|
526
741
|
"children": [
|
|
527
742
|
{
|
|
528
|
-
"type": "icon",
|
|
529
743
|
"name": "edit",
|
|
744
|
+
"type": "icon",
|
|
530
745
|
"size": "md"
|
|
531
746
|
},
|
|
532
747
|
{
|
|
533
|
-
"type": "typography",
|
|
534
748
|
"content": "Edit Build",
|
|
749
|
+
"type": "typography",
|
|
535
750
|
"variant": "h3"
|
|
536
751
|
}
|
|
537
|
-
]
|
|
752
|
+
],
|
|
753
|
+
"gap": "sm",
|
|
754
|
+
"type": "stack"
|
|
538
755
|
},
|
|
539
756
|
{
|
|
540
757
|
"type": "divider"
|
|
@@ -542,18 +759,19 @@
|
|
|
542
759
|
{
|
|
543
760
|
"type": "form-section",
|
|
544
761
|
"entity": "Build",
|
|
545
|
-
"
|
|
546
|
-
"submitEvent": "SAVE",
|
|
547
|
-
"cancelEvent": "CLOSE",
|
|
762
|
+
"entityId": "@entity.id",
|
|
548
763
|
"fields": [
|
|
549
764
|
"branch",
|
|
550
765
|
"status",
|
|
551
766
|
"commit",
|
|
552
767
|
"triggeredBy"
|
|
553
768
|
],
|
|
554
|
-
"
|
|
769
|
+
"mode": "edit",
|
|
770
|
+
"cancelEvent": "CLOSE",
|
|
771
|
+
"submitEvent": "SAVE"
|
|
555
772
|
}
|
|
556
|
-
]
|
|
773
|
+
],
|
|
774
|
+
"direction": "vertical"
|
|
557
775
|
}
|
|
558
776
|
]
|
|
559
777
|
]
|
|
@@ -568,6 +786,13 @@
|
|
|
568
786
|
"modal",
|
|
569
787
|
null
|
|
570
788
|
],
|
|
789
|
+
[
|
|
790
|
+
"render-ui",
|
|
791
|
+
"main",
|
|
792
|
+
{
|
|
793
|
+
"type": "box"
|
|
794
|
+
}
|
|
795
|
+
],
|
|
571
796
|
[
|
|
572
797
|
"notify",
|
|
573
798
|
"Cancelled",
|
|
@@ -591,6 +816,13 @@
|
|
|
591
816
|
"modal",
|
|
592
817
|
null
|
|
593
818
|
],
|
|
819
|
+
[
|
|
820
|
+
"render-ui",
|
|
821
|
+
"main",
|
|
822
|
+
{
|
|
823
|
+
"type": "box"
|
|
824
|
+
}
|
|
825
|
+
],
|
|
594
826
|
[
|
|
595
827
|
"emit",
|
|
596
828
|
"BUILD_UPDATED"
|
|
@@ -598,16 +830,57 @@
|
|
|
598
830
|
]
|
|
599
831
|
}
|
|
600
832
|
]
|
|
601
|
-
}
|
|
833
|
+
},
|
|
834
|
+
"scope": "collection"
|
|
602
835
|
},
|
|
603
836
|
{
|
|
604
837
|
"name": "BuildView",
|
|
605
|
-
"linkedEntity": "Build",
|
|
606
838
|
"category": "interaction",
|
|
839
|
+
"linkedEntity": "Build",
|
|
607
840
|
"emits": [
|
|
608
841
|
{
|
|
609
|
-
"event": "
|
|
610
|
-
"
|
|
842
|
+
"event": "BuildLoaded",
|
|
843
|
+
"description": "Fired when Build finishes loading",
|
|
844
|
+
"scope": "internal",
|
|
845
|
+
"payload": [
|
|
846
|
+
{
|
|
847
|
+
"name": "id",
|
|
848
|
+
"type": "string",
|
|
849
|
+
"required": true
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"name": "branch",
|
|
853
|
+
"type": "string",
|
|
854
|
+
"required": true
|
|
855
|
+
},
|
|
856
|
+
{
|
|
857
|
+
"name": "status",
|
|
858
|
+
"type": "string"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"name": "commit",
|
|
862
|
+
"type": "string"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"name": "triggeredBy",
|
|
866
|
+
"type": "string"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"name": "pendingId",
|
|
870
|
+
"type": "string"
|
|
871
|
+
}
|
|
872
|
+
]
|
|
873
|
+
},
|
|
874
|
+
{
|
|
875
|
+
"event": "BuildLoadFailed",
|
|
876
|
+
"description": "Fired when Build fails to load",
|
|
877
|
+
"scope": "internal",
|
|
878
|
+
"payload": [
|
|
879
|
+
{
|
|
880
|
+
"name": "message",
|
|
881
|
+
"type": "string"
|
|
882
|
+
}
|
|
883
|
+
]
|
|
611
884
|
}
|
|
612
885
|
],
|
|
613
886
|
"stateMachine": {
|
|
@@ -627,7 +900,7 @@
|
|
|
627
900
|
},
|
|
628
901
|
{
|
|
629
902
|
"key": "VIEW",
|
|
630
|
-
"name": "
|
|
903
|
+
"name": "View",
|
|
631
904
|
"payload": [
|
|
632
905
|
{
|
|
633
906
|
"name": "id",
|
|
@@ -650,6 +923,20 @@
|
|
|
650
923
|
"required": true
|
|
651
924
|
}
|
|
652
925
|
]
|
|
926
|
+
},
|
|
927
|
+
{
|
|
928
|
+
"key": "BuildLoaded",
|
|
929
|
+
"name": "Build loaded"
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"key": "BuildLoadFailed",
|
|
933
|
+
"name": "Build load failed",
|
|
934
|
+
"payload": [
|
|
935
|
+
{
|
|
936
|
+
"name": "message",
|
|
937
|
+
"type": "string"
|
|
938
|
+
}
|
|
939
|
+
]
|
|
653
940
|
}
|
|
654
941
|
],
|
|
655
942
|
"transitions": [
|
|
@@ -673,7 +960,11 @@
|
|
|
673
960
|
"fetch",
|
|
674
961
|
"Build",
|
|
675
962
|
{
|
|
676
|
-
"id": "@payload.id"
|
|
963
|
+
"id": "@payload.id",
|
|
964
|
+
"emit": {
|
|
965
|
+
"success": "BuildLoaded",
|
|
966
|
+
"failure": "BuildLoadFailed"
|
|
967
|
+
}
|
|
677
968
|
}
|
|
678
969
|
],
|
|
679
970
|
[
|
|
@@ -681,85 +972,82 @@
|
|
|
681
972
|
"modal",
|
|
682
973
|
{
|
|
683
974
|
"type": "stack",
|
|
684
|
-
"direction": "vertical",
|
|
685
975
|
"gap": "md",
|
|
976
|
+
"direction": "vertical",
|
|
686
977
|
"children": [
|
|
687
978
|
{
|
|
688
|
-
"type": "stack",
|
|
689
|
-
"direction": "horizontal",
|
|
690
|
-
"gap": "sm",
|
|
691
979
|
"align": "center",
|
|
692
980
|
"children": [
|
|
693
981
|
{
|
|
694
|
-
"
|
|
982
|
+
"size": "md",
|
|
695
983
|
"name": "eye",
|
|
696
|
-
"
|
|
984
|
+
"type": "icon"
|
|
697
985
|
},
|
|
698
986
|
{
|
|
699
|
-
"type": "typography",
|
|
700
987
|
"variant": "h3",
|
|
701
|
-
"content": "@entity.branch"
|
|
988
|
+
"content": "@entity.branch",
|
|
989
|
+
"type": "typography"
|
|
702
990
|
}
|
|
703
|
-
]
|
|
991
|
+
],
|
|
992
|
+
"direction": "horizontal",
|
|
993
|
+
"type": "stack",
|
|
994
|
+
"gap": "sm"
|
|
704
995
|
},
|
|
705
996
|
{
|
|
706
997
|
"type": "divider"
|
|
707
998
|
},
|
|
708
999
|
{
|
|
709
|
-
"type": "stack",
|
|
710
1000
|
"direction": "horizontal",
|
|
1001
|
+
"type": "stack",
|
|
711
1002
|
"gap": "md",
|
|
712
1003
|
"children": [
|
|
713
1004
|
{
|
|
714
1005
|
"type": "typography",
|
|
715
|
-
"
|
|
716
|
-
"
|
|
1006
|
+
"content": "Branch",
|
|
1007
|
+
"variant": "caption"
|
|
717
1008
|
},
|
|
718
1009
|
{
|
|
719
1010
|
"type": "typography",
|
|
720
|
-
"
|
|
721
|
-
"
|
|
1011
|
+
"content": "@entity.branch",
|
|
1012
|
+
"variant": "body"
|
|
722
1013
|
}
|
|
723
1014
|
]
|
|
724
1015
|
},
|
|
725
1016
|
{
|
|
726
|
-
"type": "stack",
|
|
727
|
-
"direction": "horizontal",
|
|
728
|
-
"gap": "md",
|
|
729
1017
|
"children": [
|
|
730
1018
|
{
|
|
731
|
-
"type": "typography",
|
|
732
1019
|
"variant": "caption",
|
|
733
|
-
"content": "Status"
|
|
1020
|
+
"content": "Status",
|
|
1021
|
+
"type": "typography"
|
|
734
1022
|
},
|
|
735
1023
|
{
|
|
736
|
-
"
|
|
1024
|
+
"content": "@entity.status",
|
|
737
1025
|
"variant": "body",
|
|
738
|
-
"
|
|
1026
|
+
"type": "typography"
|
|
739
1027
|
}
|
|
740
|
-
]
|
|
1028
|
+
],
|
|
1029
|
+
"type": "stack",
|
|
1030
|
+
"direction": "horizontal",
|
|
1031
|
+
"gap": "md"
|
|
741
1032
|
},
|
|
742
1033
|
{
|
|
743
|
-
"type": "stack",
|
|
744
1034
|
"direction": "horizontal",
|
|
745
|
-
"
|
|
1035
|
+
"type": "stack",
|
|
746
1036
|
"children": [
|
|
747
1037
|
{
|
|
748
|
-
"type": "typography",
|
|
749
1038
|
"variant": "caption",
|
|
750
|
-
"content": "Commit"
|
|
1039
|
+
"content": "Commit",
|
|
1040
|
+
"type": "typography"
|
|
751
1041
|
},
|
|
752
1042
|
{
|
|
753
1043
|
"type": "typography",
|
|
754
|
-
"
|
|
755
|
-
"
|
|
1044
|
+
"content": "@entity.commit",
|
|
1045
|
+
"variant": "body"
|
|
756
1046
|
}
|
|
757
|
-
]
|
|
1047
|
+
],
|
|
1048
|
+
"gap": "md"
|
|
758
1049
|
},
|
|
759
1050
|
{
|
|
760
|
-
"type": "stack",
|
|
761
|
-
"direction": "horizontal",
|
|
762
|
-
"gap": "md",
|
|
763
1051
|
"children": [
|
|
764
1052
|
{
|
|
765
1053
|
"type": "typography",
|
|
@@ -767,33 +1055,36 @@
|
|
|
767
1055
|
"content": "Triggered By"
|
|
768
1056
|
},
|
|
769
1057
|
{
|
|
770
|
-
"type": "typography",
|
|
771
1058
|
"variant": "body",
|
|
772
|
-
"content": "@entity.triggeredBy"
|
|
1059
|
+
"content": "@entity.triggeredBy",
|
|
1060
|
+
"type": "typography"
|
|
773
1061
|
}
|
|
774
|
-
]
|
|
1062
|
+
],
|
|
1063
|
+
"gap": "md",
|
|
1064
|
+
"type": "stack",
|
|
1065
|
+
"direction": "horizontal"
|
|
775
1066
|
},
|
|
776
1067
|
{
|
|
777
1068
|
"type": "divider"
|
|
778
1069
|
},
|
|
779
1070
|
{
|
|
1071
|
+
"gap": "sm",
|
|
780
1072
|
"type": "stack",
|
|
781
1073
|
"direction": "horizontal",
|
|
782
|
-
"gap": "sm",
|
|
783
1074
|
"justify": "end",
|
|
784
1075
|
"children": [
|
|
785
1076
|
{
|
|
1077
|
+
"event": "EDIT",
|
|
786
1078
|
"type": "button",
|
|
787
1079
|
"label": "Edit",
|
|
788
|
-
"event": "EDIT",
|
|
789
1080
|
"variant": "primary",
|
|
790
1081
|
"icon": "edit"
|
|
791
1082
|
},
|
|
792
1083
|
{
|
|
793
|
-
"type": "button",
|
|
794
1084
|
"label": "Close",
|
|
795
|
-
"
|
|
796
|
-
"
|
|
1085
|
+
"variant": "ghost",
|
|
1086
|
+
"type": "button",
|
|
1087
|
+
"event": "CLOSE"
|
|
797
1088
|
}
|
|
798
1089
|
]
|
|
799
1090
|
}
|
|
@@ -812,6 +1103,13 @@
|
|
|
812
1103
|
"modal",
|
|
813
1104
|
null
|
|
814
1105
|
],
|
|
1106
|
+
[
|
|
1107
|
+
"render-ui",
|
|
1108
|
+
"main",
|
|
1109
|
+
{
|
|
1110
|
+
"type": "box"
|
|
1111
|
+
}
|
|
1112
|
+
],
|
|
815
1113
|
[
|
|
816
1114
|
"notify",
|
|
817
1115
|
"Cancelled",
|
|
@@ -828,24 +1126,78 @@
|
|
|
828
1126
|
"render-ui",
|
|
829
1127
|
"modal",
|
|
830
1128
|
null
|
|
1129
|
+
],
|
|
1130
|
+
[
|
|
1131
|
+
"render-ui",
|
|
1132
|
+
"main",
|
|
1133
|
+
{
|
|
1134
|
+
"type": "box"
|
|
1135
|
+
}
|
|
831
1136
|
]
|
|
832
1137
|
]
|
|
833
1138
|
}
|
|
834
1139
|
]
|
|
835
|
-
}
|
|
1140
|
+
},
|
|
1141
|
+
"scope": "collection"
|
|
836
1142
|
},
|
|
837
1143
|
{
|
|
838
1144
|
"name": "BuildDelete",
|
|
839
|
-
"linkedEntity": "Build",
|
|
840
1145
|
"category": "interaction",
|
|
1146
|
+
"linkedEntity": "Build",
|
|
841
1147
|
"emits": [
|
|
842
1148
|
{
|
|
843
|
-
"event": "
|
|
844
|
-
"scope": "
|
|
1149
|
+
"event": "BUILD_DELETED",
|
|
1150
|
+
"scope": "external",
|
|
1151
|
+
"payload": [
|
|
1152
|
+
{
|
|
1153
|
+
"name": "id",
|
|
1154
|
+
"type": "string"
|
|
1155
|
+
}
|
|
1156
|
+
]
|
|
845
1157
|
},
|
|
846
1158
|
{
|
|
847
|
-
"event": "
|
|
848
|
-
"
|
|
1159
|
+
"event": "BuildLoaded",
|
|
1160
|
+
"description": "Fired when Build finishes loading",
|
|
1161
|
+
"scope": "internal",
|
|
1162
|
+
"payload": [
|
|
1163
|
+
{
|
|
1164
|
+
"name": "id",
|
|
1165
|
+
"type": "string",
|
|
1166
|
+
"required": true
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
"name": "branch",
|
|
1170
|
+
"type": "string",
|
|
1171
|
+
"required": true
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"name": "status",
|
|
1175
|
+
"type": "string"
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
"name": "commit",
|
|
1179
|
+
"type": "string"
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"name": "triggeredBy",
|
|
1183
|
+
"type": "string"
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"name": "pendingId",
|
|
1187
|
+
"type": "string"
|
|
1188
|
+
}
|
|
1189
|
+
]
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"event": "BuildLoadFailed",
|
|
1193
|
+
"description": "Fired when Build fails to load",
|
|
1194
|
+
"scope": "internal",
|
|
1195
|
+
"payload": [
|
|
1196
|
+
{
|
|
1197
|
+
"name": "message",
|
|
1198
|
+
"type": "string"
|
|
1199
|
+
}
|
|
1200
|
+
]
|
|
849
1201
|
}
|
|
850
1202
|
],
|
|
851
1203
|
"stateMachine": {
|
|
@@ -865,7 +1217,7 @@
|
|
|
865
1217
|
},
|
|
866
1218
|
{
|
|
867
1219
|
"key": "DELETE",
|
|
868
|
-
"name": "
|
|
1220
|
+
"name": "Delete",
|
|
869
1221
|
"payload": [
|
|
870
1222
|
{
|
|
871
1223
|
"name": "id",
|
|
@@ -876,7 +1228,7 @@
|
|
|
876
1228
|
},
|
|
877
1229
|
{
|
|
878
1230
|
"key": "CONFIRM_DELETE",
|
|
879
|
-
"name": "Confirm"
|
|
1231
|
+
"name": "Confirm Delete"
|
|
880
1232
|
},
|
|
881
1233
|
{
|
|
882
1234
|
"key": "CANCEL",
|
|
@@ -885,6 +1237,24 @@
|
|
|
885
1237
|
{
|
|
886
1238
|
"key": "CLOSE",
|
|
887
1239
|
"name": "Close"
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
"key": "BUILD_DELETED",
|
|
1243
|
+
"name": "Build Deleted"
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"key": "BuildLoaded",
|
|
1247
|
+
"name": "Build loaded"
|
|
1248
|
+
},
|
|
1249
|
+
{
|
|
1250
|
+
"key": "BuildLoadFailed",
|
|
1251
|
+
"name": "Build load failed",
|
|
1252
|
+
"payload": [
|
|
1253
|
+
{
|
|
1254
|
+
"name": "message",
|
|
1255
|
+
"type": "string"
|
|
1256
|
+
}
|
|
1257
|
+
]
|
|
888
1258
|
}
|
|
889
1259
|
],
|
|
890
1260
|
"transitions": [
|
|
@@ -913,6 +1283,10 @@
|
|
|
913
1283
|
"fetch",
|
|
914
1284
|
"Build",
|
|
915
1285
|
{
|
|
1286
|
+
"emit": {
|
|
1287
|
+
"success": "BuildLoaded",
|
|
1288
|
+
"failure": "BuildLoadFailed"
|
|
1289
|
+
},
|
|
916
1290
|
"id": "@payload.id"
|
|
917
1291
|
}
|
|
918
1292
|
],
|
|
@@ -920,27 +1294,25 @@
|
|
|
920
1294
|
"render-ui",
|
|
921
1295
|
"modal",
|
|
922
1296
|
{
|
|
923
|
-
"type": "stack",
|
|
924
1297
|
"direction": "vertical",
|
|
925
|
-
"gap": "md",
|
|
926
1298
|
"children": [
|
|
927
1299
|
{
|
|
928
|
-
"type": "stack",
|
|
929
|
-
"direction": "horizontal",
|
|
930
|
-
"gap": "sm",
|
|
931
|
-
"align": "center",
|
|
932
1300
|
"children": [
|
|
933
1301
|
{
|
|
934
|
-
"type": "icon",
|
|
935
1302
|
"name": "alert-triangle",
|
|
936
|
-
"size": "md"
|
|
1303
|
+
"size": "md",
|
|
1304
|
+
"type": "icon"
|
|
937
1305
|
},
|
|
938
1306
|
{
|
|
939
1307
|
"type": "typography",
|
|
940
1308
|
"content": "Delete Build",
|
|
941
1309
|
"variant": "h3"
|
|
942
1310
|
}
|
|
943
|
-
]
|
|
1311
|
+
],
|
|
1312
|
+
"gap": "sm",
|
|
1313
|
+
"align": "center",
|
|
1314
|
+
"type": "stack",
|
|
1315
|
+
"direction": "horizontal"
|
|
944
1316
|
},
|
|
945
1317
|
{
|
|
946
1318
|
"type": "divider"
|
|
@@ -951,27 +1323,29 @@
|
|
|
951
1323
|
"message": "This action cannot be undone."
|
|
952
1324
|
},
|
|
953
1325
|
{
|
|
1326
|
+
"justify": "end",
|
|
954
1327
|
"type": "stack",
|
|
955
1328
|
"direction": "horizontal",
|
|
956
|
-
"gap": "sm",
|
|
957
|
-
"justify": "end",
|
|
958
1329
|
"children": [
|
|
959
1330
|
{
|
|
960
|
-
"
|
|
1331
|
+
"variant": "ghost",
|
|
961
1332
|
"label": "Cancel",
|
|
962
1333
|
"event": "CANCEL",
|
|
963
|
-
"
|
|
1334
|
+
"type": "button"
|
|
964
1335
|
},
|
|
965
1336
|
{
|
|
966
1337
|
"type": "button",
|
|
967
|
-
"
|
|
1338
|
+
"icon": "check",
|
|
968
1339
|
"event": "CONFIRM_DELETE",
|
|
969
1340
|
"variant": "danger",
|
|
970
|
-
"
|
|
1341
|
+
"label": "Delete"
|
|
971
1342
|
}
|
|
972
|
-
]
|
|
1343
|
+
],
|
|
1344
|
+
"gap": "sm"
|
|
973
1345
|
}
|
|
974
|
-
]
|
|
1346
|
+
],
|
|
1347
|
+
"type": "stack",
|
|
1348
|
+
"gap": "md"
|
|
975
1349
|
}
|
|
976
1350
|
]
|
|
977
1351
|
]
|
|
@@ -992,6 +1366,13 @@
|
|
|
992
1366
|
"modal",
|
|
993
1367
|
null
|
|
994
1368
|
],
|
|
1369
|
+
[
|
|
1370
|
+
"render-ui",
|
|
1371
|
+
"main",
|
|
1372
|
+
{
|
|
1373
|
+
"type": "box"
|
|
1374
|
+
}
|
|
1375
|
+
],
|
|
995
1376
|
[
|
|
996
1377
|
"ref",
|
|
997
1378
|
"Build"
|
|
@@ -1012,6 +1393,13 @@
|
|
|
1012
1393
|
"modal",
|
|
1013
1394
|
null
|
|
1014
1395
|
],
|
|
1396
|
+
[
|
|
1397
|
+
"render-ui",
|
|
1398
|
+
"main",
|
|
1399
|
+
{
|
|
1400
|
+
"type": "box"
|
|
1401
|
+
}
|
|
1402
|
+
],
|
|
1015
1403
|
[
|
|
1016
1404
|
"ref",
|
|
1017
1405
|
"Build"
|
|
@@ -1028,6 +1416,13 @@
|
|
|
1028
1416
|
"modal",
|
|
1029
1417
|
null
|
|
1030
1418
|
],
|
|
1419
|
+
[
|
|
1420
|
+
"render-ui",
|
|
1421
|
+
"main",
|
|
1422
|
+
{
|
|
1423
|
+
"type": "box"
|
|
1424
|
+
}
|
|
1425
|
+
],
|
|
1031
1426
|
[
|
|
1032
1427
|
"ref",
|
|
1033
1428
|
"Build"
|
|
@@ -1035,14 +1430,14 @@
|
|
|
1035
1430
|
]
|
|
1036
1431
|
}
|
|
1037
1432
|
]
|
|
1038
|
-
}
|
|
1433
|
+
},
|
|
1434
|
+
"scope": "collection"
|
|
1039
1435
|
}
|
|
1040
1436
|
],
|
|
1041
1437
|
"pages": [
|
|
1042
1438
|
{
|
|
1043
1439
|
"name": "BuildsPage",
|
|
1044
1440
|
"path": "/builds",
|
|
1045
|
-
"isInitial": true,
|
|
1046
1441
|
"traits": [
|
|
1047
1442
|
{
|
|
1048
1443
|
"ref": "BuildBrowse"
|
|
@@ -1082,7 +1477,12 @@
|
|
|
1082
1477
|
{
|
|
1083
1478
|
"name": "status",
|
|
1084
1479
|
"type": "string",
|
|
1085
|
-
"
|
|
1480
|
+
"values": [
|
|
1481
|
+
"pending",
|
|
1482
|
+
"running",
|
|
1483
|
+
"success",
|
|
1484
|
+
"failed"
|
|
1485
|
+
]
|
|
1086
1486
|
},
|
|
1087
1487
|
{
|
|
1088
1488
|
"name": "duration",
|
|
@@ -1097,8 +1497,50 @@
|
|
|
1097
1497
|
"traits": [
|
|
1098
1498
|
{
|
|
1099
1499
|
"name": "StageDisplay",
|
|
1100
|
-
"linkedEntity": "Stage",
|
|
1101
1500
|
"category": "interaction",
|
|
1501
|
+
"linkedEntity": "Stage",
|
|
1502
|
+
"emits": [
|
|
1503
|
+
{
|
|
1504
|
+
"event": "StageLoaded",
|
|
1505
|
+
"description": "Fired when Stage finishes loading",
|
|
1506
|
+
"scope": "internal",
|
|
1507
|
+
"payload": [
|
|
1508
|
+
{
|
|
1509
|
+
"name": "id",
|
|
1510
|
+
"type": "string",
|
|
1511
|
+
"required": true
|
|
1512
|
+
},
|
|
1513
|
+
{
|
|
1514
|
+
"name": "name",
|
|
1515
|
+
"type": "string",
|
|
1516
|
+
"required": true
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
"name": "status",
|
|
1520
|
+
"type": "string"
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
"name": "duration",
|
|
1524
|
+
"type": "string"
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
"name": "output",
|
|
1528
|
+
"type": "string"
|
|
1529
|
+
}
|
|
1530
|
+
]
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
"event": "StageLoadFailed",
|
|
1534
|
+
"description": "Fired when Stage fails to load",
|
|
1535
|
+
"scope": "internal",
|
|
1536
|
+
"payload": [
|
|
1537
|
+
{
|
|
1538
|
+
"name": "message",
|
|
1539
|
+
"type": "string"
|
|
1540
|
+
}
|
|
1541
|
+
]
|
|
1542
|
+
}
|
|
1543
|
+
],
|
|
1102
1544
|
"stateMachine": {
|
|
1103
1545
|
"states": [
|
|
1104
1546
|
{
|
|
@@ -1128,6 +1570,20 @@
|
|
|
1128
1570
|
{
|
|
1129
1571
|
"key": "REFRESHED",
|
|
1130
1572
|
"name": "Refreshed"
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
"key": "StageLoaded",
|
|
1576
|
+
"name": "Stage loaded"
|
|
1577
|
+
},
|
|
1578
|
+
{
|
|
1579
|
+
"key": "StageLoadFailed",
|
|
1580
|
+
"name": "Stage load failed",
|
|
1581
|
+
"payload": [
|
|
1582
|
+
{
|
|
1583
|
+
"name": "message",
|
|
1584
|
+
"type": "string"
|
|
1585
|
+
}
|
|
1586
|
+
]
|
|
1131
1587
|
}
|
|
1132
1588
|
],
|
|
1133
1589
|
"transitions": [
|
|
@@ -1138,81 +1594,66 @@
|
|
|
1138
1594
|
"effects": [
|
|
1139
1595
|
[
|
|
1140
1596
|
"fetch",
|
|
1141
|
-
"Stage"
|
|
1597
|
+
"Stage",
|
|
1598
|
+
{
|
|
1599
|
+
"emit": {
|
|
1600
|
+
"success": "StageLoaded",
|
|
1601
|
+
"failure": "StageLoadFailed"
|
|
1602
|
+
}
|
|
1603
|
+
}
|
|
1142
1604
|
],
|
|
1143
1605
|
[
|
|
1144
1606
|
"render-ui",
|
|
1145
1607
|
"main",
|
|
1146
1608
|
{
|
|
1147
1609
|
"type": "dashboard-layout",
|
|
1148
|
-
"appName": "CI/CD Pipeline",
|
|
1149
|
-
"navItems": [
|
|
1150
|
-
{
|
|
1151
|
-
"label": "Builds",
|
|
1152
|
-
"href": "/builds",
|
|
1153
|
-
"icon": "hammer"
|
|
1154
|
-
},
|
|
1155
|
-
{
|
|
1156
|
-
"label": "Stages",
|
|
1157
|
-
"href": "/stages",
|
|
1158
|
-
"icon": "layers"
|
|
1159
|
-
},
|
|
1160
|
-
{
|
|
1161
|
-
"label": "Deploy",
|
|
1162
|
-
"href": "/deploy",
|
|
1163
|
-
"icon": "rocket"
|
|
1164
|
-
}
|
|
1165
|
-
],
|
|
1166
1610
|
"children": [
|
|
1167
1611
|
{
|
|
1168
|
-
"type": "scaled-diagram",
|
|
1169
1612
|
"children": [
|
|
1170
1613
|
{
|
|
1171
|
-
"type": "stack",
|
|
1172
1614
|
"direction": "vertical",
|
|
1173
|
-
"gap": "lg",
|
|
1174
1615
|
"children": [
|
|
1175
1616
|
{
|
|
1176
|
-
"type": "breadcrumb",
|
|
1177
1617
|
"items": [
|
|
1178
1618
|
{
|
|
1179
|
-
"
|
|
1180
|
-
"
|
|
1619
|
+
"href": "/",
|
|
1620
|
+
"label": "Home"
|
|
1181
1621
|
},
|
|
1182
1622
|
{
|
|
1183
1623
|
"label": "Stages"
|
|
1184
1624
|
}
|
|
1185
|
-
]
|
|
1625
|
+
],
|
|
1626
|
+
"type": "breadcrumb"
|
|
1186
1627
|
},
|
|
1187
1628
|
{
|
|
1188
|
-
"type": "stack",
|
|
1189
|
-
"direction": "horizontal",
|
|
1190
1629
|
"gap": "md",
|
|
1630
|
+
"direction": "horizontal",
|
|
1191
1631
|
"justify": "space-between",
|
|
1632
|
+
"type": "stack",
|
|
1192
1633
|
"children": [
|
|
1193
1634
|
{
|
|
1194
|
-
"type": "stack",
|
|
1195
1635
|
"direction": "horizontal",
|
|
1196
1636
|
"gap": "md",
|
|
1637
|
+
"type": "stack",
|
|
1197
1638
|
"children": [
|
|
1198
1639
|
{
|
|
1199
|
-
"type": "icon",
|
|
1200
1640
|
"name": "layers",
|
|
1201
|
-
"size": "lg"
|
|
1641
|
+
"size": "lg",
|
|
1642
|
+
"type": "icon"
|
|
1202
1643
|
},
|
|
1203
1644
|
{
|
|
1204
|
-
"
|
|
1645
|
+
"variant": "h2",
|
|
1205
1646
|
"content": "Stages",
|
|
1206
|
-
"
|
|
1647
|
+
"type": "typography"
|
|
1207
1648
|
}
|
|
1208
1649
|
]
|
|
1209
1650
|
},
|
|
1210
1651
|
{
|
|
1211
|
-
"type": "button",
|
|
1212
|
-
"label": "Refresh",
|
|
1213
1652
|
"event": "REFRESH",
|
|
1214
|
-
"
|
|
1215
|
-
"
|
|
1653
|
+
"icon": "refresh-cw",
|
|
1654
|
+
"label": "Refresh",
|
|
1655
|
+
"type": "button",
|
|
1656
|
+
"variant": "secondary"
|
|
1216
1657
|
}
|
|
1217
1658
|
]
|
|
1218
1659
|
},
|
|
@@ -1220,25 +1661,18 @@
|
|
|
1220
1661
|
"type": "divider"
|
|
1221
1662
|
},
|
|
1222
1663
|
{
|
|
1223
|
-
"type": "box",
|
|
1224
1664
|
"padding": "md",
|
|
1225
1665
|
"children": [
|
|
1226
1666
|
{
|
|
1227
|
-
"type": "simple-grid",
|
|
1228
|
-
"columns": 3,
|
|
1229
1667
|
"children": [
|
|
1230
1668
|
{
|
|
1231
|
-
"type": "card",
|
|
1232
1669
|
"children": [
|
|
1233
1670
|
{
|
|
1234
|
-
"type": "stack",
|
|
1235
|
-
"direction": "vertical",
|
|
1236
|
-
"gap": "sm",
|
|
1237
1671
|
"children": [
|
|
1238
1672
|
{
|
|
1239
|
-
"
|
|
1673
|
+
"content": "Name",
|
|
1240
1674
|
"variant": "caption",
|
|
1241
|
-
"
|
|
1675
|
+
"type": "typography"
|
|
1242
1676
|
},
|
|
1243
1677
|
{
|
|
1244
1678
|
"type": "typography",
|
|
@@ -1252,26 +1686,28 @@
|
|
|
1252
1686
|
"name"
|
|
1253
1687
|
]
|
|
1254
1688
|
}
|
|
1255
|
-
]
|
|
1689
|
+
],
|
|
1690
|
+
"type": "stack",
|
|
1691
|
+
"gap": "sm",
|
|
1692
|
+
"direction": "vertical"
|
|
1256
1693
|
}
|
|
1257
|
-
]
|
|
1694
|
+
],
|
|
1695
|
+
"type": "card"
|
|
1258
1696
|
},
|
|
1259
1697
|
{
|
|
1260
|
-
"type": "card",
|
|
1261
1698
|
"children": [
|
|
1262
1699
|
{
|
|
1263
|
-
"type": "stack",
|
|
1264
1700
|
"direction": "vertical",
|
|
1265
1701
|
"gap": "sm",
|
|
1702
|
+
"type": "stack",
|
|
1266
1703
|
"children": [
|
|
1267
1704
|
{
|
|
1268
1705
|
"type": "typography",
|
|
1269
|
-
"
|
|
1270
|
-
"
|
|
1706
|
+
"content": "Status",
|
|
1707
|
+
"variant": "caption"
|
|
1271
1708
|
},
|
|
1272
1709
|
{
|
|
1273
1710
|
"type": "typography",
|
|
1274
|
-
"variant": "h3",
|
|
1275
1711
|
"content": [
|
|
1276
1712
|
"object/get",
|
|
1277
1713
|
[
|
|
@@ -1279,27 +1715,26 @@
|
|
|
1279
1715
|
"@entity"
|
|
1280
1716
|
],
|
|
1281
1717
|
"status"
|
|
1282
|
-
]
|
|
1718
|
+
],
|
|
1719
|
+
"variant": "h3"
|
|
1283
1720
|
}
|
|
1284
1721
|
]
|
|
1285
1722
|
}
|
|
1286
|
-
]
|
|
1723
|
+
],
|
|
1724
|
+
"type": "card"
|
|
1287
1725
|
},
|
|
1288
1726
|
{
|
|
1289
1727
|
"type": "card",
|
|
1290
1728
|
"children": [
|
|
1291
1729
|
{
|
|
1292
|
-
"type": "stack",
|
|
1293
1730
|
"direction": "vertical",
|
|
1294
|
-
"gap": "sm",
|
|
1295
1731
|
"children": [
|
|
1296
1732
|
{
|
|
1297
1733
|
"type": "typography",
|
|
1298
|
-
"
|
|
1299
|
-
"
|
|
1734
|
+
"content": "Duration",
|
|
1735
|
+
"variant": "caption"
|
|
1300
1736
|
},
|
|
1301
1737
|
{
|
|
1302
|
-
"type": "typography",
|
|
1303
1738
|
"variant": "h3",
|
|
1304
1739
|
"content": [
|
|
1305
1740
|
"object/get",
|
|
@@ -1308,17 +1743,18 @@
|
|
|
1308
1743
|
"@entity"
|
|
1309
1744
|
],
|
|
1310
1745
|
"duration"
|
|
1311
|
-
]
|
|
1746
|
+
],
|
|
1747
|
+
"type": "typography"
|
|
1312
1748
|
}
|
|
1313
|
-
]
|
|
1749
|
+
],
|
|
1750
|
+
"type": "stack",
|
|
1751
|
+
"gap": "sm"
|
|
1314
1752
|
}
|
|
1315
1753
|
]
|
|
1316
1754
|
},
|
|
1317
1755
|
{
|
|
1318
|
-
"type": "card",
|
|
1319
1756
|
"children": [
|
|
1320
1757
|
{
|
|
1321
|
-
"type": "stack",
|
|
1322
1758
|
"direction": "vertical",
|
|
1323
1759
|
"gap": "sm",
|
|
1324
1760
|
"children": [
|
|
@@ -1328,8 +1764,6 @@
|
|
|
1328
1764
|
"content": "Output"
|
|
1329
1765
|
},
|
|
1330
1766
|
{
|
|
1331
|
-
"type": "typography",
|
|
1332
|
-
"variant": "h3",
|
|
1333
1767
|
"content": [
|
|
1334
1768
|
"object/get",
|
|
1335
1769
|
[
|
|
@@ -1337,129 +1771,157 @@
|
|
|
1337
1771
|
"@entity"
|
|
1338
1772
|
],
|
|
1339
1773
|
"output"
|
|
1340
|
-
]
|
|
1774
|
+
],
|
|
1775
|
+
"variant": "h3",
|
|
1776
|
+
"type": "typography"
|
|
1341
1777
|
}
|
|
1342
|
-
]
|
|
1778
|
+
],
|
|
1779
|
+
"type": "stack"
|
|
1343
1780
|
}
|
|
1344
|
-
]
|
|
1781
|
+
],
|
|
1782
|
+
"type": "card"
|
|
1345
1783
|
}
|
|
1346
|
-
]
|
|
1784
|
+
],
|
|
1785
|
+
"columns": 3.0,
|
|
1786
|
+
"type": "simple-grid"
|
|
1347
1787
|
}
|
|
1348
|
-
]
|
|
1788
|
+
],
|
|
1789
|
+
"type": "box"
|
|
1349
1790
|
},
|
|
1350
1791
|
{
|
|
1351
1792
|
"type": "divider"
|
|
1352
1793
|
},
|
|
1353
1794
|
{
|
|
1354
|
-
"type": "grid",
|
|
1355
|
-
"columns": 2,
|
|
1356
1795
|
"gap": "md",
|
|
1357
1796
|
"children": [
|
|
1358
1797
|
{
|
|
1359
|
-
"type": "card",
|
|
1360
1798
|
"children": [
|
|
1361
1799
|
{
|
|
1362
1800
|
"type": "typography",
|
|
1363
|
-
"
|
|
1364
|
-
"
|
|
1801
|
+
"content": "Chart View",
|
|
1802
|
+
"variant": "caption"
|
|
1365
1803
|
}
|
|
1366
|
-
]
|
|
1804
|
+
],
|
|
1805
|
+
"type": "card"
|
|
1367
1806
|
},
|
|
1368
1807
|
{
|
|
1369
1808
|
"type": "card",
|
|
1370
1809
|
"children": [
|
|
1371
1810
|
{
|
|
1372
1811
|
"type": "typography",
|
|
1373
|
-
"
|
|
1374
|
-
"
|
|
1812
|
+
"content": "Graph View",
|
|
1813
|
+
"variant": "caption"
|
|
1375
1814
|
}
|
|
1376
1815
|
]
|
|
1377
1816
|
}
|
|
1378
|
-
]
|
|
1817
|
+
],
|
|
1818
|
+
"columns": 2.0,
|
|
1819
|
+
"type": "grid"
|
|
1379
1820
|
},
|
|
1380
1821
|
{
|
|
1381
|
-
"
|
|
1822
|
+
"xKey": "date",
|
|
1823
|
+
"yKey": "value",
|
|
1824
|
+
"title": "Trend",
|
|
1382
1825
|
"data": [
|
|
1383
1826
|
{
|
|
1384
1827
|
"date": "Jan",
|
|
1385
|
-
"value": 12
|
|
1828
|
+
"value": 12.0
|
|
1386
1829
|
},
|
|
1387
1830
|
{
|
|
1388
|
-
"
|
|
1389
|
-
"
|
|
1831
|
+
"value": 19.0,
|
|
1832
|
+
"date": "Feb"
|
|
1390
1833
|
},
|
|
1391
1834
|
{
|
|
1392
|
-
"
|
|
1393
|
-
"
|
|
1835
|
+
"value": 15.0,
|
|
1836
|
+
"date": "Mar"
|
|
1394
1837
|
},
|
|
1395
1838
|
{
|
|
1396
|
-
"
|
|
1397
|
-
"
|
|
1839
|
+
"value": 25.0,
|
|
1840
|
+
"date": "Apr"
|
|
1398
1841
|
},
|
|
1399
1842
|
{
|
|
1400
1843
|
"date": "May",
|
|
1401
|
-
"value": 22
|
|
1844
|
+
"value": 22.0
|
|
1402
1845
|
},
|
|
1403
1846
|
{
|
|
1404
1847
|
"date": "Jun",
|
|
1405
|
-
"value": 30
|
|
1848
|
+
"value": 30.0
|
|
1406
1849
|
}
|
|
1407
1850
|
],
|
|
1408
|
-
"
|
|
1409
|
-
"yKey": "value",
|
|
1410
|
-
"title": "Trend"
|
|
1851
|
+
"type": "line-chart"
|
|
1411
1852
|
},
|
|
1412
1853
|
{
|
|
1413
|
-
"type": "chart-legend",
|
|
1414
1854
|
"items": [
|
|
1415
1855
|
{
|
|
1416
|
-
"
|
|
1417
|
-
"
|
|
1856
|
+
"color": "primary",
|
|
1857
|
+
"label": "Current"
|
|
1418
1858
|
},
|
|
1419
1859
|
{
|
|
1420
|
-
"
|
|
1421
|
-
"
|
|
1860
|
+
"color": "muted",
|
|
1861
|
+
"label": "Previous"
|
|
1422
1862
|
}
|
|
1423
|
-
]
|
|
1863
|
+
],
|
|
1864
|
+
"type": "chart-legend"
|
|
1424
1865
|
},
|
|
1425
1866
|
{
|
|
1426
|
-
"type": "graph-view",
|
|
1427
1867
|
"nodes": [
|
|
1428
1868
|
{
|
|
1429
|
-
"
|
|
1869
|
+
"y": 100.0,
|
|
1870
|
+
"x": 50.0,
|
|
1430
1871
|
"label": "Start",
|
|
1431
|
-
"
|
|
1432
|
-
"y": 100
|
|
1872
|
+
"id": "a"
|
|
1433
1873
|
},
|
|
1434
1874
|
{
|
|
1435
|
-
"id": "b",
|
|
1436
1875
|
"label": "Process",
|
|
1437
|
-
"
|
|
1438
|
-
"y": 50
|
|
1876
|
+
"id": "b",
|
|
1877
|
+
"y": 50.0,
|
|
1878
|
+
"x": 200.0
|
|
1439
1879
|
},
|
|
1440
1880
|
{
|
|
1441
1881
|
"id": "c",
|
|
1882
|
+
"x": 350.0,
|
|
1442
1883
|
"label": "End",
|
|
1443
|
-
"
|
|
1444
|
-
"y": 100
|
|
1884
|
+
"y": 100.0
|
|
1445
1885
|
}
|
|
1446
1886
|
],
|
|
1887
|
+
"width": 400.0,
|
|
1888
|
+
"type": "graph-view",
|
|
1889
|
+
"height": 200.0,
|
|
1447
1890
|
"edges": [
|
|
1448
1891
|
{
|
|
1449
1892
|
"from": "a",
|
|
1450
1893
|
"to": "b"
|
|
1451
1894
|
},
|
|
1452
1895
|
{
|
|
1453
|
-
"
|
|
1454
|
-
"
|
|
1896
|
+
"to": "c",
|
|
1897
|
+
"from": "b"
|
|
1455
1898
|
}
|
|
1456
|
-
]
|
|
1457
|
-
"width": 400,
|
|
1458
|
-
"height": 200
|
|
1899
|
+
]
|
|
1459
1900
|
}
|
|
1460
|
-
]
|
|
1901
|
+
],
|
|
1902
|
+
"type": "stack",
|
|
1903
|
+
"gap": "lg"
|
|
1461
1904
|
}
|
|
1462
|
-
]
|
|
1905
|
+
],
|
|
1906
|
+
"type": "scaled-diagram"
|
|
1907
|
+
}
|
|
1908
|
+
],
|
|
1909
|
+
"appName": "CI/CD Pipeline",
|
|
1910
|
+
"navItems": [
|
|
1911
|
+
{
|
|
1912
|
+
"icon": "hammer",
|
|
1913
|
+
"href": "/builds",
|
|
1914
|
+
"label": "Builds"
|
|
1915
|
+
},
|
|
1916
|
+
{
|
|
1917
|
+
"href": "/stages",
|
|
1918
|
+
"label": "Stages",
|
|
1919
|
+
"icon": "layers"
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
"icon": "rocket",
|
|
1923
|
+
"label": "Deploy",
|
|
1924
|
+
"href": "/deploy"
|
|
1463
1925
|
}
|
|
1464
1926
|
]
|
|
1465
1927
|
}
|
|
@@ -1473,39 +1935,24 @@
|
|
|
1473
1935
|
"effects": [
|
|
1474
1936
|
[
|
|
1475
1937
|
"fetch",
|
|
1476
|
-
"Stage"
|
|
1938
|
+
"Stage",
|
|
1939
|
+
{
|
|
1940
|
+
"emit": {
|
|
1941
|
+
"failure": "StageLoadFailed",
|
|
1942
|
+
"success": "StageLoaded"
|
|
1943
|
+
}
|
|
1944
|
+
}
|
|
1477
1945
|
],
|
|
1478
1946
|
[
|
|
1479
1947
|
"render-ui",
|
|
1480
1948
|
"main",
|
|
1481
1949
|
{
|
|
1482
|
-
"type": "dashboard-layout",
|
|
1483
|
-
"appName": "CI/CD Pipeline",
|
|
1484
|
-
"navItems": [
|
|
1485
|
-
{
|
|
1486
|
-
"label": "Builds",
|
|
1487
|
-
"href": "/builds",
|
|
1488
|
-
"icon": "hammer"
|
|
1489
|
-
},
|
|
1490
|
-
{
|
|
1491
|
-
"label": "Stages",
|
|
1492
|
-
"href": "/stages",
|
|
1493
|
-
"icon": "layers"
|
|
1494
|
-
},
|
|
1495
|
-
{
|
|
1496
|
-
"label": "Deploy",
|
|
1497
|
-
"href": "/deploy",
|
|
1498
|
-
"icon": "rocket"
|
|
1499
|
-
}
|
|
1500
|
-
],
|
|
1501
1950
|
"children": [
|
|
1502
1951
|
{
|
|
1503
1952
|
"type": "scaled-diagram",
|
|
1504
1953
|
"children": [
|
|
1505
1954
|
{
|
|
1506
|
-
"type": "stack",
|
|
1507
1955
|
"direction": "vertical",
|
|
1508
|
-
"gap": "lg",
|
|
1509
1956
|
"children": [
|
|
1510
1957
|
{
|
|
1511
1958
|
"type": "breadcrumb",
|
|
@@ -1520,10 +1967,8 @@
|
|
|
1520
1967
|
]
|
|
1521
1968
|
},
|
|
1522
1969
|
{
|
|
1523
|
-
"type": "stack",
|
|
1524
1970
|
"direction": "horizontal",
|
|
1525
1971
|
"gap": "md",
|
|
1526
|
-
"justify": "space-between",
|
|
1527
1972
|
"children": [
|
|
1528
1973
|
{
|
|
1529
1974
|
"type": "stack",
|
|
@@ -1537,47 +1982,42 @@
|
|
|
1537
1982
|
},
|
|
1538
1983
|
{
|
|
1539
1984
|
"type": "typography",
|
|
1540
|
-
"
|
|
1541
|
-
"
|
|
1985
|
+
"variant": "h2",
|
|
1986
|
+
"content": "Stages"
|
|
1542
1987
|
}
|
|
1543
1988
|
]
|
|
1544
1989
|
},
|
|
1545
1990
|
{
|
|
1546
|
-
"type": "button",
|
|
1547
1991
|
"label": "Refresh",
|
|
1548
1992
|
"event": "REFRESH",
|
|
1549
1993
|
"variant": "secondary",
|
|
1550
|
-
"icon": "refresh-cw"
|
|
1994
|
+
"icon": "refresh-cw",
|
|
1995
|
+
"type": "button"
|
|
1551
1996
|
}
|
|
1552
|
-
]
|
|
1997
|
+
],
|
|
1998
|
+
"justify": "space-between",
|
|
1999
|
+
"type": "stack"
|
|
1553
2000
|
},
|
|
1554
2001
|
{
|
|
1555
2002
|
"type": "divider"
|
|
1556
2003
|
},
|
|
1557
2004
|
{
|
|
1558
|
-
"type": "box",
|
|
1559
2005
|
"padding": "md",
|
|
1560
2006
|
"children": [
|
|
1561
2007
|
{
|
|
1562
|
-
"type": "simple-grid",
|
|
1563
|
-
"columns": 3,
|
|
1564
2008
|
"children": [
|
|
1565
2009
|
{
|
|
1566
|
-
"type": "card",
|
|
1567
2010
|
"children": [
|
|
1568
2011
|
{
|
|
1569
|
-
"type": "stack",
|
|
1570
2012
|
"direction": "vertical",
|
|
1571
|
-
"gap": "sm",
|
|
1572
2013
|
"children": [
|
|
1573
2014
|
{
|
|
2015
|
+
"content": "Name",
|
|
1574
2016
|
"type": "typography",
|
|
1575
|
-
"variant": "caption"
|
|
1576
|
-
"content": "Name"
|
|
2017
|
+
"variant": "caption"
|
|
1577
2018
|
},
|
|
1578
2019
|
{
|
|
1579
2020
|
"type": "typography",
|
|
1580
|
-
"variant": "h3",
|
|
1581
2021
|
"content": [
|
|
1582
2022
|
"object/get",
|
|
1583
2023
|
[
|
|
@@ -1585,28 +2025,30 @@
|
|
|
1585
2025
|
"@entity"
|
|
1586
2026
|
],
|
|
1587
2027
|
"name"
|
|
1588
|
-
]
|
|
2028
|
+
],
|
|
2029
|
+
"variant": "h3"
|
|
1589
2030
|
}
|
|
1590
|
-
]
|
|
2031
|
+
],
|
|
2032
|
+
"type": "stack",
|
|
2033
|
+
"gap": "sm"
|
|
1591
2034
|
}
|
|
1592
|
-
]
|
|
2035
|
+
],
|
|
2036
|
+
"type": "card"
|
|
1593
2037
|
},
|
|
1594
2038
|
{
|
|
1595
|
-
"type": "card",
|
|
1596
2039
|
"children": [
|
|
1597
2040
|
{
|
|
1598
2041
|
"type": "stack",
|
|
1599
|
-
"direction": "vertical",
|
|
1600
2042
|
"gap": "sm",
|
|
1601
2043
|
"children": [
|
|
1602
2044
|
{
|
|
1603
2045
|
"type": "typography",
|
|
1604
|
-
"
|
|
1605
|
-
"
|
|
2046
|
+
"content": "Status",
|
|
2047
|
+
"variant": "caption"
|
|
1606
2048
|
},
|
|
1607
2049
|
{
|
|
1608
|
-
"type": "typography",
|
|
1609
2050
|
"variant": "h3",
|
|
2051
|
+
"type": "typography",
|
|
1610
2052
|
"content": [
|
|
1611
2053
|
"object/get",
|
|
1612
2054
|
[
|
|
@@ -1616,22 +2058,20 @@
|
|
|
1616
2058
|
"status"
|
|
1617
2059
|
]
|
|
1618
2060
|
}
|
|
1619
|
-
]
|
|
2061
|
+
],
|
|
2062
|
+
"direction": "vertical"
|
|
1620
2063
|
}
|
|
1621
|
-
]
|
|
2064
|
+
],
|
|
2065
|
+
"type": "card"
|
|
1622
2066
|
},
|
|
1623
2067
|
{
|
|
1624
|
-
"type": "card",
|
|
1625
2068
|
"children": [
|
|
1626
2069
|
{
|
|
1627
|
-
"type": "stack",
|
|
1628
|
-
"direction": "vertical",
|
|
1629
|
-
"gap": "sm",
|
|
1630
2070
|
"children": [
|
|
1631
2071
|
{
|
|
2072
|
+
"content": "Duration",
|
|
1632
2073
|
"type": "typography",
|
|
1633
|
-
"variant": "caption"
|
|
1634
|
-
"content": "Duration"
|
|
2074
|
+
"variant": "caption"
|
|
1635
2075
|
},
|
|
1636
2076
|
{
|
|
1637
2077
|
"type": "typography",
|
|
@@ -1645,22 +2085,23 @@
|
|
|
1645
2085
|
"duration"
|
|
1646
2086
|
]
|
|
1647
2087
|
}
|
|
1648
|
-
]
|
|
2088
|
+
],
|
|
2089
|
+
"direction": "vertical",
|
|
2090
|
+
"type": "stack",
|
|
2091
|
+
"gap": "sm"
|
|
1649
2092
|
}
|
|
1650
|
-
]
|
|
2093
|
+
],
|
|
2094
|
+
"type": "card"
|
|
1651
2095
|
},
|
|
1652
2096
|
{
|
|
1653
2097
|
"type": "card",
|
|
1654
2098
|
"children": [
|
|
1655
2099
|
{
|
|
1656
|
-
"type": "stack",
|
|
1657
|
-
"direction": "vertical",
|
|
1658
|
-
"gap": "sm",
|
|
1659
2100
|
"children": [
|
|
1660
2101
|
{
|
|
1661
|
-
"type": "typography",
|
|
1662
2102
|
"variant": "caption",
|
|
1663
|
-
"content": "Output"
|
|
2103
|
+
"content": "Output",
|
|
2104
|
+
"type": "typography"
|
|
1664
2105
|
},
|
|
1665
2106
|
{
|
|
1666
2107
|
"type": "typography",
|
|
@@ -1674,21 +2115,24 @@
|
|
|
1674
2115
|
"output"
|
|
1675
2116
|
]
|
|
1676
2117
|
}
|
|
1677
|
-
]
|
|
2118
|
+
],
|
|
2119
|
+
"type": "stack",
|
|
2120
|
+
"direction": "vertical",
|
|
2121
|
+
"gap": "sm"
|
|
1678
2122
|
}
|
|
1679
2123
|
]
|
|
1680
2124
|
}
|
|
1681
|
-
]
|
|
2125
|
+
],
|
|
2126
|
+
"type": "simple-grid",
|
|
2127
|
+
"columns": 3.0
|
|
1682
2128
|
}
|
|
1683
|
-
]
|
|
2129
|
+
],
|
|
2130
|
+
"type": "box"
|
|
1684
2131
|
},
|
|
1685
2132
|
{
|
|
1686
2133
|
"type": "divider"
|
|
1687
2134
|
},
|
|
1688
2135
|
{
|
|
1689
|
-
"type": "grid",
|
|
1690
|
-
"columns": 2,
|
|
1691
|
-
"gap": "md",
|
|
1692
2136
|
"children": [
|
|
1693
2137
|
{
|
|
1694
2138
|
"type": "card",
|
|
@@ -1704,48 +2148,50 @@
|
|
|
1704
2148
|
"type": "card",
|
|
1705
2149
|
"children": [
|
|
1706
2150
|
{
|
|
2151
|
+
"content": "Graph View",
|
|
1707
2152
|
"type": "typography",
|
|
1708
|
-
"variant": "caption"
|
|
1709
|
-
"content": "Graph View"
|
|
2153
|
+
"variant": "caption"
|
|
1710
2154
|
}
|
|
1711
2155
|
]
|
|
1712
2156
|
}
|
|
1713
|
-
]
|
|
2157
|
+
],
|
|
2158
|
+
"type": "grid",
|
|
2159
|
+
"columns": 2.0,
|
|
2160
|
+
"gap": "md"
|
|
1714
2161
|
},
|
|
1715
2162
|
{
|
|
1716
2163
|
"type": "line-chart",
|
|
2164
|
+
"yKey": "value",
|
|
1717
2165
|
"data": [
|
|
1718
2166
|
{
|
|
1719
2167
|
"date": "Jan",
|
|
1720
|
-
"value": 12
|
|
2168
|
+
"value": 12.0
|
|
1721
2169
|
},
|
|
1722
2170
|
{
|
|
1723
|
-
"
|
|
1724
|
-
"
|
|
2171
|
+
"value": 19.0,
|
|
2172
|
+
"date": "Feb"
|
|
1725
2173
|
},
|
|
1726
2174
|
{
|
|
1727
2175
|
"date": "Mar",
|
|
1728
|
-
"value": 15
|
|
2176
|
+
"value": 15.0
|
|
1729
2177
|
},
|
|
1730
2178
|
{
|
|
1731
|
-
"
|
|
1732
|
-
"
|
|
2179
|
+
"value": 25.0,
|
|
2180
|
+
"date": "Apr"
|
|
1733
2181
|
},
|
|
1734
2182
|
{
|
|
1735
|
-
"
|
|
1736
|
-
"
|
|
2183
|
+
"value": 22.0,
|
|
2184
|
+
"date": "May"
|
|
1737
2185
|
},
|
|
1738
2186
|
{
|
|
1739
2187
|
"date": "Jun",
|
|
1740
|
-
"value": 30
|
|
2188
|
+
"value": 30.0
|
|
1741
2189
|
}
|
|
1742
2190
|
],
|
|
1743
2191
|
"xKey": "date",
|
|
1744
|
-
"yKey": "value",
|
|
1745
2192
|
"title": "Trend"
|
|
1746
2193
|
},
|
|
1747
2194
|
{
|
|
1748
|
-
"type": "chart-legend",
|
|
1749
2195
|
"items": [
|
|
1750
2196
|
{
|
|
1751
2197
|
"label": "Current",
|
|
@@ -1755,28 +2201,31 @@
|
|
|
1755
2201
|
"label": "Previous",
|
|
1756
2202
|
"color": "muted"
|
|
1757
2203
|
}
|
|
1758
|
-
]
|
|
2204
|
+
],
|
|
2205
|
+
"type": "chart-legend"
|
|
1759
2206
|
},
|
|
1760
2207
|
{
|
|
2208
|
+
"height": 200.0,
|
|
1761
2209
|
"type": "graph-view",
|
|
2210
|
+
"width": 400.0,
|
|
1762
2211
|
"nodes": [
|
|
1763
2212
|
{
|
|
1764
|
-
"id": "a",
|
|
1765
2213
|
"label": "Start",
|
|
1766
|
-
"
|
|
1767
|
-
"y": 100
|
|
2214
|
+
"id": "a",
|
|
2215
|
+
"y": 100.0,
|
|
2216
|
+
"x": 50.0
|
|
1768
2217
|
},
|
|
1769
2218
|
{
|
|
2219
|
+
"x": 200.0,
|
|
1770
2220
|
"id": "b",
|
|
1771
2221
|
"label": "Process",
|
|
1772
|
-
"
|
|
1773
|
-
"y": 50
|
|
2222
|
+
"y": 50.0
|
|
1774
2223
|
},
|
|
1775
2224
|
{
|
|
1776
2225
|
"id": "c",
|
|
1777
2226
|
"label": "End",
|
|
1778
|
-
"
|
|
1779
|
-
"
|
|
2227
|
+
"y": 100.0,
|
|
2228
|
+
"x": 350.0
|
|
1780
2229
|
}
|
|
1781
2230
|
],
|
|
1782
2231
|
"edges": [
|
|
@@ -1788,15 +2237,34 @@
|
|
|
1788
2237
|
"from": "b",
|
|
1789
2238
|
"to": "c"
|
|
1790
2239
|
}
|
|
1791
|
-
]
|
|
1792
|
-
"width": 400,
|
|
1793
|
-
"height": 200
|
|
2240
|
+
]
|
|
1794
2241
|
}
|
|
1795
|
-
]
|
|
2242
|
+
],
|
|
2243
|
+
"gap": "lg",
|
|
2244
|
+
"type": "stack"
|
|
1796
2245
|
}
|
|
1797
2246
|
]
|
|
1798
2247
|
}
|
|
1799
|
-
]
|
|
2248
|
+
],
|
|
2249
|
+
"type": "dashboard-layout",
|
|
2250
|
+
"navItems": [
|
|
2251
|
+
{
|
|
2252
|
+
"href": "/builds",
|
|
2253
|
+
"label": "Builds",
|
|
2254
|
+
"icon": "hammer"
|
|
2255
|
+
},
|
|
2256
|
+
{
|
|
2257
|
+
"label": "Stages",
|
|
2258
|
+
"href": "/stages",
|
|
2259
|
+
"icon": "layers"
|
|
2260
|
+
},
|
|
2261
|
+
{
|
|
2262
|
+
"label": "Deploy",
|
|
2263
|
+
"icon": "rocket",
|
|
2264
|
+
"href": "/deploy"
|
|
2265
|
+
}
|
|
2266
|
+
],
|
|
2267
|
+
"appName": "CI/CD Pipeline"
|
|
1800
2268
|
}
|
|
1801
2269
|
]
|
|
1802
2270
|
]
|
|
@@ -1808,102 +2276,80 @@
|
|
|
1808
2276
|
"effects": [
|
|
1809
2277
|
[
|
|
1810
2278
|
"fetch",
|
|
1811
|
-
"Stage"
|
|
2279
|
+
"Stage",
|
|
2280
|
+
{
|
|
2281
|
+
"emit": {
|
|
2282
|
+
"success": "StageLoaded",
|
|
2283
|
+
"failure": "StageLoadFailed"
|
|
2284
|
+
}
|
|
2285
|
+
}
|
|
1812
2286
|
],
|
|
1813
2287
|
[
|
|
1814
2288
|
"render-ui",
|
|
1815
2289
|
"main",
|
|
1816
2290
|
{
|
|
1817
|
-
"type": "dashboard-layout",
|
|
1818
|
-
"appName": "CI/CD Pipeline",
|
|
1819
|
-
"navItems": [
|
|
1820
|
-
{
|
|
1821
|
-
"label": "Builds",
|
|
1822
|
-
"href": "/builds",
|
|
1823
|
-
"icon": "hammer"
|
|
1824
|
-
},
|
|
1825
|
-
{
|
|
1826
|
-
"label": "Stages",
|
|
1827
|
-
"href": "/stages",
|
|
1828
|
-
"icon": "layers"
|
|
1829
|
-
},
|
|
1830
|
-
{
|
|
1831
|
-
"label": "Deploy",
|
|
1832
|
-
"href": "/deploy",
|
|
1833
|
-
"icon": "rocket"
|
|
1834
|
-
}
|
|
1835
|
-
],
|
|
1836
2291
|
"children": [
|
|
1837
2292
|
{
|
|
1838
|
-
"type": "scaled-diagram",
|
|
1839
2293
|
"children": [
|
|
1840
2294
|
{
|
|
1841
|
-
"type": "stack",
|
|
1842
|
-
"direction": "vertical",
|
|
1843
2295
|
"gap": "lg",
|
|
1844
2296
|
"children": [
|
|
1845
2297
|
{
|
|
1846
|
-
"type": "breadcrumb",
|
|
1847
2298
|
"items": [
|
|
1848
2299
|
{
|
|
1849
|
-
"
|
|
1850
|
-
"
|
|
2300
|
+
"href": "/",
|
|
2301
|
+
"label": "Home"
|
|
1851
2302
|
},
|
|
1852
2303
|
{
|
|
1853
2304
|
"label": "Stages"
|
|
1854
2305
|
}
|
|
1855
|
-
]
|
|
2306
|
+
],
|
|
2307
|
+
"type": "breadcrumb"
|
|
1856
2308
|
},
|
|
1857
2309
|
{
|
|
1858
|
-
"type": "stack",
|
|
1859
2310
|
"direction": "horizontal",
|
|
1860
2311
|
"gap": "md",
|
|
1861
|
-
"justify": "space-between",
|
|
1862
2312
|
"children": [
|
|
1863
2313
|
{
|
|
1864
|
-
"type": "stack",
|
|
1865
|
-
"direction": "horizontal",
|
|
1866
2314
|
"gap": "md",
|
|
1867
2315
|
"children": [
|
|
1868
2316
|
{
|
|
1869
2317
|
"type": "icon",
|
|
1870
|
-
"
|
|
1871
|
-
"
|
|
2318
|
+
"size": "lg",
|
|
2319
|
+
"name": "layers"
|
|
1872
2320
|
},
|
|
1873
2321
|
{
|
|
1874
2322
|
"type": "typography",
|
|
1875
|
-
"
|
|
1876
|
-
"
|
|
2323
|
+
"variant": "h2",
|
|
2324
|
+
"content": "Stages"
|
|
1877
2325
|
}
|
|
1878
|
-
]
|
|
2326
|
+
],
|
|
2327
|
+
"type": "stack",
|
|
2328
|
+
"direction": "horizontal"
|
|
1879
2329
|
},
|
|
1880
2330
|
{
|
|
1881
|
-
"type": "button",
|
|
1882
2331
|
"label": "Refresh",
|
|
1883
|
-
"event": "REFRESH",
|
|
1884
2332
|
"variant": "secondary",
|
|
1885
|
-
"
|
|
2333
|
+
"type": "button",
|
|
2334
|
+
"icon": "refresh-cw",
|
|
2335
|
+
"event": "REFRESH"
|
|
1886
2336
|
}
|
|
1887
|
-
]
|
|
2337
|
+
],
|
|
2338
|
+
"type": "stack",
|
|
2339
|
+
"justify": "space-between"
|
|
1888
2340
|
},
|
|
1889
2341
|
{
|
|
1890
2342
|
"type": "divider"
|
|
1891
2343
|
},
|
|
1892
2344
|
{
|
|
1893
|
-
"type": "box",
|
|
1894
2345
|
"padding": "md",
|
|
1895
2346
|
"children": [
|
|
1896
2347
|
{
|
|
1897
2348
|
"type": "simple-grid",
|
|
1898
|
-
"columns": 3,
|
|
1899
2349
|
"children": [
|
|
1900
2350
|
{
|
|
1901
|
-
"type": "card",
|
|
1902
2351
|
"children": [
|
|
1903
2352
|
{
|
|
1904
|
-
"type": "stack",
|
|
1905
|
-
"direction": "vertical",
|
|
1906
|
-
"gap": "sm",
|
|
1907
2353
|
"children": [
|
|
1908
2354
|
{
|
|
1909
2355
|
"type": "typography",
|
|
@@ -1911,8 +2357,6 @@
|
|
|
1911
2357
|
"content": "Name"
|
|
1912
2358
|
},
|
|
1913
2359
|
{
|
|
1914
|
-
"type": "typography",
|
|
1915
|
-
"variant": "h3",
|
|
1916
2360
|
"content": [
|
|
1917
2361
|
"object/get",
|
|
1918
2362
|
[
|
|
@@ -1920,28 +2364,29 @@
|
|
|
1920
2364
|
"@entity"
|
|
1921
2365
|
],
|
|
1922
2366
|
"name"
|
|
1923
|
-
]
|
|
2367
|
+
],
|
|
2368
|
+
"variant": "h3",
|
|
2369
|
+
"type": "typography"
|
|
1924
2370
|
}
|
|
1925
|
-
]
|
|
2371
|
+
],
|
|
2372
|
+
"type": "stack",
|
|
2373
|
+
"direction": "vertical",
|
|
2374
|
+
"gap": "sm"
|
|
1926
2375
|
}
|
|
1927
|
-
]
|
|
2376
|
+
],
|
|
2377
|
+
"type": "card"
|
|
1928
2378
|
},
|
|
1929
2379
|
{
|
|
1930
|
-
"type": "card",
|
|
1931
2380
|
"children": [
|
|
1932
2381
|
{
|
|
1933
|
-
"type": "stack",
|
|
1934
2382
|
"direction": "vertical",
|
|
1935
|
-
"gap": "sm",
|
|
1936
2383
|
"children": [
|
|
1937
2384
|
{
|
|
1938
|
-
"type": "typography",
|
|
1939
2385
|
"variant": "caption",
|
|
2386
|
+
"type": "typography",
|
|
1940
2387
|
"content": "Status"
|
|
1941
2388
|
},
|
|
1942
2389
|
{
|
|
1943
|
-
"type": "typography",
|
|
1944
|
-
"variant": "h3",
|
|
1945
2390
|
"content": [
|
|
1946
2391
|
"object/get",
|
|
1947
2392
|
[
|
|
@@ -1949,28 +2394,30 @@
|
|
|
1949
2394
|
"@entity"
|
|
1950
2395
|
],
|
|
1951
2396
|
"status"
|
|
1952
|
-
]
|
|
2397
|
+
],
|
|
2398
|
+
"variant": "h3",
|
|
2399
|
+
"type": "typography"
|
|
1953
2400
|
}
|
|
1954
|
-
]
|
|
2401
|
+
],
|
|
2402
|
+
"type": "stack",
|
|
2403
|
+
"gap": "sm"
|
|
1955
2404
|
}
|
|
1956
|
-
]
|
|
2405
|
+
],
|
|
2406
|
+
"type": "card"
|
|
1957
2407
|
},
|
|
1958
2408
|
{
|
|
1959
2409
|
"type": "card",
|
|
1960
2410
|
"children": [
|
|
1961
2411
|
{
|
|
1962
|
-
"type": "stack",
|
|
1963
|
-
"direction": "vertical",
|
|
1964
|
-
"gap": "sm",
|
|
1965
2412
|
"children": [
|
|
1966
2413
|
{
|
|
1967
|
-
"type": "typography",
|
|
1968
2414
|
"variant": "caption",
|
|
2415
|
+
"type": "typography",
|
|
1969
2416
|
"content": "Duration"
|
|
1970
2417
|
},
|
|
1971
2418
|
{
|
|
1972
|
-
"type": "typography",
|
|
1973
2419
|
"variant": "h3",
|
|
2420
|
+
"type": "typography",
|
|
1974
2421
|
"content": [
|
|
1975
2422
|
"object/get",
|
|
1976
2423
|
[
|
|
@@ -1980,16 +2427,16 @@
|
|
|
1980
2427
|
"duration"
|
|
1981
2428
|
]
|
|
1982
2429
|
}
|
|
1983
|
-
]
|
|
2430
|
+
],
|
|
2431
|
+
"direction": "vertical",
|
|
2432
|
+
"type": "stack",
|
|
2433
|
+
"gap": "sm"
|
|
1984
2434
|
}
|
|
1985
2435
|
]
|
|
1986
2436
|
},
|
|
1987
2437
|
{
|
|
1988
|
-
"type": "card",
|
|
1989
2438
|
"children": [
|
|
1990
2439
|
{
|
|
1991
|
-
"type": "stack",
|
|
1992
|
-
"direction": "vertical",
|
|
1993
2440
|
"gap": "sm",
|
|
1994
2441
|
"children": [
|
|
1995
2442
|
{
|
|
@@ -2009,127 +2456,154 @@
|
|
|
2009
2456
|
"output"
|
|
2010
2457
|
]
|
|
2011
2458
|
}
|
|
2012
|
-
]
|
|
2459
|
+
],
|
|
2460
|
+
"direction": "vertical",
|
|
2461
|
+
"type": "stack"
|
|
2013
2462
|
}
|
|
2014
|
-
]
|
|
2463
|
+
],
|
|
2464
|
+
"type": "card"
|
|
2015
2465
|
}
|
|
2016
|
-
]
|
|
2466
|
+
],
|
|
2467
|
+
"columns": 3.0
|
|
2017
2468
|
}
|
|
2018
|
-
]
|
|
2469
|
+
],
|
|
2470
|
+
"type": "box"
|
|
2019
2471
|
},
|
|
2020
2472
|
{
|
|
2021
2473
|
"type": "divider"
|
|
2022
2474
|
},
|
|
2023
2475
|
{
|
|
2024
2476
|
"type": "grid",
|
|
2025
|
-
"columns": 2,
|
|
2477
|
+
"columns": 2.0,
|
|
2026
2478
|
"gap": "md",
|
|
2027
2479
|
"children": [
|
|
2028
2480
|
{
|
|
2029
2481
|
"type": "card",
|
|
2030
2482
|
"children": [
|
|
2031
2483
|
{
|
|
2032
|
-
"type": "typography",
|
|
2033
2484
|
"variant": "caption",
|
|
2485
|
+
"type": "typography",
|
|
2034
2486
|
"content": "Chart View"
|
|
2035
2487
|
}
|
|
2036
2488
|
]
|
|
2037
2489
|
},
|
|
2038
2490
|
{
|
|
2039
|
-
"type": "card",
|
|
2040
2491
|
"children": [
|
|
2041
2492
|
{
|
|
2042
|
-
"type": "typography",
|
|
2043
2493
|
"variant": "caption",
|
|
2044
|
-
"content": "Graph View"
|
|
2494
|
+
"content": "Graph View",
|
|
2495
|
+
"type": "typography"
|
|
2045
2496
|
}
|
|
2046
|
-
]
|
|
2497
|
+
],
|
|
2498
|
+
"type": "card"
|
|
2047
2499
|
}
|
|
2048
2500
|
]
|
|
2049
2501
|
},
|
|
2050
2502
|
{
|
|
2503
|
+
"yKey": "value",
|
|
2051
2504
|
"type": "line-chart",
|
|
2505
|
+
"title": "Trend",
|
|
2506
|
+
"xKey": "date",
|
|
2052
2507
|
"data": [
|
|
2053
2508
|
{
|
|
2054
2509
|
"date": "Jan",
|
|
2055
|
-
"value": 12
|
|
2510
|
+
"value": 12.0
|
|
2056
2511
|
},
|
|
2057
2512
|
{
|
|
2058
|
-
"
|
|
2059
|
-
"
|
|
2513
|
+
"value": 19.0,
|
|
2514
|
+
"date": "Feb"
|
|
2060
2515
|
},
|
|
2061
2516
|
{
|
|
2062
2517
|
"date": "Mar",
|
|
2063
|
-
"value": 15
|
|
2518
|
+
"value": 15.0
|
|
2064
2519
|
},
|
|
2065
2520
|
{
|
|
2066
|
-
"
|
|
2067
|
-
"
|
|
2521
|
+
"value": 25.0,
|
|
2522
|
+
"date": "Apr"
|
|
2068
2523
|
},
|
|
2069
2524
|
{
|
|
2070
2525
|
"date": "May",
|
|
2071
|
-
"value": 22
|
|
2526
|
+
"value": 22.0
|
|
2072
2527
|
},
|
|
2073
2528
|
{
|
|
2074
2529
|
"date": "Jun",
|
|
2075
|
-
"value": 30
|
|
2530
|
+
"value": 30.0
|
|
2076
2531
|
}
|
|
2077
|
-
]
|
|
2078
|
-
"xKey": "date",
|
|
2079
|
-
"yKey": "value",
|
|
2080
|
-
"title": "Trend"
|
|
2532
|
+
]
|
|
2081
2533
|
},
|
|
2082
2534
|
{
|
|
2083
|
-
"type": "chart-legend",
|
|
2084
2535
|
"items": [
|
|
2085
2536
|
{
|
|
2086
|
-
"
|
|
2087
|
-
"
|
|
2537
|
+
"color": "primary",
|
|
2538
|
+
"label": "Current"
|
|
2088
2539
|
},
|
|
2089
2540
|
{
|
|
2090
2541
|
"label": "Previous",
|
|
2091
2542
|
"color": "muted"
|
|
2092
2543
|
}
|
|
2093
|
-
]
|
|
2544
|
+
],
|
|
2545
|
+
"type": "chart-legend"
|
|
2094
2546
|
},
|
|
2095
2547
|
{
|
|
2096
|
-
"type": "graph-view",
|
|
2097
2548
|
"nodes": [
|
|
2098
2549
|
{
|
|
2099
|
-
"
|
|
2550
|
+
"y": 100.0,
|
|
2551
|
+
"x": 50.0,
|
|
2100
2552
|
"label": "Start",
|
|
2101
|
-
"
|
|
2102
|
-
"y": 100
|
|
2553
|
+
"id": "a"
|
|
2103
2554
|
},
|
|
2104
2555
|
{
|
|
2556
|
+
"y": 50.0,
|
|
2105
2557
|
"id": "b",
|
|
2106
2558
|
"label": "Process",
|
|
2107
|
-
"x": 200
|
|
2108
|
-
"y": 50
|
|
2559
|
+
"x": 200.0
|
|
2109
2560
|
},
|
|
2110
2561
|
{
|
|
2111
|
-
"id": "c",
|
|
2112
2562
|
"label": "End",
|
|
2113
|
-
"
|
|
2114
|
-
"
|
|
2563
|
+
"y": 100.0,
|
|
2564
|
+
"id": "c",
|
|
2565
|
+
"x": 350.0
|
|
2115
2566
|
}
|
|
2116
2567
|
],
|
|
2568
|
+
"height": 200.0,
|
|
2569
|
+
"type": "graph-view",
|
|
2570
|
+
"width": 400.0,
|
|
2117
2571
|
"edges": [
|
|
2118
2572
|
{
|
|
2119
|
-
"
|
|
2120
|
-
"
|
|
2573
|
+
"to": "b",
|
|
2574
|
+
"from": "a"
|
|
2121
2575
|
},
|
|
2122
2576
|
{
|
|
2123
|
-
"
|
|
2124
|
-
"
|
|
2577
|
+
"to": "c",
|
|
2578
|
+
"from": "b"
|
|
2125
2579
|
}
|
|
2126
|
-
]
|
|
2127
|
-
"width": 400,
|
|
2128
|
-
"height": 200
|
|
2580
|
+
]
|
|
2129
2581
|
}
|
|
2130
|
-
]
|
|
2582
|
+
],
|
|
2583
|
+
"type": "stack",
|
|
2584
|
+
"direction": "vertical"
|
|
2131
2585
|
}
|
|
2132
|
-
]
|
|
2586
|
+
],
|
|
2587
|
+
"type": "scaled-diagram"
|
|
2588
|
+
}
|
|
2589
|
+
],
|
|
2590
|
+
"type": "dashboard-layout",
|
|
2591
|
+
"appName": "CI/CD Pipeline",
|
|
2592
|
+
"navItems": [
|
|
2593
|
+
{
|
|
2594
|
+
"label": "Builds",
|
|
2595
|
+
"href": "/builds",
|
|
2596
|
+
"icon": "hammer"
|
|
2597
|
+
},
|
|
2598
|
+
{
|
|
2599
|
+
"label": "Stages",
|
|
2600
|
+
"href": "/stages",
|
|
2601
|
+
"icon": "layers"
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
"icon": "rocket",
|
|
2605
|
+
"label": "Deploy",
|
|
2606
|
+
"href": "/deploy"
|
|
2133
2607
|
}
|
|
2134
2608
|
]
|
|
2135
2609
|
}
|
|
@@ -2143,14 +2617,18 @@
|
|
|
2143
2617
|
"effects": [
|
|
2144
2618
|
[
|
|
2145
2619
|
"fetch",
|
|
2146
|
-
"Stage"
|
|
2620
|
+
"Stage",
|
|
2621
|
+
{
|
|
2622
|
+
"emit": {
|
|
2623
|
+
"success": "StageLoaded",
|
|
2624
|
+
"failure": "StageLoadFailed"
|
|
2625
|
+
}
|
|
2626
|
+
}
|
|
2147
2627
|
],
|
|
2148
2628
|
[
|
|
2149
2629
|
"render-ui",
|
|
2150
2630
|
"main",
|
|
2151
2631
|
{
|
|
2152
|
-
"type": "dashboard-layout",
|
|
2153
|
-
"appName": "CI/CD Pipeline",
|
|
2154
2632
|
"navItems": [
|
|
2155
2633
|
{
|
|
2156
2634
|
"label": "Builds",
|
|
@@ -2158,47 +2636,42 @@
|
|
|
2158
2636
|
"icon": "hammer"
|
|
2159
2637
|
},
|
|
2160
2638
|
{
|
|
2161
|
-
"label": "Stages",
|
|
2162
2639
|
"href": "/stages",
|
|
2163
|
-
"icon": "layers"
|
|
2640
|
+
"icon": "layers",
|
|
2641
|
+
"label": "Stages"
|
|
2164
2642
|
},
|
|
2165
2643
|
{
|
|
2166
|
-
"label": "Deploy",
|
|
2167
2644
|
"href": "/deploy",
|
|
2168
|
-
"icon": "rocket"
|
|
2645
|
+
"icon": "rocket",
|
|
2646
|
+
"label": "Deploy"
|
|
2169
2647
|
}
|
|
2170
2648
|
],
|
|
2649
|
+
"type": "dashboard-layout",
|
|
2171
2650
|
"children": [
|
|
2172
2651
|
{
|
|
2173
2652
|
"type": "scaled-diagram",
|
|
2174
2653
|
"children": [
|
|
2175
2654
|
{
|
|
2176
|
-
"type": "stack",
|
|
2177
|
-
"direction": "vertical",
|
|
2178
|
-
"gap": "lg",
|
|
2179
2655
|
"children": [
|
|
2180
2656
|
{
|
|
2181
|
-
"type": "breadcrumb",
|
|
2182
2657
|
"items": [
|
|
2183
2658
|
{
|
|
2184
|
-
"
|
|
2185
|
-
"
|
|
2659
|
+
"href": "/",
|
|
2660
|
+
"label": "Home"
|
|
2186
2661
|
},
|
|
2187
2662
|
{
|
|
2188
2663
|
"label": "Stages"
|
|
2189
2664
|
}
|
|
2190
|
-
]
|
|
2665
|
+
],
|
|
2666
|
+
"type": "breadcrumb"
|
|
2191
2667
|
},
|
|
2192
2668
|
{
|
|
2193
|
-
"type": "stack",
|
|
2194
2669
|
"direction": "horizontal",
|
|
2195
|
-
"gap": "md",
|
|
2196
2670
|
"justify": "space-between",
|
|
2671
|
+
"type": "stack",
|
|
2672
|
+
"gap": "md",
|
|
2197
2673
|
"children": [
|
|
2198
2674
|
{
|
|
2199
|
-
"type": "stack",
|
|
2200
|
-
"direction": "horizontal",
|
|
2201
|
-
"gap": "md",
|
|
2202
2675
|
"children": [
|
|
2203
2676
|
{
|
|
2204
2677
|
"type": "icon",
|
|
@@ -2206,18 +2679,21 @@
|
|
|
2206
2679
|
"size": "lg"
|
|
2207
2680
|
},
|
|
2208
2681
|
{
|
|
2209
|
-
"
|
|
2682
|
+
"variant": "h2",
|
|
2210
2683
|
"content": "Stages",
|
|
2211
|
-
"
|
|
2684
|
+
"type": "typography"
|
|
2212
2685
|
}
|
|
2213
|
-
]
|
|
2686
|
+
],
|
|
2687
|
+
"type": "stack",
|
|
2688
|
+
"direction": "horizontal",
|
|
2689
|
+
"gap": "md"
|
|
2214
2690
|
},
|
|
2215
2691
|
{
|
|
2216
|
-
"
|
|
2692
|
+
"icon": "refresh-cw",
|
|
2217
2693
|
"label": "Refresh",
|
|
2694
|
+
"type": "button",
|
|
2218
2695
|
"event": "REFRESH",
|
|
2219
|
-
"variant": "secondary"
|
|
2220
|
-
"icon": "refresh-cw"
|
|
2696
|
+
"variant": "secondary"
|
|
2221
2697
|
}
|
|
2222
2698
|
]
|
|
2223
2699
|
},
|
|
@@ -2225,29 +2701,23 @@
|
|
|
2225
2701
|
"type": "divider"
|
|
2226
2702
|
},
|
|
2227
2703
|
{
|
|
2228
|
-
"type": "box",
|
|
2229
2704
|
"padding": "md",
|
|
2705
|
+
"type": "box",
|
|
2230
2706
|
"children": [
|
|
2231
2707
|
{
|
|
2232
|
-
"
|
|
2233
|
-
"columns": 3,
|
|
2708
|
+
"columns": 3.0,
|
|
2234
2709
|
"children": [
|
|
2235
2710
|
{
|
|
2236
2711
|
"type": "card",
|
|
2237
2712
|
"children": [
|
|
2238
2713
|
{
|
|
2239
|
-
"type": "stack",
|
|
2240
|
-
"direction": "vertical",
|
|
2241
|
-
"gap": "sm",
|
|
2242
2714
|
"children": [
|
|
2243
2715
|
{
|
|
2244
2716
|
"type": "typography",
|
|
2245
|
-
"
|
|
2246
|
-
"
|
|
2717
|
+
"content": "Name",
|
|
2718
|
+
"variant": "caption"
|
|
2247
2719
|
},
|
|
2248
2720
|
{
|
|
2249
|
-
"type": "typography",
|
|
2250
|
-
"variant": "h3",
|
|
2251
2721
|
"content": [
|
|
2252
2722
|
"object/get",
|
|
2253
2723
|
[
|
|
@@ -2255,19 +2725,21 @@
|
|
|
2255
2725
|
"@entity"
|
|
2256
2726
|
],
|
|
2257
2727
|
"name"
|
|
2258
|
-
]
|
|
2728
|
+
],
|
|
2729
|
+
"type": "typography",
|
|
2730
|
+
"variant": "h3"
|
|
2259
2731
|
}
|
|
2260
|
-
]
|
|
2732
|
+
],
|
|
2733
|
+
"type": "stack",
|
|
2734
|
+
"gap": "sm",
|
|
2735
|
+
"direction": "vertical"
|
|
2261
2736
|
}
|
|
2262
2737
|
]
|
|
2263
2738
|
},
|
|
2264
2739
|
{
|
|
2265
|
-
"type": "card",
|
|
2266
2740
|
"children": [
|
|
2267
2741
|
{
|
|
2268
|
-
"type": "stack",
|
|
2269
2742
|
"direction": "vertical",
|
|
2270
|
-
"gap": "sm",
|
|
2271
2743
|
"children": [
|
|
2272
2744
|
{
|
|
2273
2745
|
"type": "typography",
|
|
@@ -2275,8 +2747,6 @@
|
|
|
2275
2747
|
"content": "Status"
|
|
2276
2748
|
},
|
|
2277
2749
|
{
|
|
2278
|
-
"type": "typography",
|
|
2279
|
-
"variant": "h3",
|
|
2280
2750
|
"content": [
|
|
2281
2751
|
"object/get",
|
|
2282
2752
|
[
|
|
@@ -2284,27 +2754,29 @@
|
|
|
2284
2754
|
"@entity"
|
|
2285
2755
|
],
|
|
2286
2756
|
"status"
|
|
2287
|
-
]
|
|
2757
|
+
],
|
|
2758
|
+
"type": "typography",
|
|
2759
|
+
"variant": "h3"
|
|
2288
2760
|
}
|
|
2289
|
-
]
|
|
2761
|
+
],
|
|
2762
|
+
"type": "stack",
|
|
2763
|
+
"gap": "sm"
|
|
2290
2764
|
}
|
|
2291
|
-
]
|
|
2765
|
+
],
|
|
2766
|
+
"type": "card"
|
|
2292
2767
|
},
|
|
2293
2768
|
{
|
|
2294
2769
|
"type": "card",
|
|
2295
2770
|
"children": [
|
|
2296
2771
|
{
|
|
2297
2772
|
"type": "stack",
|
|
2298
|
-
"direction": "vertical",
|
|
2299
|
-
"gap": "sm",
|
|
2300
2773
|
"children": [
|
|
2301
2774
|
{
|
|
2302
|
-
"type": "typography",
|
|
2303
2775
|
"variant": "caption",
|
|
2776
|
+
"type": "typography",
|
|
2304
2777
|
"content": "Duration"
|
|
2305
2778
|
},
|
|
2306
2779
|
{
|
|
2307
|
-
"type": "typography",
|
|
2308
2780
|
"variant": "h3",
|
|
2309
2781
|
"content": [
|
|
2310
2782
|
"object/get",
|
|
@@ -2313,9 +2785,12 @@
|
|
|
2313
2785
|
"@entity"
|
|
2314
2786
|
],
|
|
2315
2787
|
"duration"
|
|
2316
|
-
]
|
|
2788
|
+
],
|
|
2789
|
+
"type": "typography"
|
|
2317
2790
|
}
|
|
2318
|
-
]
|
|
2791
|
+
],
|
|
2792
|
+
"gap": "sm",
|
|
2793
|
+
"direction": "vertical"
|
|
2319
2794
|
}
|
|
2320
2795
|
]
|
|
2321
2796
|
},
|
|
@@ -2323,17 +2798,16 @@
|
|
|
2323
2798
|
"type": "card",
|
|
2324
2799
|
"children": [
|
|
2325
2800
|
{
|
|
2326
|
-
"type": "stack",
|
|
2327
2801
|
"direction": "vertical",
|
|
2802
|
+
"type": "stack",
|
|
2328
2803
|
"gap": "sm",
|
|
2329
2804
|
"children": [
|
|
2330
2805
|
{
|
|
2331
|
-
"type": "typography",
|
|
2332
2806
|
"variant": "caption",
|
|
2333
|
-
"content": "Output"
|
|
2807
|
+
"content": "Output",
|
|
2808
|
+
"type": "typography"
|
|
2334
2809
|
},
|
|
2335
2810
|
{
|
|
2336
|
-
"type": "typography",
|
|
2337
2811
|
"variant": "h3",
|
|
2338
2812
|
"content": [
|
|
2339
2813
|
"object/get",
|
|
@@ -2342,13 +2816,15 @@
|
|
|
2342
2816
|
"@entity"
|
|
2343
2817
|
],
|
|
2344
2818
|
"output"
|
|
2345
|
-
]
|
|
2819
|
+
],
|
|
2820
|
+
"type": "typography"
|
|
2346
2821
|
}
|
|
2347
2822
|
]
|
|
2348
2823
|
}
|
|
2349
2824
|
]
|
|
2350
2825
|
}
|
|
2351
|
-
]
|
|
2826
|
+
],
|
|
2827
|
+
"type": "simple-grid"
|
|
2352
2828
|
}
|
|
2353
2829
|
]
|
|
2354
2830
|
},
|
|
@@ -2356,27 +2832,27 @@
|
|
|
2356
2832
|
"type": "divider"
|
|
2357
2833
|
},
|
|
2358
2834
|
{
|
|
2359
|
-
"type": "grid",
|
|
2360
|
-
"columns": 2,
|
|
2361
2835
|
"gap": "md",
|
|
2836
|
+
"type": "grid",
|
|
2837
|
+
"columns": 2.0,
|
|
2362
2838
|
"children": [
|
|
2363
2839
|
{
|
|
2364
|
-
"type": "card",
|
|
2365
2840
|
"children": [
|
|
2366
2841
|
{
|
|
2367
|
-
"type": "typography",
|
|
2368
2842
|
"variant": "caption",
|
|
2843
|
+
"type": "typography",
|
|
2369
2844
|
"content": "Chart View"
|
|
2370
2845
|
}
|
|
2371
|
-
]
|
|
2846
|
+
],
|
|
2847
|
+
"type": "card"
|
|
2372
2848
|
},
|
|
2373
2849
|
{
|
|
2374
2850
|
"type": "card",
|
|
2375
2851
|
"children": [
|
|
2376
2852
|
{
|
|
2377
|
-
"type": "typography",
|
|
2378
2853
|
"variant": "caption",
|
|
2379
|
-
"content": "Graph View"
|
|
2854
|
+
"content": "Graph View",
|
|
2855
|
+
"type": "typography"
|
|
2380
2856
|
}
|
|
2381
2857
|
]
|
|
2382
2858
|
}
|
|
@@ -2384,89 +2860,93 @@
|
|
|
2384
2860
|
},
|
|
2385
2861
|
{
|
|
2386
2862
|
"type": "line-chart",
|
|
2863
|
+
"yKey": "value",
|
|
2387
2864
|
"data": [
|
|
2388
2865
|
{
|
|
2389
2866
|
"date": "Jan",
|
|
2390
|
-
"value": 12
|
|
2867
|
+
"value": 12.0
|
|
2391
2868
|
},
|
|
2392
2869
|
{
|
|
2393
|
-
"
|
|
2394
|
-
"
|
|
2870
|
+
"value": 19.0,
|
|
2871
|
+
"date": "Feb"
|
|
2395
2872
|
},
|
|
2396
2873
|
{
|
|
2397
2874
|
"date": "Mar",
|
|
2398
|
-
"value": 15
|
|
2875
|
+
"value": 15.0
|
|
2399
2876
|
},
|
|
2400
2877
|
{
|
|
2401
|
-
"
|
|
2402
|
-
"
|
|
2878
|
+
"value": 25.0,
|
|
2879
|
+
"date": "Apr"
|
|
2403
2880
|
},
|
|
2404
2881
|
{
|
|
2405
2882
|
"date": "May",
|
|
2406
|
-
"value": 22
|
|
2883
|
+
"value": 22.0
|
|
2407
2884
|
},
|
|
2408
2885
|
{
|
|
2409
2886
|
"date": "Jun",
|
|
2410
|
-
"value": 30
|
|
2887
|
+
"value": 30.0
|
|
2411
2888
|
}
|
|
2412
2889
|
],
|
|
2413
|
-
"
|
|
2414
|
-
"
|
|
2415
|
-
"title": "Trend"
|
|
2890
|
+
"title": "Trend",
|
|
2891
|
+
"xKey": "date"
|
|
2416
2892
|
},
|
|
2417
2893
|
{
|
|
2418
|
-
"type": "chart-legend",
|
|
2419
2894
|
"items": [
|
|
2420
2895
|
{
|
|
2421
|
-
"
|
|
2422
|
-
"
|
|
2896
|
+
"color": "primary",
|
|
2897
|
+
"label": "Current"
|
|
2423
2898
|
},
|
|
2424
2899
|
{
|
|
2425
2900
|
"label": "Previous",
|
|
2426
2901
|
"color": "muted"
|
|
2427
2902
|
}
|
|
2428
|
-
]
|
|
2903
|
+
],
|
|
2904
|
+
"type": "chart-legend"
|
|
2429
2905
|
},
|
|
2430
2906
|
{
|
|
2907
|
+
"width": 400.0,
|
|
2908
|
+
"height": 200.0,
|
|
2431
2909
|
"type": "graph-view",
|
|
2432
2910
|
"nodes": [
|
|
2433
2911
|
{
|
|
2434
|
-
"
|
|
2912
|
+
"y": 100.0,
|
|
2435
2913
|
"label": "Start",
|
|
2436
|
-
"x": 50,
|
|
2437
|
-
"
|
|
2914
|
+
"x": 50.0,
|
|
2915
|
+
"id": "a"
|
|
2438
2916
|
},
|
|
2439
2917
|
{
|
|
2440
|
-
"
|
|
2918
|
+
"x": 200.0,
|
|
2441
2919
|
"label": "Process",
|
|
2442
|
-
"
|
|
2443
|
-
"y": 50
|
|
2920
|
+
"id": "b",
|
|
2921
|
+
"y": 50.0
|
|
2444
2922
|
},
|
|
2445
2923
|
{
|
|
2446
|
-
"id": "c",
|
|
2447
2924
|
"label": "End",
|
|
2448
|
-
"
|
|
2449
|
-
"y": 100
|
|
2925
|
+
"id": "c",
|
|
2926
|
+
"y": 100.0,
|
|
2927
|
+
"x": 350.0
|
|
2450
2928
|
}
|
|
2451
2929
|
],
|
|
2452
2930
|
"edges": [
|
|
2453
2931
|
{
|
|
2454
|
-
"
|
|
2455
|
-
"
|
|
2932
|
+
"to": "b",
|
|
2933
|
+
"from": "a"
|
|
2456
2934
|
},
|
|
2457
2935
|
{
|
|
2458
2936
|
"from": "b",
|
|
2459
2937
|
"to": "c"
|
|
2460
2938
|
}
|
|
2461
|
-
]
|
|
2462
|
-
"width": 400,
|
|
2463
|
-
"height": 200
|
|
2939
|
+
]
|
|
2464
2940
|
}
|
|
2465
|
-
]
|
|
2941
|
+
],
|
|
2942
|
+
"direction": "vertical",
|
|
2943
|
+
"type": "stack",
|
|
2944
|
+
"gap": "lg"
|
|
2466
2945
|
}
|
|
2467
2946
|
]
|
|
2468
2947
|
}
|
|
2469
|
-
]
|
|
2948
|
+
],
|
|
2949
|
+
"appName": "CI/CD Pipeline"
|
|
2470
2950
|
}
|
|
2471
2951
|
]
|
|
2472
2952
|
]
|
|
@@ -2478,19 +2958,23 @@
|
|
|
2478
2958
|
"effects": [
|
|
2479
2959
|
[
|
|
2480
2960
|
"fetch",
|
|
2481
|
-
"Stage"
|
|
2961
|
+
"Stage",
|
|
2962
|
+
{
|
|
2963
|
+
"emit": {
|
|
2964
|
+
"success": "StageLoaded",
|
|
2965
|
+
"failure": "StageLoadFailed"
|
|
2966
|
+
}
|
|
2967
|
+
}
|
|
2482
2968
|
],
|
|
2483
2969
|
[
|
|
2484
2970
|
"render-ui",
|
|
2485
2971
|
"main",
|
|
2486
2972
|
{
|
|
2487
|
-
"type": "dashboard-layout",
|
|
2488
|
-
"appName": "CI/CD Pipeline",
|
|
2489
2973
|
"navItems": [
|
|
2490
2974
|
{
|
|
2491
|
-
"
|
|
2975
|
+
"icon": "hammer",
|
|
2492
2976
|
"href": "/builds",
|
|
2493
|
-
"
|
|
2977
|
+
"label": "Builds"
|
|
2494
2978
|
},
|
|
2495
2979
|
{
|
|
2496
2980
|
"label": "Stages",
|
|
@@ -2498,63 +2982,62 @@
|
|
|
2498
2982
|
"icon": "layers"
|
|
2499
2983
|
},
|
|
2500
2984
|
{
|
|
2501
|
-
"label": "Deploy",
|
|
2502
2985
|
"href": "/deploy",
|
|
2503
|
-
"icon": "rocket"
|
|
2986
|
+
"icon": "rocket",
|
|
2987
|
+
"label": "Deploy"
|
|
2504
2988
|
}
|
|
2505
2989
|
],
|
|
2990
|
+
"appName": "CI/CD Pipeline",
|
|
2991
|
+
"type": "dashboard-layout",
|
|
2506
2992
|
"children": [
|
|
2507
2993
|
{
|
|
2508
2994
|
"type": "scaled-diagram",
|
|
2509
2995
|
"children": [
|
|
2510
2996
|
{
|
|
2511
|
-
"type": "stack",
|
|
2512
|
-
"direction": "vertical",
|
|
2513
|
-
"gap": "lg",
|
|
2514
2997
|
"children": [
|
|
2515
2998
|
{
|
|
2516
|
-
"type": "breadcrumb",
|
|
2517
2999
|
"items": [
|
|
2518
3000
|
{
|
|
2519
|
-
"
|
|
2520
|
-
"
|
|
3001
|
+
"href": "/",
|
|
3002
|
+
"label": "Home"
|
|
2521
3003
|
},
|
|
2522
3004
|
{
|
|
2523
3005
|
"label": "Stages"
|
|
2524
3006
|
}
|
|
2525
|
-
]
|
|
3007
|
+
],
|
|
3008
|
+
"type": "breadcrumb"
|
|
2526
3009
|
},
|
|
2527
3010
|
{
|
|
2528
|
-
"type": "stack",
|
|
2529
|
-
"direction": "horizontal",
|
|
2530
|
-
"gap": "md",
|
|
2531
|
-
"justify": "space-between",
|
|
2532
3011
|
"children": [
|
|
2533
3012
|
{
|
|
2534
|
-
"type": "stack",
|
|
2535
|
-
"direction": "horizontal",
|
|
2536
3013
|
"gap": "md",
|
|
3014
|
+
"direction": "horizontal",
|
|
3015
|
+
"type": "stack",
|
|
2537
3016
|
"children": [
|
|
2538
3017
|
{
|
|
2539
|
-
"type": "icon",
|
|
2540
3018
|
"name": "layers",
|
|
3019
|
+
"type": "icon",
|
|
2541
3020
|
"size": "lg"
|
|
2542
3021
|
},
|
|
2543
3022
|
{
|
|
3023
|
+
"variant": "h2",
|
|
2544
3024
|
"type": "typography",
|
|
2545
|
-
"content": "Stages"
|
|
2546
|
-
"variant": "h2"
|
|
3025
|
+
"content": "Stages"
|
|
2547
3026
|
}
|
|
2548
3027
|
]
|
|
2549
3028
|
},
|
|
2550
3029
|
{
|
|
2551
3030
|
"type": "button",
|
|
2552
3031
|
"label": "Refresh",
|
|
3032
|
+
"icon": "refresh-cw",
|
|
2553
3033
|
"event": "REFRESH",
|
|
2554
|
-
"variant": "secondary"
|
|
2555
|
-
"icon": "refresh-cw"
|
|
3034
|
+
"variant": "secondary"
|
|
2556
3035
|
}
|
|
2557
|
-
]
|
|
3036
|
+
],
|
|
3037
|
+
"gap": "md",
|
|
3038
|
+
"type": "stack",
|
|
3039
|
+
"direction": "horizontal",
|
|
3040
|
+
"justify": "space-between"
|
|
2558
3041
|
},
|
|
2559
3042
|
{
|
|
2560
3043
|
"type": "divider"
|
|
@@ -2564,25 +3047,19 @@
|
|
|
2564
3047
|
"padding": "md",
|
|
2565
3048
|
"children": [
|
|
2566
3049
|
{
|
|
2567
|
-
"type": "simple-grid",
|
|
2568
|
-
"columns": 3,
|
|
2569
3050
|
"children": [
|
|
2570
3051
|
{
|
|
2571
3052
|
"type": "card",
|
|
2572
3053
|
"children": [
|
|
2573
3054
|
{
|
|
2574
|
-
"type": "stack",
|
|
2575
3055
|
"direction": "vertical",
|
|
2576
|
-
"gap": "sm",
|
|
2577
3056
|
"children": [
|
|
2578
3057
|
{
|
|
2579
|
-
"type": "typography",
|
|
2580
3058
|
"variant": "caption",
|
|
3059
|
+
"type": "typography",
|
|
2581
3060
|
"content": "Name"
|
|
2582
3061
|
},
|
|
2583
3062
|
{
|
|
2584
|
-
"type": "typography",
|
|
2585
|
-
"variant": "h3",
|
|
2586
3063
|
"content": [
|
|
2587
3064
|
"object/get",
|
|
2588
3065
|
[
|
|
@@ -2590,28 +3067,28 @@
|
|
|
2590
3067
|
"@entity"
|
|
2591
3068
|
],
|
|
2592
3069
|
"name"
|
|
2593
|
-
]
|
|
3070
|
+
],
|
|
3071
|
+
"type": "typography",
|
|
3072
|
+
"variant": "h3"
|
|
2594
3073
|
}
|
|
2595
|
-
]
|
|
3074
|
+
],
|
|
3075
|
+
"gap": "sm",
|
|
3076
|
+
"type": "stack"
|
|
2596
3077
|
}
|
|
2597
3078
|
]
|
|
2598
3079
|
},
|
|
2599
3080
|
{
|
|
2600
|
-
"type": "card",
|
|
2601
3081
|
"children": [
|
|
2602
3082
|
{
|
|
2603
|
-
"type": "stack",
|
|
2604
|
-
"direction": "vertical",
|
|
2605
3083
|
"gap": "sm",
|
|
3084
|
+
"type": "stack",
|
|
2606
3085
|
"children": [
|
|
2607
3086
|
{
|
|
2608
|
-
"
|
|
3087
|
+
"content": "Status",
|
|
2609
3088
|
"variant": "caption",
|
|
2610
|
-
"
|
|
3089
|
+
"type": "typography"
|
|
2611
3090
|
},
|
|
2612
3091
|
{
|
|
2613
|
-
"type": "typography",
|
|
2614
|
-
"variant": "h3",
|
|
2615
3092
|
"content": [
|
|
2616
3093
|
"object/get",
|
|
2617
3094
|
[
|
|
@@ -2619,17 +3096,20 @@
|
|
|
2619
3096
|
"@entity"
|
|
2620
3097
|
],
|
|
2621
3098
|
"status"
|
|
2622
|
-
]
|
|
3099
|
+
],
|
|
3100
|
+
"variant": "h3",
|
|
3101
|
+
"type": "typography"
|
|
2623
3102
|
}
|
|
2624
|
-
]
|
|
3103
|
+
],
|
|
3104
|
+
"direction": "vertical"
|
|
2625
3105
|
}
|
|
2626
|
-
]
|
|
3106
|
+
],
|
|
3107
|
+
"type": "card"
|
|
2627
3108
|
},
|
|
2628
3109
|
{
|
|
2629
3110
|
"type": "card",
|
|
2630
3111
|
"children": [
|
|
2631
3112
|
{
|
|
2632
|
-
"type": "stack",
|
|
2633
3113
|
"direction": "vertical",
|
|
2634
3114
|
"gap": "sm",
|
|
2635
3115
|
"children": [
|
|
@@ -2639,8 +3119,6 @@
|
|
|
2639
3119
|
"content": "Duration"
|
|
2640
3120
|
},
|
|
2641
3121
|
{
|
|
2642
|
-
"type": "typography",
|
|
2643
|
-
"variant": "h3",
|
|
2644
3122
|
"content": [
|
|
2645
3123
|
"object/get",
|
|
2646
3124
|
[
|
|
@@ -2648,28 +3126,28 @@
|
|
|
2648
3126
|
"@entity"
|
|
2649
3127
|
],
|
|
2650
3128
|
"duration"
|
|
2651
|
-
]
|
|
3129
|
+
],
|
|
3130
|
+
"variant": "h3",
|
|
3131
|
+
"type": "typography"
|
|
2652
3132
|
}
|
|
2653
|
-
]
|
|
3133
|
+
],
|
|
3134
|
+
"type": "stack"
|
|
2654
3135
|
}
|
|
2655
3136
|
]
|
|
2656
3137
|
},
|
|
2657
3138
|
{
|
|
2658
|
-
"type": "card",
|
|
2659
3139
|
"children": [
|
|
2660
3140
|
{
|
|
2661
|
-
"type": "stack",
|
|
2662
|
-
"direction": "vertical",
|
|
2663
3141
|
"gap": "sm",
|
|
3142
|
+
"direction": "vertical",
|
|
2664
3143
|
"children": [
|
|
2665
3144
|
{
|
|
2666
|
-
"type": "typography",
|
|
2667
3145
|
"variant": "caption",
|
|
2668
|
-
"content": "Output"
|
|
3146
|
+
"content": "Output",
|
|
3147
|
+
"type": "typography"
|
|
2669
3148
|
},
|
|
2670
3149
|
{
|
|
2671
3150
|
"type": "typography",
|
|
2672
|
-
"variant": "h3",
|
|
2673
3151
|
"content": [
|
|
2674
3152
|
"object/get",
|
|
2675
3153
|
[
|
|
@@ -2677,13 +3155,18 @@
|
|
|
2677
3155
|
"@entity"
|
|
2678
3156
|
],
|
|
2679
3157
|
"output"
|
|
2680
|
-
]
|
|
3158
|
+
],
|
|
3159
|
+
"variant": "h3"
|
|
2681
3160
|
}
|
|
2682
|
-
]
|
|
3161
|
+
],
|
|
3162
|
+
"type": "stack"
|
|
2683
3163
|
}
|
|
2684
|
-
]
|
|
3164
|
+
],
|
|
3165
|
+
"type": "card"
|
|
2685
3166
|
}
|
|
2686
|
-
]
|
|
3167
|
+
],
|
|
3168
|
+
"columns": 3.0,
|
|
3169
|
+
"type": "simple-grid"
|
|
2687
3170
|
}
|
|
2688
3171
|
]
|
|
2689
3172
|
},
|
|
@@ -2691,113 +3174,116 @@
|
|
|
2691
3174
|
"type": "divider"
|
|
2692
3175
|
},
|
|
2693
3176
|
{
|
|
2694
|
-
"type": "grid",
|
|
2695
|
-
"columns": 2,
|
|
2696
|
-
"gap": "md",
|
|
2697
3177
|
"children": [
|
|
2698
3178
|
{
|
|
2699
|
-
"type": "card",
|
|
2700
3179
|
"children": [
|
|
2701
3180
|
{
|
|
2702
3181
|
"type": "typography",
|
|
2703
|
-
"
|
|
2704
|
-
"
|
|
3182
|
+
"content": "Chart View",
|
|
3183
|
+
"variant": "caption"
|
|
2705
3184
|
}
|
|
2706
|
-
]
|
|
3185
|
+
],
|
|
3186
|
+
"type": "card"
|
|
2707
3187
|
},
|
|
2708
3188
|
{
|
|
2709
|
-
"type": "card",
|
|
2710
3189
|
"children": [
|
|
2711
3190
|
{
|
|
2712
|
-
"type": "typography",
|
|
2713
3191
|
"variant": "caption",
|
|
2714
|
-
"content": "Graph View"
|
|
3192
|
+
"content": "Graph View",
|
|
3193
|
+
"type": "typography"
|
|
2715
3194
|
}
|
|
2716
|
-
]
|
|
3195
|
+
],
|
|
3196
|
+
"type": "card"
|
|
2717
3197
|
}
|
|
2718
|
-
]
|
|
3198
|
+
],
|
|
3199
|
+
"columns": 2.0,
|
|
3200
|
+
"gap": "md",
|
|
3201
|
+
"type": "grid"
|
|
2719
3202
|
},
|
|
2720
3203
|
{
|
|
2721
3204
|
"type": "line-chart",
|
|
3205
|
+
"yKey": "value",
|
|
3206
|
+
"title": "Trend",
|
|
2722
3207
|
"data": [
|
|
2723
3208
|
{
|
|
2724
3209
|
"date": "Jan",
|
|
2725
|
-
"value": 12
|
|
3210
|
+
"value": 12.0
|
|
2726
3211
|
},
|
|
2727
3212
|
{
|
|
2728
|
-
"
|
|
2729
|
-
"
|
|
3213
|
+
"value": 19.0,
|
|
3214
|
+
"date": "Feb"
|
|
2730
3215
|
},
|
|
2731
3216
|
{
|
|
2732
3217
|
"date": "Mar",
|
|
2733
|
-
"value": 15
|
|
3218
|
+
"value": 15.0
|
|
2734
3219
|
},
|
|
2735
3220
|
{
|
|
2736
|
-
"
|
|
2737
|
-
"
|
|
3221
|
+
"value": 25.0,
|
|
3222
|
+
"date": "Apr"
|
|
2738
3223
|
},
|
|
2739
3224
|
{
|
|
2740
|
-
"
|
|
2741
|
-
"
|
|
3225
|
+
"value": 22.0,
|
|
3226
|
+
"date": "May"
|
|
2742
3227
|
},
|
|
2743
3228
|
{
|
|
2744
|
-
"
|
|
2745
|
-
"
|
|
3229
|
+
"value": 30.0,
|
|
3230
|
+
"date": "Jun"
|
|
2746
3231
|
}
|
|
2747
3232
|
],
|
|
2748
|
-
"xKey": "date"
|
|
2749
|
-
"yKey": "value",
|
|
2750
|
-
"title": "Trend"
|
|
3233
|
+
"xKey": "date"
|
|
2751
3234
|
},
|
|
2752
3235
|
{
|
|
2753
|
-
"type": "chart-legend",
|
|
2754
3236
|
"items": [
|
|
2755
3237
|
{
|
|
2756
3238
|
"label": "Current",
|
|
2757
3239
|
"color": "primary"
|
|
2758
3240
|
},
|
|
2759
3241
|
{
|
|
2760
|
-
"
|
|
2761
|
-
"
|
|
3242
|
+
"color": "muted",
|
|
3243
|
+
"label": "Previous"
|
|
2762
3244
|
}
|
|
2763
|
-
]
|
|
3245
|
+
],
|
|
3246
|
+
"type": "chart-legend"
|
|
2764
3247
|
},
|
|
2765
3248
|
{
|
|
3249
|
+
"edges": [
|
|
3250
|
+
{
|
|
3251
|
+
"to": "b",
|
|
3252
|
+
"from": "a"
|
|
3253
|
+
},
|
|
3254
|
+
{
|
|
3255
|
+
"from": "b",
|
|
3256
|
+
"to": "c"
|
|
3257
|
+
}
|
|
3258
|
+
],
|
|
2766
3259
|
"type": "graph-view",
|
|
3260
|
+
"width": 400.0,
|
|
2767
3261
|
"nodes": [
|
|
2768
3262
|
{
|
|
2769
|
-
"id": "a",
|
|
2770
3263
|
"label": "Start",
|
|
2771
|
-
"
|
|
2772
|
-
"y": 100
|
|
3264
|
+
"id": "a",
|
|
3265
|
+
"y": 100.0,
|
|
3266
|
+
"x": 50.0
|
|
2773
3267
|
},
|
|
2774
3268
|
{
|
|
2775
3269
|
"id": "b",
|
|
2776
3270
|
"label": "Process",
|
|
2777
|
-
"
|
|
2778
|
-
"
|
|
3271
|
+
"y": 50.0,
|
|
3272
|
+
"x": 200.0
|
|
2779
3273
|
},
|
|
2780
3274
|
{
|
|
2781
|
-
"
|
|
3275
|
+
"x": 350.0,
|
|
2782
3276
|
"label": "End",
|
|
2783
|
-
"
|
|
2784
|
-
"y": 100
|
|
2785
|
-
}
|
|
2786
|
-
],
|
|
2787
|
-
"edges": [
|
|
2788
|
-
{
|
|
2789
|
-
"from": "a",
|
|
2790
|
-
"to": "b"
|
|
2791
|
-
},
|
|
2792
|
-
{
|
|
2793
|
-
"from": "b",
|
|
2794
|
-
"to": "c"
|
|
3277
|
+
"id": "c",
|
|
3278
|
+
"y": 100.0
|
|
2795
3279
|
}
|
|
2796
3280
|
],
|
|
2797
|
-
"
|
|
2798
|
-
"height": 200
|
|
3281
|
+
"height": 200.0
|
|
2799
3282
|
}
|
|
2800
|
-
]
|
|
3283
|
+
],
|
|
3284
|
+
"direction": "vertical",
|
|
3285
|
+
"type": "stack",
|
|
3286
|
+
"gap": "lg"
|
|
2801
3287
|
}
|
|
2802
3288
|
]
|
|
2803
3289
|
}
|
|
@@ -2807,12 +3293,13 @@
|
|
|
2807
3293
|
]
|
|
2808
3294
|
}
|
|
2809
3295
|
]
|
|
2810
|
-
}
|
|
3296
|
+
},
|
|
3297
|
+
"scope": "collection"
|
|
2811
3298
|
}
|
|
2812
3299
|
],
|
|
2813
3300
|
"pages": [
|
|
2814
3301
|
{
|
|
2815
|
-
"name": "
|
|
3302
|
+
"name": "Stages",
|
|
2816
3303
|
"path": "/stages",
|
|
2817
3304
|
"traits": [
|
|
2818
3305
|
{
|
|
@@ -2848,23 +3335,65 @@
|
|
|
2848
3335
|
"type": "string",
|
|
2849
3336
|
"values": [
|
|
2850
3337
|
"pending",
|
|
2851
|
-
"
|
|
3338
|
+
"running",
|
|
2852
3339
|
"success",
|
|
2853
|
-
"failed"
|
|
2854
|
-
"rolled-back"
|
|
3340
|
+
"failed"
|
|
2855
3341
|
]
|
|
2856
3342
|
},
|
|
2857
3343
|
{
|
|
2858
3344
|
"name": "deployedAt",
|
|
2859
|
-
"type": "
|
|
3345
|
+
"type": "datetime"
|
|
2860
3346
|
}
|
|
2861
3347
|
]
|
|
2862
3348
|
},
|
|
2863
3349
|
"traits": [
|
|
2864
3350
|
{
|
|
2865
3351
|
"name": "DeploymentAsync",
|
|
2866
|
-
"linkedEntity": "Deployment",
|
|
2867
3352
|
"category": "interaction",
|
|
3353
|
+
"linkedEntity": "Deployment",
|
|
3354
|
+
"emits": [
|
|
3355
|
+
{
|
|
3356
|
+
"event": "DeploymentLoaded",
|
|
3357
|
+
"description": "Fired when Deployment finishes loading",
|
|
3358
|
+
"scope": "internal",
|
|
3359
|
+
"payload": [
|
|
3360
|
+
{
|
|
3361
|
+
"name": "id",
|
|
3362
|
+
"type": "string",
|
|
3363
|
+
"required": true
|
|
3364
|
+
},
|
|
3365
|
+
{
|
|
3366
|
+
"name": "environment",
|
|
3367
|
+
"type": "string",
|
|
3368
|
+
"required": true
|
|
3369
|
+
},
|
|
3370
|
+
{
|
|
3371
|
+
"name": "version",
|
|
3372
|
+
"type": "string",
|
|
3373
|
+
"required": true
|
|
3374
|
+
},
|
|
3375
|
+
{
|
|
3376
|
+
"name": "status",
|
|
3377
|
+
"type": "string"
|
|
3378
|
+
},
|
|
3379
|
+
{
|
|
3380
|
+
"name": "deployedAt",
|
|
3381
|
+
"type": "datetime"
|
|
3382
|
+
}
|
|
3383
|
+
]
|
|
3384
|
+
},
|
|
3385
|
+
{
|
|
3386
|
+
"event": "DeploymentLoadFailed",
|
|
3387
|
+
"description": "Fired when Deployment fails to load",
|
|
3388
|
+
"scope": "internal",
|
|
3389
|
+
"payload": [
|
|
3390
|
+
{
|
|
3391
|
+
"name": "message",
|
|
3392
|
+
"type": "string"
|
|
3393
|
+
}
|
|
3394
|
+
]
|
|
3395
|
+
}
|
|
3396
|
+
],
|
|
2868
3397
|
"stateMachine": {
|
|
2869
3398
|
"states": [
|
|
2870
3399
|
{
|
|
@@ -2896,29 +3425,35 @@
|
|
|
2896
3425
|
"payload": [
|
|
2897
3426
|
{
|
|
2898
3427
|
"name": "data",
|
|
2899
|
-
"type": "
|
|
2900
|
-
"required": true
|
|
3428
|
+
"type": "string"
|
|
2901
3429
|
}
|
|
2902
3430
|
]
|
|
2903
3431
|
},
|
|
2904
3432
|
{
|
|
2905
3433
|
"key": "FAILED",
|
|
2906
|
-
"name": "Failed"
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
"required": true
|
|
2912
|
-
}
|
|
2913
|
-
]
|
|
3434
|
+
"name": "Failed"
|
|
3435
|
+
},
|
|
3436
|
+
{
|
|
3437
|
+
"key": "RESET",
|
|
3438
|
+
"name": "Reset"
|
|
2914
3439
|
},
|
|
2915
3440
|
{
|
|
2916
3441
|
"key": "RETRY",
|
|
2917
3442
|
"name": "Retry"
|
|
2918
3443
|
},
|
|
2919
3444
|
{
|
|
2920
|
-
"key": "
|
|
2921
|
-
"name": "
|
|
3445
|
+
"key": "DeploymentLoaded",
|
|
3446
|
+
"name": "Deployment loaded"
|
|
3447
|
+
},
|
|
3448
|
+
{
|
|
3449
|
+
"key": "DeploymentLoadFailed",
|
|
3450
|
+
"name": "Deployment load failed",
|
|
3451
|
+
"payload": [
|
|
3452
|
+
{
|
|
3453
|
+
"name": "message",
|
|
3454
|
+
"type": "string"
|
|
3455
|
+
}
|
|
3456
|
+
]
|
|
2922
3457
|
}
|
|
2923
3458
|
],
|
|
2924
3459
|
"transitions": [
|
|
@@ -2929,53 +3464,55 @@
|
|
|
2929
3464
|
"effects": [
|
|
2930
3465
|
[
|
|
2931
3466
|
"fetch",
|
|
2932
|
-
"Deployment"
|
|
3467
|
+
"Deployment",
|
|
3468
|
+
{
|
|
3469
|
+
"emit": {
|
|
3470
|
+
"success": "DeploymentLoaded",
|
|
3471
|
+
"failure": "DeploymentLoadFailed"
|
|
3472
|
+
}
|
|
3473
|
+
}
|
|
2933
3474
|
],
|
|
2934
3475
|
[
|
|
2935
3476
|
"render-ui",
|
|
2936
3477
|
"main",
|
|
2937
3478
|
{
|
|
2938
|
-
"type": "dashboard-layout",
|
|
2939
|
-
"appName": "CI/CD Pipeline",
|
|
2940
3479
|
"navItems": [
|
|
2941
3480
|
{
|
|
3481
|
+
"icon": "hammer",
|
|
2942
3482
|
"label": "Builds",
|
|
2943
|
-
"href": "/builds"
|
|
2944
|
-
"icon": "hammer"
|
|
3483
|
+
"href": "/builds"
|
|
2945
3484
|
},
|
|
2946
3485
|
{
|
|
2947
|
-
"label": "Stages",
|
|
2948
3486
|
"href": "/stages",
|
|
2949
|
-
"icon": "layers"
|
|
3487
|
+
"icon": "layers",
|
|
3488
|
+
"label": "Stages"
|
|
2950
3489
|
},
|
|
2951
3490
|
{
|
|
3491
|
+
"icon": "rocket",
|
|
2952
3492
|
"label": "Deploy",
|
|
2953
|
-
"href": "/deploy"
|
|
2954
|
-
"icon": "rocket"
|
|
3493
|
+
"href": "/deploy"
|
|
2955
3494
|
}
|
|
2956
3495
|
],
|
|
2957
3496
|
"children": [
|
|
2958
3497
|
{
|
|
2959
|
-
"type": "stack",
|
|
2960
|
-
"direction": "vertical",
|
|
2961
3498
|
"gap": "lg",
|
|
2962
3499
|
"align": "center",
|
|
2963
3500
|
"children": [
|
|
2964
3501
|
{
|
|
2965
|
-
"type": "stack",
|
|
2966
|
-
"direction": "horizontal",
|
|
2967
3502
|
"gap": "md",
|
|
2968
3503
|
"align": "center",
|
|
3504
|
+
"direction": "horizontal",
|
|
3505
|
+
"type": "stack",
|
|
2969
3506
|
"children": [
|
|
2970
3507
|
{
|
|
2971
|
-
"type": "icon",
|
|
2972
3508
|
"name": "upload-cloud",
|
|
2973
|
-
"size": "lg"
|
|
3509
|
+
"size": "lg",
|
|
3510
|
+
"type": "icon"
|
|
2974
3511
|
},
|
|
2975
3512
|
{
|
|
2976
3513
|
"type": "typography",
|
|
2977
|
-
"
|
|
2978
|
-
"
|
|
3514
|
+
"variant": "h2",
|
|
3515
|
+
"content": "Deployment"
|
|
2979
3516
|
}
|
|
2980
3517
|
]
|
|
2981
3518
|
},
|
|
@@ -2983,21 +3520,25 @@
|
|
|
2983
3520
|
"type": "divider"
|
|
2984
3521
|
},
|
|
2985
3522
|
{
|
|
2986
|
-
"
|
|
2987
|
-
"variant": "body",
|
|
3523
|
+
"content": "Ready to start deployment operation.",
|
|
2988
3524
|
"color": "muted",
|
|
2989
|
-
"
|
|
3525
|
+
"type": "typography",
|
|
3526
|
+
"variant": "body"
|
|
2990
3527
|
},
|
|
2991
3528
|
{
|
|
2992
3529
|
"type": "button",
|
|
2993
|
-
"label": "Start",
|
|
2994
3530
|
"event": "START",
|
|
3531
|
+
"label": "Start",
|
|
2995
3532
|
"variant": "primary",
|
|
2996
3533
|
"icon": "play"
|
|
2997
3534
|
}
|
|
2998
|
-
]
|
|
3535
|
+
],
|
|
3536
|
+
"type": "stack",
|
|
3537
|
+
"direction": "vertical"
|
|
2999
3538
|
}
|
|
3000
|
-
]
|
|
3539
|
+
],
|
|
3540
|
+
"type": "dashboard-layout",
|
|
3541
|
+
"appName": "CI/CD Pipeline"
|
|
3001
3542
|
}
|
|
3002
3543
|
]
|
|
3003
3544
|
]
|
|
@@ -3011,30 +3552,11 @@
|
|
|
3011
3552
|
"render-ui",
|
|
3012
3553
|
"main",
|
|
3013
3554
|
{
|
|
3014
|
-
"type": "dashboard-layout",
|
|
3015
|
-
"appName": "CI/CD Pipeline",
|
|
3016
|
-
"navItems": [
|
|
3017
|
-
{
|
|
3018
|
-
"label": "Builds",
|
|
3019
|
-
"href": "/builds",
|
|
3020
|
-
"icon": "hammer"
|
|
3021
|
-
},
|
|
3022
|
-
{
|
|
3023
|
-
"label": "Stages",
|
|
3024
|
-
"href": "/stages",
|
|
3025
|
-
"icon": "layers"
|
|
3026
|
-
},
|
|
3027
|
-
{
|
|
3028
|
-
"label": "Deploy",
|
|
3029
|
-
"href": "/deploy",
|
|
3030
|
-
"icon": "rocket"
|
|
3031
|
-
}
|
|
3032
|
-
],
|
|
3033
3555
|
"children": [
|
|
3034
3556
|
{
|
|
3035
|
-
"type": "stack",
|
|
3036
3557
|
"direction": "vertical",
|
|
3037
3558
|
"gap": "lg",
|
|
3559
|
+
"type": "stack",
|
|
3038
3560
|
"align": "center",
|
|
3039
3561
|
"children": [
|
|
3040
3562
|
{
|
|
@@ -3043,11 +3565,30 @@
|
|
|
3043
3565
|
"message": "Processing deployment..."
|
|
3044
3566
|
},
|
|
3045
3567
|
{
|
|
3046
|
-
"
|
|
3047
|
-
"
|
|
3568
|
+
"variant": "text",
|
|
3569
|
+
"type": "skeleton"
|
|
3048
3570
|
}
|
|
3049
3571
|
]
|
|
3050
3572
|
}
|
|
3573
|
+
],
|
|
3574
|
+
"appName": "CI/CD Pipeline",
|
|
3575
|
+
"type": "dashboard-layout",
|
|
3576
|
+
"navItems": [
|
|
3577
|
+
{
|
|
3578
|
+
"icon": "hammer",
|
|
3579
|
+
"label": "Builds",
|
|
3580
|
+
"href": "/builds"
|
|
3581
|
+
},
|
|
3582
|
+
{
|
|
3583
|
+
"href": "/stages",
|
|
3584
|
+
"icon": "layers",
|
|
3585
|
+
"label": "Stages"
|
|
3586
|
+
},
|
|
3587
|
+
{
|
|
3588
|
+
"href": "/deploy",
|
|
3589
|
+
"label": "Deploy",
|
|
3590
|
+
"icon": "rocket"
|
|
3591
|
+
}
|
|
3051
3592
|
]
|
|
3052
3593
|
}
|
|
3053
3594
|
]
|
|
@@ -3068,12 +3609,11 @@
|
|
|
3068
3609
|
"render-ui",
|
|
3069
3610
|
"main",
|
|
3070
3611
|
{
|
|
3071
|
-
"type": "dashboard-layout",
|
|
3072
3612
|
"appName": "CI/CD Pipeline",
|
|
3073
3613
|
"navItems": [
|
|
3074
3614
|
{
|
|
3075
|
-
"label": "Builds",
|
|
3076
3615
|
"href": "/builds",
|
|
3616
|
+
"label": "Builds",
|
|
3077
3617
|
"icon": "hammer"
|
|
3078
3618
|
},
|
|
3079
3619
|
{
|
|
@@ -3082,21 +3622,18 @@
|
|
|
3082
3622
|
"icon": "layers"
|
|
3083
3623
|
},
|
|
3084
3624
|
{
|
|
3085
|
-
"label": "Deploy",
|
|
3086
3625
|
"href": "/deploy",
|
|
3087
|
-
"icon": "rocket"
|
|
3626
|
+
"icon": "rocket",
|
|
3627
|
+
"label": "Deploy"
|
|
3088
3628
|
}
|
|
3089
3629
|
],
|
|
3630
|
+
"type": "dashboard-layout",
|
|
3090
3631
|
"children": [
|
|
3091
3632
|
{
|
|
3092
|
-
"type": "stack",
|
|
3093
|
-
"direction": "vertical",
|
|
3094
|
-
"gap": "lg",
|
|
3095
|
-
"align": "center",
|
|
3096
3633
|
"children": [
|
|
3097
3634
|
{
|
|
3098
|
-
"type": "icon",
|
|
3099
3635
|
"name": "check-circle",
|
|
3636
|
+
"type": "icon",
|
|
3100
3637
|
"size": "lg"
|
|
3101
3638
|
},
|
|
3102
3639
|
{
|
|
@@ -3108,18 +3645,22 @@
|
|
|
3108
3645
|
"type": "stack",
|
|
3109
3646
|
"direction": "horizontal",
|
|
3110
3647
|
"gap": "sm",
|
|
3111
|
-
"justify": "center",
|
|
3112
3648
|
"children": [
|
|
3113
3649
|
{
|
|
3114
3650
|
"type": "button",
|
|
3115
|
-
"
|
|
3116
|
-
"event": "RESET",
|
|
3651
|
+
"icon": "rotate-ccw",
|
|
3117
3652
|
"variant": "ghost",
|
|
3118
|
-
"
|
|
3653
|
+
"label": "Reset",
|
|
3654
|
+
"event": "RESET"
|
|
3119
3655
|
}
|
|
3120
|
-
]
|
|
3656
|
+
],
|
|
3657
|
+
"justify": "center"
|
|
3121
3658
|
}
|
|
3122
|
-
]
|
|
3659
|
+
],
|
|
3660
|
+
"direction": "vertical",
|
|
3661
|
+
"type": "stack",
|
|
3662
|
+
"gap": "lg",
|
|
3663
|
+
"align": "center"
|
|
3123
3664
|
}
|
|
3124
3665
|
]
|
|
3125
3666
|
}
|
|
@@ -3144,9 +3685,9 @@
|
|
|
3144
3685
|
"icon": "hammer"
|
|
3145
3686
|
},
|
|
3146
3687
|
{
|
|
3688
|
+
"icon": "layers",
|
|
3147
3689
|
"label": "Stages",
|
|
3148
|
-
"href": "/stages"
|
|
3149
|
-
"icon": "layers"
|
|
3690
|
+
"href": "/stages"
|
|
3150
3691
|
},
|
|
3151
3692
|
{
|
|
3152
3693
|
"label": "Deploy",
|
|
@@ -3156,38 +3697,38 @@
|
|
|
3156
3697
|
],
|
|
3157
3698
|
"children": [
|
|
3158
3699
|
{
|
|
3159
|
-
"type": "stack",
|
|
3160
3700
|
"direction": "vertical",
|
|
3161
|
-
"gap": "lg",
|
|
3162
3701
|
"align": "center",
|
|
3702
|
+
"gap": "lg",
|
|
3703
|
+
"type": "stack",
|
|
3163
3704
|
"children": [
|
|
3164
3705
|
{
|
|
3165
3706
|
"type": "error-state",
|
|
3166
|
-
"title": "Operation Failed",
|
|
3167
3707
|
"message": "Deployment failed.",
|
|
3168
|
-
"onRetry": "RETRY"
|
|
3708
|
+
"onRetry": "RETRY",
|
|
3709
|
+
"title": "Operation Failed"
|
|
3169
3710
|
},
|
|
3170
3711
|
{
|
|
3171
3712
|
"type": "stack",
|
|
3172
3713
|
"direction": "horizontal",
|
|
3173
3714
|
"gap": "sm",
|
|
3174
|
-
"justify": "center",
|
|
3175
3715
|
"children": [
|
|
3176
3716
|
{
|
|
3717
|
+
"event": "RETRY",
|
|
3177
3718
|
"type": "button",
|
|
3178
3719
|
"label": "Retry",
|
|
3179
|
-
"event": "RETRY",
|
|
3180
3720
|
"variant": "primary",
|
|
3181
3721
|
"icon": "refresh-cw"
|
|
3182
3722
|
},
|
|
3183
3723
|
{
|
|
3184
3724
|
"type": "button",
|
|
3185
|
-
"label": "Reset",
|
|
3186
3725
|
"event": "RESET",
|
|
3187
3726
|
"variant": "ghost",
|
|
3727
|
+
"label": "Reset",
|
|
3188
3728
|
"icon": "rotate-ccw"
|
|
3189
3729
|
}
|
|
3190
|
-
]
|
|
3730
|
+
],
|
|
3731
|
+
"justify": "center"
|
|
3191
3732
|
}
|
|
3192
3733
|
]
|
|
3193
3734
|
}
|
|
@@ -3209,43 +3750,43 @@
|
|
|
3209
3750
|
"appName": "CI/CD Pipeline",
|
|
3210
3751
|
"navItems": [
|
|
3211
3752
|
{
|
|
3753
|
+
"icon": "hammer",
|
|
3212
3754
|
"label": "Builds",
|
|
3213
|
-
"href": "/builds"
|
|
3214
|
-
"icon": "hammer"
|
|
3755
|
+
"href": "/builds"
|
|
3215
3756
|
},
|
|
3216
3757
|
{
|
|
3217
|
-
"label": "Stages",
|
|
3218
3758
|
"href": "/stages",
|
|
3759
|
+
"label": "Stages",
|
|
3219
3760
|
"icon": "layers"
|
|
3220
3761
|
},
|
|
3221
3762
|
{
|
|
3222
|
-
"label": "Deploy",
|
|
3223
3763
|
"href": "/deploy",
|
|
3764
|
+
"label": "Deploy",
|
|
3224
3765
|
"icon": "rocket"
|
|
3225
3766
|
}
|
|
3226
3767
|
],
|
|
3227
3768
|
"children": [
|
|
3228
3769
|
{
|
|
3229
|
-
"type": "stack",
|
|
3230
3770
|
"direction": "vertical",
|
|
3231
3771
|
"gap": "lg",
|
|
3772
|
+
"type": "stack",
|
|
3232
3773
|
"align": "center",
|
|
3233
3774
|
"children": [
|
|
3234
3775
|
{
|
|
3235
3776
|
"type": "stack",
|
|
3777
|
+
"align": "center",
|
|
3236
3778
|
"direction": "horizontal",
|
|
3237
3779
|
"gap": "md",
|
|
3238
|
-
"align": "center",
|
|
3239
3780
|
"children": [
|
|
3240
3781
|
{
|
|
3241
|
-
"type": "icon",
|
|
3242
3782
|
"name": "upload-cloud",
|
|
3243
|
-
"size": "lg"
|
|
3783
|
+
"size": "lg",
|
|
3784
|
+
"type": "icon"
|
|
3244
3785
|
},
|
|
3245
3786
|
{
|
|
3246
|
-
"type": "typography",
|
|
3247
3787
|
"content": "Deployment",
|
|
3248
|
-
"variant": "h2"
|
|
3788
|
+
"variant": "h2",
|
|
3789
|
+
"type": "typography"
|
|
3249
3790
|
}
|
|
3250
3791
|
]
|
|
3251
3792
|
},
|
|
@@ -3254,16 +3795,16 @@
|
|
|
3254
3795
|
},
|
|
3255
3796
|
{
|
|
3256
3797
|
"type": "typography",
|
|
3798
|
+
"content": "Ready to start deployment operation.",
|
|
3257
3799
|
"variant": "body",
|
|
3258
|
-
"color": "muted"
|
|
3259
|
-
"content": "Ready to start deployment operation."
|
|
3800
|
+
"color": "muted"
|
|
3260
3801
|
},
|
|
3261
3802
|
{
|
|
3262
|
-
"type": "button",
|
|
3263
|
-
"label": "Start",
|
|
3264
3803
|
"event": "START",
|
|
3265
3804
|
"variant": "primary",
|
|
3266
|
-
"
|
|
3805
|
+
"label": "Start",
|
|
3806
|
+
"icon": "play",
|
|
3807
|
+
"type": "button"
|
|
3267
3808
|
}
|
|
3268
3809
|
]
|
|
3269
3810
|
}
|
|
@@ -3281,8 +3822,6 @@
|
|
|
3281
3822
|
"render-ui",
|
|
3282
3823
|
"main",
|
|
3283
3824
|
{
|
|
3284
|
-
"type": "dashboard-layout",
|
|
3285
|
-
"appName": "CI/CD Pipeline",
|
|
3286
3825
|
"navItems": [
|
|
3287
3826
|
{
|
|
3288
3827
|
"label": "Builds",
|
|
@@ -3290,9 +3829,9 @@
|
|
|
3290
3829
|
"icon": "hammer"
|
|
3291
3830
|
},
|
|
3292
3831
|
{
|
|
3293
|
-
"
|
|
3832
|
+
"icon": "layers",
|
|
3294
3833
|
"href": "/stages",
|
|
3295
|
-
"
|
|
3834
|
+
"label": "Stages"
|
|
3296
3835
|
},
|
|
3297
3836
|
{
|
|
3298
3837
|
"label": "Deploy",
|
|
@@ -3300,30 +3839,29 @@
|
|
|
3300
3839
|
"icon": "rocket"
|
|
3301
3840
|
}
|
|
3302
3841
|
],
|
|
3842
|
+
"type": "dashboard-layout",
|
|
3303
3843
|
"children": [
|
|
3304
3844
|
{
|
|
3305
3845
|
"type": "stack",
|
|
3306
3846
|
"direction": "vertical",
|
|
3307
|
-
"gap": "lg",
|
|
3308
|
-
"align": "center",
|
|
3309
3847
|
"children": [
|
|
3310
3848
|
{
|
|
3311
|
-
"type": "stack",
|
|
3312
3849
|
"direction": "horizontal",
|
|
3313
3850
|
"gap": "md",
|
|
3314
|
-
"align": "center",
|
|
3315
3851
|
"children": [
|
|
3316
3852
|
{
|
|
3317
3853
|
"type": "icon",
|
|
3318
|
-
"
|
|
3319
|
-
"
|
|
3854
|
+
"size": "lg",
|
|
3855
|
+
"name": "upload-cloud"
|
|
3320
3856
|
},
|
|
3321
3857
|
{
|
|
3322
|
-
"type": "typography",
|
|
3323
3858
|
"content": "Deployment",
|
|
3859
|
+
"type": "typography",
|
|
3324
3860
|
"variant": "h2"
|
|
3325
3861
|
}
|
|
3326
|
-
]
|
|
3862
|
+
],
|
|
3863
|
+
"align": "center",
|
|
3864
|
+
"type": "stack"
|
|
3327
3865
|
},
|
|
3328
3866
|
{
|
|
3329
3867
|
"type": "divider"
|
|
@@ -3336,14 +3874,17 @@
|
|
|
3336
3874
|
},
|
|
3337
3875
|
{
|
|
3338
3876
|
"type": "button",
|
|
3339
|
-
"label": "Start",
|
|
3340
|
-
"event": "START",
|
|
3341
3877
|
"variant": "primary",
|
|
3342
|
-
"
|
|
3878
|
+
"label": "Start",
|
|
3879
|
+
"icon": "play",
|
|
3880
|
+
"event": "START"
|
|
3343
3881
|
}
|
|
3344
|
-
]
|
|
3882
|
+
],
|
|
3883
|
+
"gap": "lg",
|
|
3884
|
+
"align": "center"
|
|
3345
3885
|
}
|
|
3346
|
-
]
|
|
3886
|
+
],
|
|
3887
|
+
"appName": "CI/CD Pipeline"
|
|
3347
3888
|
}
|
|
3348
3889
|
]
|
|
3349
3890
|
]
|
|
@@ -3357,36 +3898,35 @@
|
|
|
3357
3898
|
"render-ui",
|
|
3358
3899
|
"main",
|
|
3359
3900
|
{
|
|
3360
|
-
"type": "dashboard-layout",
|
|
3361
|
-
"appName": "CI/CD Pipeline",
|
|
3362
3901
|
"navItems": [
|
|
3363
3902
|
{
|
|
3364
3903
|
"label": "Builds",
|
|
3365
|
-
"
|
|
3366
|
-
"
|
|
3904
|
+
"icon": "hammer",
|
|
3905
|
+
"href": "/builds"
|
|
3367
3906
|
},
|
|
3368
3907
|
{
|
|
3369
3908
|
"label": "Stages",
|
|
3370
|
-
"
|
|
3371
|
-
"
|
|
3909
|
+
"icon": "layers",
|
|
3910
|
+
"href": "/stages"
|
|
3372
3911
|
},
|
|
3373
3912
|
{
|
|
3374
|
-
"label": "Deploy",
|
|
3375
3913
|
"href": "/deploy",
|
|
3376
|
-
"icon": "rocket"
|
|
3914
|
+
"icon": "rocket",
|
|
3915
|
+
"label": "Deploy"
|
|
3377
3916
|
}
|
|
3378
3917
|
],
|
|
3918
|
+
"appName": "CI/CD Pipeline",
|
|
3379
3919
|
"children": [
|
|
3380
3920
|
{
|
|
3921
|
+
"align": "center",
|
|
3381
3922
|
"type": "stack",
|
|
3382
3923
|
"direction": "vertical",
|
|
3383
3924
|
"gap": "lg",
|
|
3384
|
-
"align": "center",
|
|
3385
3925
|
"children": [
|
|
3386
3926
|
{
|
|
3387
|
-
"type": "loading-state",
|
|
3388
3927
|
"title": "Deploying...",
|
|
3389
|
-
"message": "Processing deployment..."
|
|
3928
|
+
"message": "Processing deployment...",
|
|
3929
|
+
"type": "loading-state"
|
|
3390
3930
|
},
|
|
3391
3931
|
{
|
|
3392
3932
|
"type": "skeleton",
|
|
@@ -3394,18 +3934,20 @@
|
|
|
3394
3934
|
}
|
|
3395
3935
|
]
|
|
3396
3936
|
}
|
|
3397
|
-
]
|
|
3937
|
+
],
|
|
3938
|
+
"type": "dashboard-layout"
|
|
3398
3939
|
}
|
|
3399
3940
|
]
|
|
3400
3941
|
]
|
|
3401
3942
|
}
|
|
3402
3943
|
]
|
|
3403
|
-
}
|
|
3944
|
+
},
|
|
3945
|
+
"scope": "collection"
|
|
3404
3946
|
}
|
|
3405
3947
|
],
|
|
3406
3948
|
"pages": [
|
|
3407
3949
|
{
|
|
3408
|
-
"name": "
|
|
3950
|
+
"name": "Deploy",
|
|
3409
3951
|
"path": "/deploy",
|
|
3410
3952
|
"traits": [
|
|
3411
3953
|
{
|
|
@@ -3416,4 +3958,4 @@
|
|
|
3416
3958
|
]
|
|
3417
3959
|
}
|
|
3418
3960
|
]
|
|
3419
|
-
}
|
|
3961
|
+
}
|