@almadar/std 6.5.2 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/behaviors/registry/atoms/std-async.orb +147 -86
- package/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/behaviors/registry/atoms/std-browse.orb +260 -126
- package/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/behaviors/registry/atoms/std-collision.orb +136 -135
- package/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/behaviors/registry/atoms/std-combat.orb +171 -98
- package/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/behaviors/registry/atoms/std-display.orb +491 -587
- package/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/behaviors/registry/atoms/std-filter.orb +311 -326
- package/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/behaviors/registry/atoms/std-input.orb +128 -393
- package/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/behaviors/registry/atoms/std-loading.orb +127 -126
- package/behaviors/registry/atoms/std-modal.orb +30 -267
- package/behaviors/registry/atoms/std-movement.orb +391 -292
- package/behaviors/registry/atoms/std-notification.orb +133 -75
- package/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/behaviors/registry/atoms/std-push.orb +172 -36
- package/behaviors/registry/atoms/std-quest.orb +552 -449
- package/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/behaviors/registry/atoms/std-rating.orb +123 -65
- package/behaviors/registry/atoms/std-related.orb +202 -26
- package/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/behaviors/registry/atoms/std-score.orb +210 -146
- package/behaviors/registry/atoms/std-search.orb +265 -138
- package/behaviors/registry/atoms/std-selection.orb +311 -220
- package/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/behaviors/registry/atoms/std-sort.orb +284 -207
- package/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/behaviors/registry/atoms/std-theme.orb +193 -135
- package/behaviors/registry/atoms/std-timer.orb +320 -344
- package/behaviors/registry/atoms/std-undo.orb +278 -199
- package/behaviors/registry/atoms/std-upload.orb +112 -111
- package/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/behaviors/registry/molecules/std-cart.orb +347 -406
- package/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/behaviors/registry/molecules/std-detail.orb +133 -138
- package/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/behaviors/registry/molecules/std-list.orb +280 -205
- package/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/behaviors/registry/atoms/std-agent-activity-log.orb +240 -227
- package/dist/behaviors/registry/atoms/std-agent-chat-thread.orb +296 -199
- package/dist/behaviors/registry/atoms/std-agent-classifier.orb +384 -133
- package/dist/behaviors/registry/atoms/std-agent-completion.orb +404 -141
- package/dist/behaviors/registry/atoms/std-agent-context-window.orb +904 -607
- package/dist/behaviors/registry/atoms/std-agent-conversation.orb +443 -234
- package/dist/behaviors/registry/atoms/std-agent-memory.orb +584 -150
- package/dist/behaviors/registry/atoms/std-agent-provider.orb +431 -174
- package/dist/behaviors/registry/atoms/std-agent-search.orb +217 -61
- package/dist/behaviors/registry/atoms/std-agent-session.orb +406 -159
- package/dist/behaviors/registry/atoms/std-agent-step-progress.orb +314 -294
- package/dist/behaviors/registry/atoms/std-agent-token-gauge.orb +577 -500
- package/dist/behaviors/registry/atoms/std-agent-tool-call.orb +328 -138
- package/dist/behaviors/registry/atoms/std-async.orb +147 -86
- package/dist/behaviors/registry/atoms/std-autoregressive.orb +64 -73
- package/dist/behaviors/registry/atoms/std-browse.orb +260 -126
- package/dist/behaviors/registry/atoms/std-cache-aside.orb +358 -259
- package/dist/behaviors/registry/atoms/std-calendar.orb +280 -215
- package/dist/behaviors/registry/atoms/std-circuit-breaker.orb +295 -234
- package/dist/behaviors/registry/atoms/std-collision.orb +136 -135
- package/dist/behaviors/registry/atoms/std-combat-log.orb +108 -90
- package/dist/behaviors/registry/atoms/std-combat.orb +171 -98
- package/dist/behaviors/registry/atoms/std-confirmation.orb +28 -300
- package/dist/behaviors/registry/atoms/std-dialogue-box.orb +111 -30
- package/dist/behaviors/registry/atoms/std-display.orb +491 -587
- package/dist/behaviors/registry/atoms/std-drawer.orb +194 -121
- package/dist/behaviors/registry/atoms/std-filter.orb +311 -326
- package/dist/behaviors/registry/atoms/std-flip-card.orb +223 -177
- package/dist/behaviors/registry/atoms/std-gallery.orb +130 -151
- package/dist/behaviors/registry/atoms/std-game-audio.orb +133 -72
- package/dist/behaviors/registry/atoms/std-game-canvas2d.orb +112 -52
- package/dist/behaviors/registry/atoms/std-game-canvas3d.orb +150 -107
- package/dist/behaviors/registry/atoms/std-game-hud.orb +87 -20
- package/dist/behaviors/registry/atoms/std-game-menu.orb +32 -32
- package/dist/behaviors/registry/atoms/std-game-over-screen.orb +100 -33
- package/dist/behaviors/registry/atoms/std-gameflow.orb +147 -80
- package/dist/behaviors/registry/atoms/std-input.orb +128 -393
- package/dist/behaviors/registry/atoms/std-inventory-panel.orb +108 -71
- package/dist/behaviors/registry/atoms/std-isometric-canvas.orb +156 -407
- package/dist/behaviors/registry/atoms/std-loading.orb +127 -126
- package/dist/behaviors/registry/atoms/std-modal.orb +30 -267
- package/dist/behaviors/registry/atoms/std-movement.orb +391 -292
- package/dist/behaviors/registry/atoms/std-notification.orb +133 -75
- package/dist/behaviors/registry/atoms/std-overworld.orb +194 -121
- package/dist/behaviors/registry/atoms/std-pagination.orb +120 -53
- package/dist/behaviors/registry/atoms/std-physics2d.orb +94 -93
- package/dist/behaviors/registry/atoms/std-platformer-canvas.orb +110 -98
- package/dist/behaviors/registry/atoms/std-push.orb +172 -36
- package/dist/behaviors/registry/atoms/std-quest.orb +552 -449
- package/dist/behaviors/registry/atoms/std-rate-limiter.orb +242 -241
- package/dist/behaviors/registry/atoms/std-rating.orb +123 -65
- package/dist/behaviors/registry/atoms/std-related.orb +202 -26
- package/dist/behaviors/registry/atoms/std-score-board.orb +109 -28
- package/dist/behaviors/registry/atoms/std-score.orb +210 -146
- package/dist/behaviors/registry/atoms/std-search.orb +265 -138
- package/dist/behaviors/registry/atoms/std-selection.orb +311 -220
- package/dist/behaviors/registry/atoms/std-service-custom-bearer.orb +199 -110
- package/dist/behaviors/registry/atoms/std-service-custom-header.orb +206 -117
- package/dist/behaviors/registry/atoms/std-service-custom-noauth.orb +197 -108
- package/dist/behaviors/registry/atoms/std-service-custom-query.orb +193 -104
- package/dist/behaviors/registry/atoms/std-service-email.orb +195 -107
- package/dist/behaviors/registry/atoms/std-service-github.orb +216 -122
- package/dist/behaviors/registry/atoms/std-service-llm.orb +204 -122
- package/dist/behaviors/registry/atoms/std-service-oauth.orb +290 -204
- package/dist/behaviors/registry/atoms/std-service-redis.orb +177 -92
- package/dist/behaviors/registry/atoms/std-service-storage.orb +211 -122
- package/dist/behaviors/registry/atoms/std-service-stripe.orb +236 -154
- package/dist/behaviors/registry/atoms/std-service-twilio.orb +221 -137
- package/dist/behaviors/registry/atoms/std-service-youtube.orb +327 -241
- package/dist/behaviors/registry/atoms/std-simulation-canvas.orb +97 -36
- package/dist/behaviors/registry/atoms/std-sort.orb +284 -207
- package/dist/behaviors/registry/atoms/std-sprite.orb +150 -74
- package/dist/behaviors/registry/atoms/std-tabs.orb +129 -62
- package/dist/behaviors/registry/atoms/std-text-effects.orb +251 -190
- package/dist/behaviors/registry/atoms/std-theme.orb +193 -135
- package/dist/behaviors/registry/atoms/std-timer.orb +320 -344
- package/dist/behaviors/registry/atoms/std-undo.orb +278 -199
- package/dist/behaviors/registry/atoms/std-upload.orb +112 -111
- package/dist/behaviors/registry/atoms/std-validate-on-save.orb +159 -151
- package/dist/behaviors/registry/atoms/std-wizard.orb +445 -336
- package/dist/behaviors/registry/molecules/std-agent-fix-loop.orb +876 -857
- package/dist/behaviors/registry/molecules/std-agent-learner.orb +635 -654
- package/dist/behaviors/registry/molecules/std-agent-planner.orb +581 -548
- package/dist/behaviors/registry/molecules/std-agent-rag.orb +414 -410
- package/dist/behaviors/registry/molecules/std-agent-tool-loop.orb +716 -711
- package/dist/behaviors/registry/molecules/std-batch-selected-list.orb +28 -12
- package/dist/behaviors/registry/molecules/std-builder-game.orb +86 -28
- package/dist/behaviors/registry/molecules/std-calendar-booking.orb +32 -8
- package/dist/behaviors/registry/molecules/std-cart.orb +347 -406
- package/dist/behaviors/registry/molecules/std-classifier-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-dashboard-tabbed.orb +16 -10
- package/dist/behaviors/registry/molecules/std-debugger-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-detail.orb +133 -138
- package/dist/behaviors/registry/molecules/std-drawer-master-list.orb +12 -6
- package/dist/behaviors/registry/molecules/std-event-handler-game.orb +91 -33
- package/dist/behaviors/registry/molecules/std-filtered-list.orb +14 -8
- package/dist/behaviors/registry/molecules/std-form-advanced.orb +242 -153
- package/dist/behaviors/registry/molecules/std-gallery-filtered.orb +16 -10
- package/dist/behaviors/registry/molecules/std-geospatial.orb +175 -122
- package/dist/behaviors/registry/molecules/std-inventory.orb +216 -170
- package/dist/behaviors/registry/molecules/std-list.orb +280 -205
- package/dist/behaviors/registry/molecules/std-messaging.orb +146 -99
- package/dist/behaviors/registry/molecules/std-negotiator-game.orb +95 -37
- package/dist/behaviors/registry/molecules/std-platformer-game.orb +300 -171
- package/dist/behaviors/registry/molecules/std-push-activity-log.orb +32 -8
- package/dist/behaviors/registry/molecules/std-puzzle-game.orb +287 -146
- package/dist/behaviors/registry/molecules/std-quiz.orb +322 -263
- package/dist/behaviors/registry/molecules/std-related-master-detail.orb +21 -15
- package/dist/behaviors/registry/molecules/std-sequencer-game.orb +92 -34
- package/dist/behaviors/registry/molecules/std-service-content-pipeline.orb +268 -267
- package/dist/behaviors/registry/molecules/std-service-custom-api-tester.orb +245 -152
- package/dist/behaviors/registry/molecules/std-service-devops-toolkit.orb +633 -294
- package/dist/behaviors/registry/molecules/std-service-notification-hub.orb +237 -152
- package/dist/behaviors/registry/molecules/std-service-payment-flow.orb +310 -180
- package/dist/behaviors/registry/molecules/std-simulator-game.orb +96 -38
- package/dist/behaviors/registry/molecules/std-turn-based-battle.orb +247 -137
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +60 -9
- package/dist/behaviors/registry/organisms/std-agent-assistant.orb +2810 -1833
- package/dist/behaviors/registry/organisms/std-agent-builder.orb +6401 -4539
- package/dist/behaviors/registry/organisms/std-agent-pipeline.orb +5028 -3497
- package/dist/behaviors/registry/organisms/std-agent-reviewer.orb +2219 -1406
- package/dist/behaviors/registry/organisms/std-agent-tutor.orb +2069 -1384
- package/dist/behaviors/registry/organisms/std-api-gateway.orb +1419 -870
- package/dist/behaviors/registry/organisms/std-arcade-game.orb +488 -231
- package/dist/behaviors/registry/organisms/std-booking-system.orb +2457 -1467
- package/dist/behaviors/registry/organisms/std-cicd-pipeline.orb +1367 -825
- package/dist/behaviors/registry/organisms/std-cms.orb +1549 -566
- package/dist/behaviors/registry/organisms/std-coding-academy.orb +744 -495
- package/dist/behaviors/registry/organisms/std-crm.orb +1997 -1014
- package/dist/behaviors/registry/organisms/std-devops-dashboard.orb +2160 -1606
- package/dist/behaviors/registry/organisms/std-ecommerce.orb +2279 -1153
- package/dist/behaviors/registry/organisms/std-finance-tracker.orb +1375 -727
- package/dist/behaviors/registry/organisms/std-healthcare.orb +2940 -1703
- package/dist/behaviors/registry/organisms/std-helpdesk.orb +1443 -781
- package/dist/behaviors/registry/organisms/std-hr-portal.orb +2361 -1440
- package/dist/behaviors/registry/organisms/std-iot-dashboard.orb +1491 -1026
- package/dist/behaviors/registry/organisms/std-lms.orb +1629 -1046
- package/dist/behaviors/registry/organisms/std-logic-training.orb +321 -134
- package/dist/behaviors/registry/organisms/std-platformer-app.orb +855 -417
- package/dist/behaviors/registry/organisms/std-project-manager.orb +1795 -877
- package/dist/behaviors/registry/organisms/std-puzzle-app.orb +407 -206
- package/dist/behaviors/registry/organisms/std-realtime-chat.orb +1436 -844
- package/dist/behaviors/registry/organisms/std-rpg-game.orb +1522 -1007
- package/dist/behaviors/registry/organisms/std-service-marketplace.orb +2110 -1204
- package/dist/behaviors/registry/organisms/std-service-research-assistant.orb +1285 -1078
- package/dist/behaviors/registry/organisms/std-social-feed.orb +612 -252
- package/dist/behaviors/registry/organisms/std-stem-lab.orb +642 -450
- package/dist/behaviors/registry/organisms/std-strategy-game.orb +893 -650
- package/dist/behaviors/registry/organisms/std-trading-dashboard.orb +1271 -805
- package/dist/index.js +16 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/core.js +16 -4
- package/dist/modules/core.js.map +1 -1
- package/dist/modules/index.js +16 -4
- package/dist/modules/index.js.map +1 -1
- package/dist/registry.js +16 -4
- package/dist/registry.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "std-service-custom-noauth",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-service-custom-noauth as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ServiceCustomNoauthOrbital",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
{
|
|
56
56
|
"name": "statusCode",
|
|
57
57
|
"type": "number",
|
|
58
|
-
"default": 0
|
|
58
|
+
"default": 0.0
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
61
|
"name": "callStatus",
|
|
@@ -71,8 +71,76 @@
|
|
|
71
71
|
"traits": [
|
|
72
72
|
{
|
|
73
73
|
"name": "ServiceCustomNoauthCustomNoauth",
|
|
74
|
-
"linkedEntity": "ServiceCustomNoauth",
|
|
75
74
|
"category": "interaction",
|
|
75
|
+
"linkedEntity": "ServiceCustomNoauth",
|
|
76
|
+
"emits": [
|
|
77
|
+
{
|
|
78
|
+
"event": "ServiceCustomNoauthLoaded",
|
|
79
|
+
"description": "Fired when ServiceCustomNoauth finishes loading",
|
|
80
|
+
"scope": "internal",
|
|
81
|
+
"payload": [
|
|
82
|
+
{
|
|
83
|
+
"name": "id",
|
|
84
|
+
"type": "string"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"name": "name",
|
|
88
|
+
"type": "string"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"name": "description",
|
|
92
|
+
"type": "string"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"name": "status",
|
|
96
|
+
"type": "string"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"name": "createdAt",
|
|
100
|
+
"type": "string"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "endpoint",
|
|
104
|
+
"type": "string"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"name": "method",
|
|
108
|
+
"type": "string"
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "requestBody",
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"name": "responseData",
|
|
116
|
+
"type": "string"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"name": "statusCode",
|
|
120
|
+
"type": "number"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "callStatus",
|
|
124
|
+
"type": "string"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"name": "error",
|
|
128
|
+
"type": "string"
|
|
129
|
+
}
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"event": "ServiceCustomNoauthLoadFailed",
|
|
134
|
+
"description": "Fired when ServiceCustomNoauth fails to load",
|
|
135
|
+
"scope": "internal",
|
|
136
|
+
"payload": [
|
|
137
|
+
{
|
|
138
|
+
"name": "message",
|
|
139
|
+
"type": "string"
|
|
140
|
+
}
|
|
141
|
+
]
|
|
142
|
+
}
|
|
143
|
+
],
|
|
76
144
|
"stateMachine": {
|
|
77
145
|
"states": [
|
|
78
146
|
{
|
|
@@ -96,11 +164,11 @@
|
|
|
96
164
|
},
|
|
97
165
|
{
|
|
98
166
|
"key": "CALL_API",
|
|
99
|
-
"name": "Call
|
|
167
|
+
"name": "Call Api"
|
|
100
168
|
},
|
|
101
169
|
{
|
|
102
170
|
"key": "API_RESPONSE",
|
|
103
|
-
"name": "
|
|
171
|
+
"name": "Api Response",
|
|
104
172
|
"payload": [
|
|
105
173
|
{
|
|
106
174
|
"name": "data",
|
|
@@ -125,13 +193,27 @@
|
|
|
125
193
|
}
|
|
126
194
|
]
|
|
127
195
|
},
|
|
196
|
+
{
|
|
197
|
+
"key": "RESET",
|
|
198
|
+
"name": "Reset"
|
|
199
|
+
},
|
|
128
200
|
{
|
|
129
201
|
"key": "RETRY",
|
|
130
202
|
"name": "Retry"
|
|
131
203
|
},
|
|
132
204
|
{
|
|
133
|
-
"key": "
|
|
134
|
-
"name": "
|
|
205
|
+
"key": "ServiceCustomNoauthLoaded",
|
|
206
|
+
"name": "ServiceCustomNoauth loaded"
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"key": "ServiceCustomNoauthLoadFailed",
|
|
210
|
+
"name": "ServiceCustomNoauth load failed",
|
|
211
|
+
"payload": [
|
|
212
|
+
{
|
|
213
|
+
"name": "message",
|
|
214
|
+
"type": "string"
|
|
215
|
+
}
|
|
216
|
+
]
|
|
135
217
|
}
|
|
136
218
|
],
|
|
137
219
|
"transitions": [
|
|
@@ -142,7 +224,13 @@
|
|
|
142
224
|
"effects": [
|
|
143
225
|
[
|
|
144
226
|
"fetch",
|
|
145
|
-
"ServiceCustomNoauth"
|
|
227
|
+
"ServiceCustomNoauth",
|
|
228
|
+
{
|
|
229
|
+
"emit": {
|
|
230
|
+
"failure": "ServiceCustomNoauthLoadFailed",
|
|
231
|
+
"success": "ServiceCustomNoauthLoaded"
|
|
232
|
+
}
|
|
233
|
+
}
|
|
146
234
|
],
|
|
147
235
|
[
|
|
148
236
|
"render-ui",
|
|
@@ -150,7 +238,6 @@
|
|
|
150
238
|
{
|
|
151
239
|
"type": "stack",
|
|
152
240
|
"direction": "vertical",
|
|
153
|
-
"gap": "lg",
|
|
154
241
|
"align": "center",
|
|
155
242
|
"children": [
|
|
156
243
|
{
|
|
@@ -159,9 +246,9 @@
|
|
|
159
246
|
"size": "lg"
|
|
160
247
|
},
|
|
161
248
|
{
|
|
249
|
+
"variant": "h2",
|
|
162
250
|
"type": "typography",
|
|
163
|
-
"content": "Public API Tester"
|
|
164
|
-
"variant": "h2"
|
|
251
|
+
"content": "Public API Tester"
|
|
165
252
|
},
|
|
166
253
|
{
|
|
167
254
|
"type": "input",
|
|
@@ -170,9 +257,9 @@
|
|
|
170
257
|
"bind": "@entity.endpoint"
|
|
171
258
|
},
|
|
172
259
|
{
|
|
173
|
-
"type": "select",
|
|
174
260
|
"field": "method",
|
|
175
261
|
"bind": "@entity.method",
|
|
262
|
+
"type": "select",
|
|
176
263
|
"options": [
|
|
177
264
|
{
|
|
178
265
|
"label": "GET",
|
|
@@ -187,25 +274,26 @@
|
|
|
187
274
|
"value": "PUT"
|
|
188
275
|
},
|
|
189
276
|
{
|
|
190
|
-
"
|
|
191
|
-
"
|
|
277
|
+
"value": "DELETE",
|
|
278
|
+
"label": "DELETE"
|
|
192
279
|
}
|
|
193
280
|
]
|
|
194
281
|
},
|
|
195
282
|
{
|
|
196
283
|
"type": "textarea",
|
|
197
|
-
"field": "requestBody",
|
|
198
284
|
"placeholder": "JSON request body",
|
|
199
|
-
"bind": "@entity.requestBody"
|
|
285
|
+
"bind": "@entity.requestBody",
|
|
286
|
+
"field": "requestBody"
|
|
200
287
|
},
|
|
201
288
|
{
|
|
202
|
-
"type": "button",
|
|
203
|
-
"label": "Send Request",
|
|
204
|
-
"event": "CALL_API",
|
|
205
289
|
"variant": "primary",
|
|
206
|
-
"icon": "send"
|
|
290
|
+
"icon": "send",
|
|
291
|
+
"event": "CALL_API",
|
|
292
|
+
"type": "button",
|
|
293
|
+
"label": "Send Request"
|
|
207
294
|
}
|
|
208
|
-
]
|
|
295
|
+
],
|
|
296
|
+
"gap": "lg"
|
|
209
297
|
}
|
|
210
298
|
]
|
|
211
299
|
]
|
|
@@ -219,9 +307,9 @@
|
|
|
219
307
|
"render-ui",
|
|
220
308
|
"main",
|
|
221
309
|
{
|
|
310
|
+
"message": "Sending request to servicecustomnoauth endpoint...",
|
|
222
311
|
"type": "loading-state",
|
|
223
|
-
"title": "Calling API..."
|
|
224
|
-
"message": "Sending request to servicecustomnoauth endpoint..."
|
|
312
|
+
"title": "Calling API..."
|
|
225
313
|
}
|
|
226
314
|
],
|
|
227
315
|
[
|
|
@@ -229,9 +317,9 @@
|
|
|
229
317
|
"custom-noauth-api",
|
|
230
318
|
"execute",
|
|
231
319
|
{
|
|
232
|
-
"endpoint": "@entity.endpoint",
|
|
233
320
|
"method": "@entity.method",
|
|
234
|
-
"body": "@entity.requestBody"
|
|
321
|
+
"body": "@entity.requestBody",
|
|
322
|
+
"endpoint": "@entity.endpoint"
|
|
235
323
|
}
|
|
236
324
|
]
|
|
237
325
|
]
|
|
@@ -255,25 +343,24 @@
|
|
|
255
343
|
"render-ui",
|
|
256
344
|
"main",
|
|
257
345
|
{
|
|
346
|
+
"align": "center",
|
|
258
347
|
"type": "stack",
|
|
259
348
|
"direction": "vertical",
|
|
260
|
-
"gap": "lg",
|
|
261
|
-
"align": "center",
|
|
262
349
|
"children": [
|
|
263
350
|
{
|
|
264
|
-
"type": "icon",
|
|
265
351
|
"name": "check-circle",
|
|
266
|
-
"size": "lg"
|
|
352
|
+
"size": "lg",
|
|
353
|
+
"type": "icon"
|
|
267
354
|
},
|
|
268
355
|
{
|
|
269
356
|
"type": "typography",
|
|
270
|
-
"
|
|
271
|
-
"
|
|
357
|
+
"variant": "h2",
|
|
358
|
+
"content": "Response"
|
|
272
359
|
},
|
|
273
360
|
{
|
|
274
|
-
"type": "badge",
|
|
275
361
|
"content": "@entity.statusCode",
|
|
276
|
-
"variant": "info"
|
|
362
|
+
"variant": "info",
|
|
363
|
+
"type": "badge"
|
|
277
364
|
},
|
|
278
365
|
{
|
|
279
366
|
"type": "code",
|
|
@@ -281,13 +368,14 @@
|
|
|
281
368
|
"language": "json"
|
|
282
369
|
},
|
|
283
370
|
{
|
|
371
|
+
"variant": "ghost",
|
|
372
|
+
"event": "RESET",
|
|
284
373
|
"type": "button",
|
|
285
374
|
"label": "New Request",
|
|
286
|
-
"event": "RESET",
|
|
287
|
-
"variant": "ghost",
|
|
288
375
|
"icon": "rotate-ccw"
|
|
289
376
|
}
|
|
290
|
-
]
|
|
377
|
+
],
|
|
378
|
+
"gap": "lg"
|
|
291
379
|
}
|
|
292
380
|
]
|
|
293
381
|
]
|
|
@@ -306,89 +394,89 @@
|
|
|
306
394
|
"render-ui",
|
|
307
395
|
"main",
|
|
308
396
|
{
|
|
309
|
-
"type": "error-state",
|
|
310
|
-
"title": "Request Failed",
|
|
311
397
|
"message": "@entity.error",
|
|
398
|
+
"title": "Request Failed",
|
|
399
|
+
"type": "error-state",
|
|
312
400
|
"onRetry": "RETRY"
|
|
313
401
|
}
|
|
314
402
|
]
|
|
315
403
|
]
|
|
316
404
|
},
|
|
317
405
|
{
|
|
318
|
-
"from": "
|
|
406
|
+
"from": "complete",
|
|
319
407
|
"to": "idle",
|
|
320
|
-
"event": "
|
|
408
|
+
"event": "RESET",
|
|
321
409
|
"effects": [
|
|
322
410
|
[
|
|
323
411
|
"render-ui",
|
|
324
412
|
"main",
|
|
325
413
|
{
|
|
326
414
|
"type": "stack",
|
|
327
|
-
"direction": "vertical",
|
|
328
|
-
"gap": "lg",
|
|
329
|
-
"align": "center",
|
|
330
415
|
"children": [
|
|
331
416
|
{
|
|
332
|
-
"type": "icon",
|
|
333
417
|
"name": "globe",
|
|
334
|
-
"size": "lg"
|
|
418
|
+
"size": "lg",
|
|
419
|
+
"type": "icon"
|
|
335
420
|
},
|
|
336
421
|
{
|
|
337
|
-
"
|
|
422
|
+
"variant": "h2",
|
|
338
423
|
"content": "Public API Tester",
|
|
339
|
-
"
|
|
424
|
+
"type": "typography"
|
|
340
425
|
},
|
|
341
426
|
{
|
|
342
|
-
"type": "input",
|
|
343
|
-
"field": "endpoint",
|
|
344
427
|
"placeholder": "/users",
|
|
345
|
-
"bind": "@entity.endpoint"
|
|
428
|
+
"bind": "@entity.endpoint",
|
|
429
|
+
"field": "endpoint",
|
|
430
|
+
"type": "input"
|
|
346
431
|
},
|
|
347
432
|
{
|
|
348
|
-
"type": "select",
|
|
349
|
-
"field": "method",
|
|
350
433
|
"bind": "@entity.method",
|
|
434
|
+
"field": "method",
|
|
435
|
+
"type": "select",
|
|
351
436
|
"options": [
|
|
352
437
|
{
|
|
353
|
-
"
|
|
354
|
-
"
|
|
438
|
+
"value": "GET",
|
|
439
|
+
"label": "GET"
|
|
355
440
|
},
|
|
356
441
|
{
|
|
357
|
-
"
|
|
358
|
-
"
|
|
442
|
+
"value": "POST",
|
|
443
|
+
"label": "POST"
|
|
359
444
|
},
|
|
360
445
|
{
|
|
361
|
-
"
|
|
362
|
-
"
|
|
446
|
+
"value": "PUT",
|
|
447
|
+
"label": "PUT"
|
|
363
448
|
},
|
|
364
449
|
{
|
|
365
|
-
"
|
|
366
|
-
"
|
|
450
|
+
"value": "DELETE",
|
|
451
|
+
"label": "DELETE"
|
|
367
452
|
}
|
|
368
453
|
]
|
|
369
454
|
},
|
|
370
455
|
{
|
|
371
|
-
"type": "textarea",
|
|
372
|
-
"field": "requestBody",
|
|
373
456
|
"placeholder": "JSON request body",
|
|
374
|
-
"
|
|
457
|
+
"type": "textarea",
|
|
458
|
+
"bind": "@entity.requestBody",
|
|
459
|
+
"field": "requestBody"
|
|
375
460
|
},
|
|
376
461
|
{
|
|
377
462
|
"type": "button",
|
|
378
463
|
"label": "Send Request",
|
|
379
|
-
"event": "CALL_API",
|
|
380
464
|
"variant": "primary",
|
|
381
|
-
"icon": "send"
|
|
465
|
+
"icon": "send",
|
|
466
|
+
"event": "CALL_API"
|
|
382
467
|
}
|
|
383
|
-
]
|
|
468
|
+
],
|
|
469
|
+
"direction": "vertical",
|
|
470
|
+
"align": "center",
|
|
471
|
+
"gap": "lg"
|
|
384
472
|
}
|
|
385
473
|
]
|
|
386
474
|
]
|
|
387
475
|
},
|
|
388
476
|
{
|
|
389
|
-
"from": "
|
|
477
|
+
"from": "error",
|
|
390
478
|
"to": "idle",
|
|
391
|
-
"event": "
|
|
479
|
+
"event": "RETRY",
|
|
392
480
|
"effects": [
|
|
393
481
|
[
|
|
394
482
|
"render-ui",
|
|
@@ -400,24 +488,23 @@
|
|
|
400
488
|
"align": "center",
|
|
401
489
|
"children": [
|
|
402
490
|
{
|
|
403
|
-
"type": "icon",
|
|
404
491
|
"name": "globe",
|
|
405
|
-
"size": "lg"
|
|
492
|
+
"size": "lg",
|
|
493
|
+
"type": "icon"
|
|
406
494
|
},
|
|
407
495
|
{
|
|
408
|
-
"
|
|
496
|
+
"variant": "h2",
|
|
409
497
|
"content": "Public API Tester",
|
|
410
|
-
"
|
|
498
|
+
"type": "typography"
|
|
411
499
|
},
|
|
412
500
|
{
|
|
413
|
-
"type": "input",
|
|
414
501
|
"field": "endpoint",
|
|
415
|
-
"
|
|
416
|
-
"bind": "@entity.endpoint"
|
|
502
|
+
"type": "input",
|
|
503
|
+
"bind": "@entity.endpoint",
|
|
504
|
+
"placeholder": "/users"
|
|
417
505
|
},
|
|
418
506
|
{
|
|
419
507
|
"type": "select",
|
|
420
|
-
"field": "method",
|
|
421
508
|
"bind": "@entity.method",
|
|
422
509
|
"options": [
|
|
423
510
|
{
|
|
@@ -425,31 +512,32 @@
|
|
|
425
512
|
"value": "GET"
|
|
426
513
|
},
|
|
427
514
|
{
|
|
428
|
-
"
|
|
429
|
-
"
|
|
515
|
+
"value": "POST",
|
|
516
|
+
"label": "POST"
|
|
430
517
|
},
|
|
431
518
|
{
|
|
432
519
|
"label": "PUT",
|
|
433
520
|
"value": "PUT"
|
|
434
521
|
},
|
|
435
522
|
{
|
|
436
|
-
"
|
|
437
|
-
"
|
|
523
|
+
"value": "DELETE",
|
|
524
|
+
"label": "DELETE"
|
|
438
525
|
}
|
|
439
|
-
]
|
|
526
|
+
],
|
|
527
|
+
"field": "method"
|
|
440
528
|
},
|
|
441
529
|
{
|
|
442
530
|
"type": "textarea",
|
|
443
|
-
"field": "requestBody",
|
|
444
531
|
"placeholder": "JSON request body",
|
|
445
|
-
"bind": "@entity.requestBody"
|
|
532
|
+
"bind": "@entity.requestBody",
|
|
533
|
+
"field": "requestBody"
|
|
446
534
|
},
|
|
447
535
|
{
|
|
448
|
-
"type": "button",
|
|
449
536
|
"label": "Send Request",
|
|
450
|
-
"event": "CALL_API",
|
|
451
537
|
"variant": "primary",
|
|
452
|
-
"
|
|
538
|
+
"event": "CALL_API",
|
|
539
|
+
"icon": "send",
|
|
540
|
+
"type": "button"
|
|
453
541
|
}
|
|
454
542
|
]
|
|
455
543
|
}
|
|
@@ -465,39 +553,36 @@
|
|
|
465
553
|
"render-ui",
|
|
466
554
|
"main",
|
|
467
555
|
{
|
|
468
|
-
"type": "stack",
|
|
469
556
|
"direction": "vertical",
|
|
470
|
-
"gap": "lg",
|
|
471
|
-
"align": "center",
|
|
472
557
|
"children": [
|
|
473
558
|
{
|
|
559
|
+
"size": "lg",
|
|
474
560
|
"type": "icon",
|
|
475
|
-
"name": "globe"
|
|
476
|
-
"size": "lg"
|
|
561
|
+
"name": "globe"
|
|
477
562
|
},
|
|
478
563
|
{
|
|
479
|
-
"
|
|
564
|
+
"variant": "h2",
|
|
480
565
|
"content": "Public API Tester",
|
|
481
|
-
"
|
|
566
|
+
"type": "typography"
|
|
482
567
|
},
|
|
483
568
|
{
|
|
484
569
|
"type": "input",
|
|
485
|
-
"field": "endpoint",
|
|
486
570
|
"placeholder": "/users",
|
|
571
|
+
"field": "endpoint",
|
|
487
572
|
"bind": "@entity.endpoint"
|
|
488
573
|
},
|
|
489
574
|
{
|
|
490
|
-
"type": "select",
|
|
491
575
|
"field": "method",
|
|
576
|
+
"type": "select",
|
|
492
577
|
"bind": "@entity.method",
|
|
493
578
|
"options": [
|
|
494
579
|
{
|
|
495
|
-
"
|
|
496
|
-
"
|
|
580
|
+
"value": "GET",
|
|
581
|
+
"label": "GET"
|
|
497
582
|
},
|
|
498
583
|
{
|
|
499
|
-
"
|
|
500
|
-
"
|
|
584
|
+
"value": "POST",
|
|
585
|
+
"label": "POST"
|
|
501
586
|
},
|
|
502
587
|
{
|
|
503
588
|
"label": "PUT",
|
|
@@ -511,24 +596,28 @@
|
|
|
511
596
|
},
|
|
512
597
|
{
|
|
513
598
|
"type": "textarea",
|
|
599
|
+
"bind": "@entity.requestBody",
|
|
514
600
|
"field": "requestBody",
|
|
515
|
-
"placeholder": "JSON request body"
|
|
516
|
-
"bind": "@entity.requestBody"
|
|
601
|
+
"placeholder": "JSON request body"
|
|
517
602
|
},
|
|
518
603
|
{
|
|
519
|
-
"type": "button",
|
|
520
|
-
"label": "Send Request",
|
|
521
|
-
"event": "CALL_API",
|
|
522
604
|
"variant": "primary",
|
|
523
|
-
"icon": "send"
|
|
605
|
+
"icon": "send",
|
|
606
|
+
"event": "CALL_API",
|
|
607
|
+
"type": "button",
|
|
608
|
+
"label": "Send Request"
|
|
524
609
|
}
|
|
525
|
-
]
|
|
610
|
+
],
|
|
611
|
+
"type": "stack",
|
|
612
|
+
"align": "center",
|
|
613
|
+
"gap": "lg"
|
|
526
614
|
}
|
|
527
615
|
]
|
|
528
616
|
]
|
|
529
617
|
}
|
|
530
618
|
]
|
|
531
|
-
}
|
|
619
|
+
},
|
|
620
|
+
"scope": "instance"
|
|
532
621
|
}
|
|
533
622
|
],
|
|
534
623
|
"pages": [
|
|
@@ -544,4 +633,4 @@
|
|
|
544
633
|
]
|
|
545
634
|
}
|
|
546
635
|
]
|
|
547
|
-
}
|
|
636
|
+
}
|