@almadar/std 6.5.2 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-validate-on-save",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-validate-on-save as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ValidateOnSave",
|
|
@@ -26,17 +26,23 @@
|
|
|
26
26
|
{
|
|
27
27
|
"name": "errors",
|
|
28
28
|
"type": "array",
|
|
29
|
-
"default": []
|
|
29
|
+
"default": [],
|
|
30
|
+
"items": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
}
|
|
30
33
|
},
|
|
31
34
|
{
|
|
32
35
|
"name": "warnings",
|
|
33
36
|
"type": "array",
|
|
34
|
-
"default": []
|
|
37
|
+
"default": [],
|
|
38
|
+
"items": {
|
|
39
|
+
"type": "string"
|
|
40
|
+
}
|
|
35
41
|
},
|
|
36
42
|
{
|
|
37
43
|
"name": "timestamp",
|
|
38
44
|
"type": "number",
|
|
39
|
-
"default": 0
|
|
45
|
+
"default": 0.0
|
|
40
46
|
},
|
|
41
47
|
{
|
|
42
48
|
"name": "status",
|
|
@@ -48,47 +54,8 @@
|
|
|
48
54
|
"traits": [
|
|
49
55
|
{
|
|
50
56
|
"name": "OrbFileWatcher",
|
|
51
|
-
"linkedEntity": "ValidateOnSave",
|
|
52
57
|
"category": "interaction",
|
|
53
|
-
"
|
|
54
|
-
{
|
|
55
|
-
"event": "OS_FILE_MODIFIED",
|
|
56
|
-
"scope": "external",
|
|
57
|
-
"guard": [
|
|
58
|
-
"str/endsWith",
|
|
59
|
-
"@payload.path",
|
|
60
|
-
".orb"
|
|
61
|
-
]
|
|
62
|
-
}
|
|
63
|
-
],
|
|
64
|
-
"emits": [
|
|
65
|
-
{
|
|
66
|
-
"event": "AGENT_INTERRUPT",
|
|
67
|
-
"scope": "external",
|
|
68
|
-
"payload": [
|
|
69
|
-
{
|
|
70
|
-
"name": "type",
|
|
71
|
-
"type": "string"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"name": "status",
|
|
75
|
-
"type": "string"
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
"name": "path",
|
|
79
|
-
"type": "string"
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"name": "errors",
|
|
83
|
-
"type": "array"
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
"name": "blocking",
|
|
87
|
-
"type": "boolean"
|
|
88
|
-
}
|
|
89
|
-
]
|
|
90
|
-
}
|
|
91
|
-
],
|
|
58
|
+
"linkedEntity": "ValidateOnSave",
|
|
92
59
|
"stateMachine": {
|
|
93
60
|
"states": [
|
|
94
61
|
{
|
|
@@ -112,34 +79,14 @@
|
|
|
112
79
|
},
|
|
113
80
|
{
|
|
114
81
|
"key": "OS_FILE_MODIFIED",
|
|
115
|
-
"name": "File Modified",
|
|
82
|
+
"name": "Os File Modified",
|
|
116
83
|
"payload": [
|
|
117
84
|
{
|
|
118
85
|
"name": "path",
|
|
119
86
|
"type": "string"
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"name": "name",
|
|
123
|
-
"type": "string"
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"name": "dir",
|
|
127
|
-
"type": "string"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"name": "ext",
|
|
131
|
-
"type": "string"
|
|
132
|
-
},
|
|
133
|
-
{
|
|
134
|
-
"name": "timestamp",
|
|
135
|
-
"type": "number"
|
|
136
87
|
}
|
|
137
88
|
]
|
|
138
89
|
},
|
|
139
|
-
{
|
|
140
|
-
"key": "REFRESH",
|
|
141
|
-
"name": "Validate Now"
|
|
142
|
-
},
|
|
143
90
|
{
|
|
144
91
|
"key": "VALIDATION_PASSED",
|
|
145
92
|
"name": "Validation Passed",
|
|
@@ -163,21 +110,29 @@
|
|
|
163
110
|
"type": "array"
|
|
164
111
|
}
|
|
165
112
|
]
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"key": "REFRESH",
|
|
116
|
+
"name": "Refresh"
|
|
166
117
|
}
|
|
167
118
|
],
|
|
168
119
|
"transitions": [
|
|
169
120
|
{
|
|
170
121
|
"from": "idle",
|
|
171
|
-
"event": "INIT",
|
|
172
122
|
"to": "idle",
|
|
123
|
+
"event": "INIT",
|
|
173
124
|
"effects": [
|
|
125
|
+
[
|
|
126
|
+
"fetch",
|
|
127
|
+
"ValidateOnSave"
|
|
128
|
+
],
|
|
174
129
|
[
|
|
175
130
|
"os/watch-files",
|
|
176
131
|
"**/*.orb"
|
|
177
132
|
],
|
|
178
133
|
[
|
|
179
134
|
"os/debounce",
|
|
180
|
-
500,
|
|
135
|
+
500.0,
|
|
181
136
|
"OS_FILE_MODIFIED"
|
|
182
137
|
],
|
|
183
138
|
[
|
|
@@ -189,9 +144,9 @@
|
|
|
189
144
|
"render-ui",
|
|
190
145
|
"main",
|
|
191
146
|
{
|
|
192
|
-
"type": "page-header",
|
|
193
147
|
"title": "Orb File Validator",
|
|
194
|
-
"subtitle": "Watching **/*.orb for changes"
|
|
148
|
+
"subtitle": "Watching **/*.orb for changes",
|
|
149
|
+
"type": "page-header"
|
|
195
150
|
}
|
|
196
151
|
],
|
|
197
152
|
[
|
|
@@ -199,16 +154,16 @@
|
|
|
199
154
|
"center",
|
|
200
155
|
{
|
|
201
156
|
"type": "empty-state",
|
|
202
|
-
"
|
|
203
|
-
"
|
|
157
|
+
"description": "Watching **/*.orb. Save an .orb file to trigger validation.",
|
|
158
|
+
"title": "Waiting for file changes"
|
|
204
159
|
}
|
|
205
160
|
]
|
|
206
161
|
]
|
|
207
162
|
},
|
|
208
163
|
{
|
|
209
164
|
"from": "idle",
|
|
210
|
-
"event": "OS_FILE_MODIFIED",
|
|
211
165
|
"to": "validating",
|
|
166
|
+
"event": "OS_FILE_MODIFIED",
|
|
212
167
|
"effects": [
|
|
213
168
|
[
|
|
214
169
|
"set",
|
|
@@ -229,17 +184,17 @@
|
|
|
229
184
|
"render-ui",
|
|
230
185
|
"main",
|
|
231
186
|
{
|
|
187
|
+
"subtitle": "Validating...",
|
|
232
188
|
"type": "page-header",
|
|
233
|
-
"title": "Orb File Validator"
|
|
234
|
-
"subtitle": "Validating..."
|
|
189
|
+
"title": "Orb File Validator"
|
|
235
190
|
}
|
|
236
191
|
],
|
|
237
192
|
[
|
|
238
193
|
"render-ui",
|
|
239
194
|
"center",
|
|
240
195
|
{
|
|
241
|
-
"
|
|
242
|
-
"
|
|
196
|
+
"title": "Running orbital validate...",
|
|
197
|
+
"type": "loading-state"
|
|
243
198
|
}
|
|
244
199
|
],
|
|
245
200
|
[
|
|
@@ -256,8 +211,8 @@
|
|
|
256
211
|
},
|
|
257
212
|
{
|
|
258
213
|
"from": "validating",
|
|
259
|
-
"event": "VALIDATION_PASSED",
|
|
260
214
|
"to": "valid",
|
|
215
|
+
"event": "VALIDATION_PASSED",
|
|
261
216
|
"effects": [
|
|
262
217
|
[
|
|
263
218
|
"set",
|
|
@@ -283,9 +238,9 @@
|
|
|
283
238
|
"render-ui",
|
|
284
239
|
"main",
|
|
285
240
|
{
|
|
241
|
+
"subtitle": "Validation passed",
|
|
286
242
|
"type": "page-header",
|
|
287
243
|
"title": "Orb File Validator",
|
|
288
|
-
"subtitle": "Validation passed",
|
|
289
244
|
"actions": [
|
|
290
245
|
{
|
|
291
246
|
"event": "REFRESH",
|
|
@@ -299,37 +254,64 @@
|
|
|
299
254
|
"render-ui",
|
|
300
255
|
"center",
|
|
301
256
|
{
|
|
302
|
-
"
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
257
|
+
"children": [
|
|
258
|
+
{
|
|
259
|
+
"variant": "caption",
|
|
260
|
+
"content": "path",
|
|
261
|
+
"type": "typography"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"type": "typography",
|
|
265
|
+
"variant": "body",
|
|
266
|
+
"content": "@entity.path"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"content": "valid",
|
|
270
|
+
"type": "typography",
|
|
271
|
+
"variant": "caption"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"type": "typography",
|
|
275
|
+
"variant": "body",
|
|
276
|
+
"content": "@entity.valid"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"variant": "caption",
|
|
280
|
+
"type": "typography",
|
|
281
|
+
"content": "status"
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"type": "typography",
|
|
285
|
+
"content": "@entity.status",
|
|
286
|
+
"variant": "body"
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"type": "typography",
|
|
290
|
+
"variant": "caption",
|
|
291
|
+
"content": "timestamp"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"content": "@entity.timestamp",
|
|
295
|
+
"type": "typography",
|
|
296
|
+
"variant": "body"
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"direction": "vertical",
|
|
300
|
+
"type": "stack",
|
|
301
|
+
"gap": "md"
|
|
310
302
|
}
|
|
311
303
|
],
|
|
312
304
|
[
|
|
313
305
|
"notify",
|
|
314
306
|
"success",
|
|
315
307
|
"Schema is valid"
|
|
316
|
-
],
|
|
317
|
-
[
|
|
318
|
-
"emit",
|
|
319
|
-
"AGENT_INTERRUPT",
|
|
320
|
-
{
|
|
321
|
-
"type": "validation",
|
|
322
|
-
"status": "passed",
|
|
323
|
-
"path": "@entity.path",
|
|
324
|
-
"blocking": false
|
|
325
|
-
}
|
|
326
308
|
]
|
|
327
309
|
]
|
|
328
310
|
},
|
|
329
311
|
{
|
|
330
312
|
"from": "validating",
|
|
331
|
-
"event": "VALIDATION_FAILED",
|
|
332
313
|
"to": "invalid",
|
|
314
|
+
"event": "VALIDATION_FAILED",
|
|
333
315
|
"effects": [
|
|
334
316
|
[
|
|
335
317
|
"set",
|
|
@@ -355,13 +337,13 @@
|
|
|
355
337
|
"render-ui",
|
|
356
338
|
"main",
|
|
357
339
|
{
|
|
340
|
+
"subtitle": "Validation failed",
|
|
358
341
|
"type": "page-header",
|
|
359
342
|
"title": "Orb File Validator",
|
|
360
|
-
"subtitle": "Validation failed",
|
|
361
343
|
"actions": [
|
|
362
344
|
{
|
|
363
|
-
"event": "REFRESH",
|
|
364
345
|
"label": "Validate Now",
|
|
346
|
+
"event": "REFRESH",
|
|
365
347
|
"variant": "primary"
|
|
366
348
|
}
|
|
367
349
|
]
|
|
@@ -371,14 +353,50 @@
|
|
|
371
353
|
"render-ui",
|
|
372
354
|
"center",
|
|
373
355
|
{
|
|
374
|
-
"type": "
|
|
375
|
-
"
|
|
376
|
-
"
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
356
|
+
"type": "stack",
|
|
357
|
+
"direction": "vertical",
|
|
358
|
+
"gap": "md",
|
|
359
|
+
"children": [
|
|
360
|
+
{
|
|
361
|
+
"variant": "caption",
|
|
362
|
+
"type": "typography",
|
|
363
|
+
"content": "path"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"variant": "body",
|
|
367
|
+
"content": "@entity.path",
|
|
368
|
+
"type": "typography"
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
"variant": "caption",
|
|
372
|
+
"type": "typography",
|
|
373
|
+
"content": "status"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"variant": "body",
|
|
377
|
+
"content": "@entity.status",
|
|
378
|
+
"type": "typography"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"content": "errors",
|
|
382
|
+
"variant": "caption",
|
|
383
|
+
"type": "typography"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"content": "@entity.errors",
|
|
387
|
+
"variant": "body",
|
|
388
|
+
"type": "typography"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"content": "warnings",
|
|
392
|
+
"type": "typography",
|
|
393
|
+
"variant": "caption"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"variant": "body",
|
|
397
|
+
"content": "@entity.warnings",
|
|
398
|
+
"type": "typography"
|
|
399
|
+
}
|
|
382
400
|
]
|
|
383
401
|
}
|
|
384
402
|
],
|
|
@@ -386,24 +404,13 @@
|
|
|
386
404
|
"notify",
|
|
387
405
|
"error",
|
|
388
406
|
"Schema has errors"
|
|
389
|
-
],
|
|
390
|
-
[
|
|
391
|
-
"emit",
|
|
392
|
-
"AGENT_INTERRUPT",
|
|
393
|
-
{
|
|
394
|
-
"type": "validation",
|
|
395
|
-
"status": "failed",
|
|
396
|
-
"path": "@entity.path",
|
|
397
|
-
"errors": "@payload.errors",
|
|
398
|
-
"blocking": true
|
|
399
|
-
}
|
|
400
407
|
]
|
|
401
408
|
]
|
|
402
409
|
},
|
|
403
410
|
{
|
|
404
411
|
"from": "valid",
|
|
405
|
-
"event": "OS_FILE_MODIFIED",
|
|
406
412
|
"to": "validating",
|
|
413
|
+
"event": "OS_FILE_MODIFIED",
|
|
407
414
|
"effects": [
|
|
408
415
|
[
|
|
409
416
|
"set",
|
|
@@ -424,8 +431,8 @@
|
|
|
424
431
|
"render-ui",
|
|
425
432
|
"main",
|
|
426
433
|
{
|
|
427
|
-
"type": "page-header",
|
|
428
434
|
"title": "Orb File Validator",
|
|
435
|
+
"type": "page-header",
|
|
429
436
|
"subtitle": "Re-validating..."
|
|
430
437
|
}
|
|
431
438
|
],
|
|
@@ -442,28 +449,18 @@
|
|
|
442
449
|
"orbital-cli",
|
|
443
450
|
"validate",
|
|
444
451
|
{
|
|
445
|
-
"path": "@payload.path",
|
|
446
452
|
"onSuccess": "VALIDATION_PASSED",
|
|
453
|
+
"path": "@payload.path",
|
|
447
454
|
"onError": "VALIDATION_FAILED"
|
|
448
455
|
}
|
|
449
456
|
]
|
|
450
457
|
]
|
|
451
458
|
},
|
|
452
459
|
{
|
|
453
|
-
"from": "
|
|
454
|
-
"event": "OS_FILE_MODIFIED",
|
|
460
|
+
"from": "valid",
|
|
455
461
|
"to": "validating",
|
|
462
|
+
"event": "REFRESH",
|
|
456
463
|
"effects": [
|
|
457
|
-
[
|
|
458
|
-
"set",
|
|
459
|
-
"@entity.path",
|
|
460
|
-
"@payload.path"
|
|
461
|
-
],
|
|
462
|
-
[
|
|
463
|
-
"set",
|
|
464
|
-
"@entity.timestamp",
|
|
465
|
-
"@now"
|
|
466
|
-
],
|
|
467
464
|
[
|
|
468
465
|
"set",
|
|
469
466
|
"@entity.status",
|
|
@@ -473,9 +470,9 @@
|
|
|
473
470
|
"render-ui",
|
|
474
471
|
"main",
|
|
475
472
|
{
|
|
473
|
+
"subtitle": "Re-validating...",
|
|
476
474
|
"type": "page-header",
|
|
477
|
-
"title": "Orb File Validator"
|
|
478
|
-
"subtitle": "Re-validating..."
|
|
475
|
+
"title": "Orb File Validator"
|
|
479
476
|
}
|
|
480
477
|
],
|
|
481
478
|
[
|
|
@@ -491,18 +488,28 @@
|
|
|
491
488
|
"orbital-cli",
|
|
492
489
|
"validate",
|
|
493
490
|
{
|
|
494
|
-
"
|
|
495
|
-
"
|
|
496
|
-
"
|
|
491
|
+
"onError": "VALIDATION_FAILED",
|
|
492
|
+
"path": "@entity.path",
|
|
493
|
+
"onSuccess": "VALIDATION_PASSED"
|
|
497
494
|
}
|
|
498
495
|
]
|
|
499
496
|
]
|
|
500
497
|
},
|
|
501
498
|
{
|
|
502
|
-
"from": "
|
|
503
|
-
"event": "REFRESH",
|
|
499
|
+
"from": "invalid",
|
|
504
500
|
"to": "validating",
|
|
501
|
+
"event": "OS_FILE_MODIFIED",
|
|
505
502
|
"effects": [
|
|
503
|
+
[
|
|
504
|
+
"set",
|
|
505
|
+
"@entity.path",
|
|
506
|
+
"@payload.path"
|
|
507
|
+
],
|
|
508
|
+
[
|
|
509
|
+
"set",
|
|
510
|
+
"@entity.timestamp",
|
|
511
|
+
"@now"
|
|
512
|
+
],
|
|
506
513
|
[
|
|
507
514
|
"set",
|
|
508
515
|
"@entity.status",
|
|
@@ -521,8 +528,8 @@
|
|
|
521
528
|
"render-ui",
|
|
522
529
|
"center",
|
|
523
530
|
{
|
|
524
|
-
"
|
|
525
|
-
"
|
|
531
|
+
"title": "Running orbital validate...",
|
|
532
|
+
"type": "loading-state"
|
|
526
533
|
}
|
|
527
534
|
],
|
|
528
535
|
[
|
|
@@ -530,8 +537,8 @@
|
|
|
530
537
|
"orbital-cli",
|
|
531
538
|
"validate",
|
|
532
539
|
{
|
|
533
|
-
"path": "@entity.path",
|
|
534
540
|
"onSuccess": "VALIDATION_PASSED",
|
|
541
|
+
"path": "@payload.path",
|
|
535
542
|
"onError": "VALIDATION_FAILED"
|
|
536
543
|
}
|
|
537
544
|
]
|
|
@@ -539,8 +546,8 @@
|
|
|
539
546
|
},
|
|
540
547
|
{
|
|
541
548
|
"from": "invalid",
|
|
542
|
-
"event": "REFRESH",
|
|
543
549
|
"to": "validating",
|
|
550
|
+
"event": "REFRESH",
|
|
544
551
|
"effects": [
|
|
545
552
|
[
|
|
546
553
|
"set",
|
|
@@ -551,17 +558,17 @@
|
|
|
551
558
|
"render-ui",
|
|
552
559
|
"main",
|
|
553
560
|
{
|
|
554
|
-
"type": "page-header",
|
|
555
561
|
"title": "Orb File Validator",
|
|
556
|
-
"subtitle": "Re-validating..."
|
|
562
|
+
"subtitle": "Re-validating...",
|
|
563
|
+
"type": "page-header"
|
|
557
564
|
}
|
|
558
565
|
],
|
|
559
566
|
[
|
|
560
567
|
"render-ui",
|
|
561
568
|
"center",
|
|
562
569
|
{
|
|
563
|
-
"
|
|
564
|
-
"
|
|
570
|
+
"title": "Running orbital validate...",
|
|
571
|
+
"type": "loading-state"
|
|
565
572
|
}
|
|
566
573
|
],
|
|
567
574
|
[
|
|
@@ -569,15 +576,16 @@
|
|
|
569
576
|
"orbital-cli",
|
|
570
577
|
"validate",
|
|
571
578
|
{
|
|
572
|
-
"path": "@entity.path",
|
|
573
579
|
"onSuccess": "VALIDATION_PASSED",
|
|
580
|
+
"path": "@entity.path",
|
|
574
581
|
"onError": "VALIDATION_FAILED"
|
|
575
582
|
}
|
|
576
583
|
]
|
|
577
584
|
]
|
|
578
585
|
}
|
|
579
586
|
]
|
|
580
|
-
}
|
|
587
|
+
},
|
|
588
|
+
"scope": "instance"
|
|
581
589
|
}
|
|
582
590
|
],
|
|
583
591
|
"pages": [
|
|
@@ -593,4 +601,4 @@
|
|
|
593
601
|
]
|
|
594
602
|
}
|
|
595
603
|
]
|
|
596
|
-
}
|
|
604
|
+
}
|