@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-api-tester",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "std-service-custom-api-tester as a Function",
|
|
5
5
|
"orbitals": [
|
|
6
6
|
{
|
|
7
7
|
"name": "ServiceCustomApiTesterOrbital",
|
|
@@ -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": "authType",
|
|
@@ -76,8 +76,80 @@
|
|
|
76
76
|
"traits": [
|
|
77
77
|
{
|
|
78
78
|
"name": "ServiceCustomApiTesterApiTester",
|
|
79
|
-
"linkedEntity": "ServiceCustomApiTester",
|
|
80
79
|
"category": "interaction",
|
|
80
|
+
"linkedEntity": "ServiceCustomApiTester",
|
|
81
|
+
"emits": [
|
|
82
|
+
{
|
|
83
|
+
"event": "ServiceCustomApiTesterLoaded",
|
|
84
|
+
"description": "Fired when ServiceCustomApiTester finishes loading",
|
|
85
|
+
"scope": "internal",
|
|
86
|
+
"payload": [
|
|
87
|
+
{
|
|
88
|
+
"name": "id",
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "name",
|
|
93
|
+
"type": "string"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "description",
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"name": "status",
|
|
101
|
+
"type": "string"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "createdAt",
|
|
105
|
+
"type": "string"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "endpoint",
|
|
109
|
+
"type": "string"
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "method",
|
|
113
|
+
"type": "string"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"name": "requestBody",
|
|
117
|
+
"type": "string"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "responseData",
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "statusCode",
|
|
125
|
+
"type": "number"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "authType",
|
|
129
|
+
"type": "string"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "callStatus",
|
|
133
|
+
"type": "string"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "error",
|
|
137
|
+
"type": "string"
|
|
138
|
+
}
|
|
139
|
+
]
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"event": "ServiceCustomApiTesterLoadFailed",
|
|
143
|
+
"description": "Fired when ServiceCustomApiTester fails to load",
|
|
144
|
+
"scope": "internal",
|
|
145
|
+
"payload": [
|
|
146
|
+
{
|
|
147
|
+
"name": "message",
|
|
148
|
+
"type": "string"
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
}
|
|
152
|
+
],
|
|
81
153
|
"stateMachine": {
|
|
82
154
|
"states": [
|
|
83
155
|
{
|
|
@@ -101,23 +173,23 @@
|
|
|
101
173
|
},
|
|
102
174
|
{
|
|
103
175
|
"key": "CALL_HEADER_API",
|
|
104
|
-
"name": "Call Header
|
|
176
|
+
"name": "Call Header Api"
|
|
105
177
|
},
|
|
106
178
|
{
|
|
107
179
|
"key": "CALL_BEARER_API",
|
|
108
|
-
"name": "Call Bearer
|
|
180
|
+
"name": "Call Bearer Api"
|
|
109
181
|
},
|
|
110
182
|
{
|
|
111
183
|
"key": "CALL_QUERY_API",
|
|
112
|
-
"name": "Call Query
|
|
184
|
+
"name": "Call Query Api"
|
|
113
185
|
},
|
|
114
186
|
{
|
|
115
187
|
"key": "CALL_NOAUTH_API",
|
|
116
|
-
"name": "Call
|
|
188
|
+
"name": "Call Noauth Api"
|
|
117
189
|
},
|
|
118
190
|
{
|
|
119
191
|
"key": "API_RESPONSE",
|
|
120
|
-
"name": "
|
|
192
|
+
"name": "Api Response",
|
|
121
193
|
"payload": [
|
|
122
194
|
{
|
|
123
195
|
"name": "data",
|
|
@@ -142,13 +214,27 @@
|
|
|
142
214
|
}
|
|
143
215
|
]
|
|
144
216
|
},
|
|
217
|
+
{
|
|
218
|
+
"key": "RESET",
|
|
219
|
+
"name": "Reset"
|
|
220
|
+
},
|
|
145
221
|
{
|
|
146
222
|
"key": "RETRY",
|
|
147
223
|
"name": "Retry"
|
|
148
224
|
},
|
|
149
225
|
{
|
|
150
|
-
"key": "
|
|
151
|
-
"name": "
|
|
226
|
+
"key": "ServiceCustomApiTesterLoaded",
|
|
227
|
+
"name": "ServiceCustomApiTester loaded"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"key": "ServiceCustomApiTesterLoadFailed",
|
|
231
|
+
"name": "ServiceCustomApiTester load failed",
|
|
232
|
+
"payload": [
|
|
233
|
+
{
|
|
234
|
+
"name": "message",
|
|
235
|
+
"type": "string"
|
|
236
|
+
}
|
|
237
|
+
]
|
|
152
238
|
}
|
|
153
239
|
],
|
|
154
240
|
"transitions": [
|
|
@@ -159,37 +245,37 @@
|
|
|
159
245
|
"effects": [
|
|
160
246
|
[
|
|
161
247
|
"fetch",
|
|
162
|
-
"ServiceCustomApiTester"
|
|
248
|
+
"ServiceCustomApiTester",
|
|
249
|
+
{
|
|
250
|
+
"emit": {
|
|
251
|
+
"failure": "ServiceCustomApiTesterLoadFailed",
|
|
252
|
+
"success": "ServiceCustomApiTesterLoaded"
|
|
253
|
+
}
|
|
254
|
+
}
|
|
163
255
|
],
|
|
164
256
|
[
|
|
165
257
|
"render-ui",
|
|
166
258
|
"main",
|
|
167
259
|
{
|
|
168
|
-
"type": "stack",
|
|
169
|
-
"direction": "vertical",
|
|
170
|
-
"gap": "lg",
|
|
171
|
-
"align": "center",
|
|
172
260
|
"children": [
|
|
173
261
|
{
|
|
174
|
-
"type": "icon",
|
|
175
262
|
"name": "globe",
|
|
263
|
+
"type": "icon",
|
|
176
264
|
"size": "lg"
|
|
177
265
|
},
|
|
178
266
|
{
|
|
179
|
-
"type": "typography",
|
|
180
267
|
"content": "Unified API Tester",
|
|
268
|
+
"type": "typography",
|
|
181
269
|
"variant": "h2"
|
|
182
270
|
},
|
|
183
271
|
{
|
|
272
|
+
"bind": "@entity.endpoint",
|
|
184
273
|
"type": "input",
|
|
185
274
|
"field": "endpoint",
|
|
186
|
-
"placeholder": "/users"
|
|
187
|
-
"bind": "@entity.endpoint"
|
|
275
|
+
"placeholder": "/users"
|
|
188
276
|
},
|
|
189
277
|
{
|
|
190
|
-
"type": "select",
|
|
191
278
|
"field": "method",
|
|
192
|
-
"bind": "@entity.method",
|
|
193
279
|
"options": [
|
|
194
280
|
{
|
|
195
281
|
"label": "GET",
|
|
@@ -207,7 +293,9 @@
|
|
|
207
293
|
"label": "DELETE",
|
|
208
294
|
"value": "DELETE"
|
|
209
295
|
}
|
|
210
|
-
]
|
|
296
|
+
],
|
|
297
|
+
"type": "select",
|
|
298
|
+
"bind": "@entity.method"
|
|
211
299
|
},
|
|
212
300
|
{
|
|
213
301
|
"type": "textarea",
|
|
@@ -225,41 +313,45 @@
|
|
|
225
313
|
},
|
|
226
314
|
{
|
|
227
315
|
"type": "stack",
|
|
228
|
-
"direction": "horizontal",
|
|
229
|
-
"gap": "sm",
|
|
230
316
|
"justify": "center",
|
|
231
317
|
"children": [
|
|
232
318
|
{
|
|
233
|
-
"type": "button",
|
|
234
319
|
"label": "Header API Key",
|
|
235
|
-
"event": "CALL_HEADER_API",
|
|
236
320
|
"variant": "primary",
|
|
237
|
-
"icon": "key"
|
|
321
|
+
"icon": "key",
|
|
322
|
+
"event": "CALL_HEADER_API",
|
|
323
|
+
"type": "button"
|
|
238
324
|
},
|
|
239
325
|
{
|
|
240
326
|
"type": "button",
|
|
327
|
+
"icon": "shield",
|
|
241
328
|
"label": "Bearer Token",
|
|
242
|
-
"event": "CALL_BEARER_API",
|
|
243
329
|
"variant": "primary",
|
|
244
|
-
"
|
|
330
|
+
"event": "CALL_BEARER_API"
|
|
245
331
|
},
|
|
246
332
|
{
|
|
247
333
|
"type": "button",
|
|
248
|
-
"label": "Query Param",
|
|
249
|
-
"event": "CALL_QUERY_API",
|
|
250
334
|
"variant": "primary",
|
|
251
|
-
"icon": "search"
|
|
335
|
+
"icon": "search",
|
|
336
|
+
"label": "Query Param",
|
|
337
|
+
"event": "CALL_QUERY_API"
|
|
252
338
|
},
|
|
253
339
|
{
|
|
254
340
|
"type": "button",
|
|
255
|
-
"label": "No Auth",
|
|
256
341
|
"event": "CALL_NOAUTH_API",
|
|
342
|
+
"label": "No Auth",
|
|
257
343
|
"variant": "primary",
|
|
258
344
|
"icon": "unlock"
|
|
259
345
|
}
|
|
260
|
-
]
|
|
346
|
+
],
|
|
347
|
+
"gap": "sm",
|
|
348
|
+
"direction": "horizontal"
|
|
261
349
|
}
|
|
262
|
-
]
|
|
350
|
+
],
|
|
351
|
+
"gap": "lg",
|
|
352
|
+
"type": "stack",
|
|
353
|
+
"align": "center",
|
|
354
|
+
"direction": "vertical"
|
|
263
355
|
}
|
|
264
356
|
]
|
|
265
357
|
]
|
|
@@ -279,8 +371,8 @@
|
|
|
279
371
|
"main",
|
|
280
372
|
{
|
|
281
373
|
"type": "loading-state",
|
|
282
|
-
"
|
|
283
|
-
"
|
|
374
|
+
"message": "Sending request to servicecustomapitester endpoint...",
|
|
375
|
+
"title": "Calling API..."
|
|
284
376
|
}
|
|
285
377
|
],
|
|
286
378
|
[
|
|
@@ -288,9 +380,9 @@
|
|
|
288
380
|
"custom-header-api",
|
|
289
381
|
"execute",
|
|
290
382
|
{
|
|
383
|
+
"body": "@entity.requestBody",
|
|
291
384
|
"endpoint": "@entity.endpoint",
|
|
292
|
-
"method": "@entity.method"
|
|
293
|
-
"body": "@entity.requestBody"
|
|
385
|
+
"method": "@entity.method"
|
|
294
386
|
}
|
|
295
387
|
]
|
|
296
388
|
]
|
|
@@ -309,9 +401,9 @@
|
|
|
309
401
|
"render-ui",
|
|
310
402
|
"main",
|
|
311
403
|
{
|
|
404
|
+
"message": "Sending request to servicecustomapitester endpoint...",
|
|
312
405
|
"type": "loading-state",
|
|
313
|
-
"title": "Calling API..."
|
|
314
|
-
"message": "Sending request to servicecustomapitester endpoint..."
|
|
406
|
+
"title": "Calling API..."
|
|
315
407
|
}
|
|
316
408
|
],
|
|
317
409
|
[
|
|
@@ -350,8 +442,8 @@
|
|
|
350
442
|
"custom-query-api",
|
|
351
443
|
"execute",
|
|
352
444
|
{
|
|
353
|
-
"endpoint": "@entity.endpoint",
|
|
354
445
|
"method": "@entity.method",
|
|
446
|
+
"endpoint": "@entity.endpoint",
|
|
355
447
|
"body": "@entity.requestBody"
|
|
356
448
|
}
|
|
357
449
|
]
|
|
@@ -381,8 +473,8 @@
|
|
|
381
473
|
"custom-noauth-api",
|
|
382
474
|
"execute",
|
|
383
475
|
{
|
|
384
|
-
"endpoint": "@entity.endpoint",
|
|
385
476
|
"method": "@entity.method",
|
|
477
|
+
"endpoint": "@entity.endpoint",
|
|
386
478
|
"body": "@entity.requestBody"
|
|
387
479
|
}
|
|
388
480
|
]
|
|
@@ -408,14 +500,11 @@
|
|
|
408
500
|
"main",
|
|
409
501
|
{
|
|
410
502
|
"type": "stack",
|
|
411
|
-
"direction": "vertical",
|
|
412
|
-
"gap": "lg",
|
|
413
|
-
"align": "center",
|
|
414
503
|
"children": [
|
|
415
504
|
{
|
|
505
|
+
"size": "lg",
|
|
416
506
|
"type": "icon",
|
|
417
|
-
"name": "check-circle"
|
|
418
|
-
"size": "lg"
|
|
507
|
+
"name": "check-circle"
|
|
419
508
|
},
|
|
420
509
|
{
|
|
421
510
|
"type": "typography",
|
|
@@ -434,9 +523,9 @@
|
|
|
434
523
|
"variant": "info"
|
|
435
524
|
},
|
|
436
525
|
{
|
|
437
|
-
"type": "badge",
|
|
438
526
|
"content": "@entity.statusCode",
|
|
439
|
-
"variant": "info"
|
|
527
|
+
"variant": "info",
|
|
528
|
+
"type": "badge"
|
|
440
529
|
}
|
|
441
530
|
]
|
|
442
531
|
},
|
|
@@ -446,13 +535,16 @@
|
|
|
446
535
|
"language": "json"
|
|
447
536
|
},
|
|
448
537
|
{
|
|
449
|
-
"type": "button",
|
|
450
|
-
"label": "New Request",
|
|
451
538
|
"event": "RESET",
|
|
452
539
|
"variant": "ghost",
|
|
453
|
-
"icon": "rotate-ccw"
|
|
540
|
+
"icon": "rotate-ccw",
|
|
541
|
+
"type": "button",
|
|
542
|
+
"label": "New Request"
|
|
454
543
|
}
|
|
455
|
-
]
|
|
544
|
+
],
|
|
545
|
+
"gap": "lg",
|
|
546
|
+
"align": "center",
|
|
547
|
+
"direction": "vertical"
|
|
456
548
|
}
|
|
457
549
|
]
|
|
458
550
|
]
|
|
@@ -480,23 +572,21 @@
|
|
|
480
572
|
]
|
|
481
573
|
},
|
|
482
574
|
{
|
|
483
|
-
"from": "
|
|
575
|
+
"from": "complete",
|
|
484
576
|
"to": "idle",
|
|
485
|
-
"event": "
|
|
577
|
+
"event": "RESET",
|
|
486
578
|
"effects": [
|
|
487
579
|
[
|
|
488
580
|
"render-ui",
|
|
489
581
|
"main",
|
|
490
582
|
{
|
|
491
|
-
"type": "stack",
|
|
492
|
-
"direction": "vertical",
|
|
493
|
-
"gap": "lg",
|
|
494
583
|
"align": "center",
|
|
584
|
+
"gap": "lg",
|
|
495
585
|
"children": [
|
|
496
586
|
{
|
|
497
|
-
"type": "icon",
|
|
498
587
|
"name": "globe",
|
|
499
|
-
"size": "lg"
|
|
588
|
+
"size": "lg",
|
|
589
|
+
"type": "icon"
|
|
500
590
|
},
|
|
501
591
|
{
|
|
502
592
|
"type": "typography",
|
|
@@ -505,63 +595,62 @@
|
|
|
505
595
|
},
|
|
506
596
|
{
|
|
507
597
|
"type": "input",
|
|
598
|
+
"bind": "@entity.endpoint",
|
|
508
599
|
"field": "endpoint",
|
|
509
|
-
"placeholder": "/users"
|
|
510
|
-
"bind": "@entity.endpoint"
|
|
600
|
+
"placeholder": "/users"
|
|
511
601
|
},
|
|
512
602
|
{
|
|
513
|
-
"type": "select",
|
|
514
603
|
"field": "method",
|
|
515
604
|
"bind": "@entity.method",
|
|
605
|
+
"type": "select",
|
|
516
606
|
"options": [
|
|
517
607
|
{
|
|
518
608
|
"label": "GET",
|
|
519
609
|
"value": "GET"
|
|
520
610
|
},
|
|
521
611
|
{
|
|
522
|
-
"
|
|
523
|
-
"
|
|
612
|
+
"value": "POST",
|
|
613
|
+
"label": "POST"
|
|
524
614
|
},
|
|
525
615
|
{
|
|
526
616
|
"label": "PUT",
|
|
527
617
|
"value": "PUT"
|
|
528
618
|
},
|
|
529
619
|
{
|
|
530
|
-
"
|
|
531
|
-
"
|
|
620
|
+
"value": "DELETE",
|
|
621
|
+
"label": "DELETE"
|
|
532
622
|
}
|
|
533
623
|
]
|
|
534
624
|
},
|
|
535
625
|
{
|
|
536
|
-
"type": "textarea",
|
|
537
626
|
"field": "requestBody",
|
|
627
|
+
"bind": "@entity.requestBody",
|
|
538
628
|
"placeholder": "Request body (JSON)",
|
|
539
|
-
"
|
|
629
|
+
"type": "textarea"
|
|
540
630
|
},
|
|
541
631
|
{
|
|
542
632
|
"type": "divider"
|
|
543
633
|
},
|
|
544
634
|
{
|
|
545
|
-
"type": "typography",
|
|
546
635
|
"content": "Select Auth Type",
|
|
547
|
-
"variant": "h4"
|
|
636
|
+
"variant": "h4",
|
|
637
|
+
"type": "typography"
|
|
548
638
|
},
|
|
549
639
|
{
|
|
550
640
|
"type": "stack",
|
|
551
641
|
"direction": "horizontal",
|
|
552
642
|
"gap": "sm",
|
|
553
|
-
"justify": "center",
|
|
554
643
|
"children": [
|
|
555
644
|
{
|
|
556
645
|
"type": "button",
|
|
557
|
-
"label": "Header API Key",
|
|
558
646
|
"event": "CALL_HEADER_API",
|
|
647
|
+
"label": "Header API Key",
|
|
559
648
|
"variant": "primary",
|
|
560
649
|
"icon": "key"
|
|
561
650
|
},
|
|
562
651
|
{
|
|
563
|
-
"type": "button",
|
|
564
652
|
"label": "Bearer Token",
|
|
653
|
+
"type": "button",
|
|
565
654
|
"event": "CALL_BEARER_API",
|
|
566
655
|
"variant": "primary",
|
|
567
656
|
"icon": "shield"
|
|
@@ -574,52 +663,51 @@
|
|
|
574
663
|
"icon": "search"
|
|
575
664
|
},
|
|
576
665
|
{
|
|
577
|
-
"
|
|
578
|
-
"label": "No Auth",
|
|
666
|
+
"icon": "unlock",
|
|
579
667
|
"event": "CALL_NOAUTH_API",
|
|
580
|
-
"
|
|
581
|
-
"
|
|
668
|
+
"label": "No Auth",
|
|
669
|
+
"type": "button",
|
|
670
|
+
"variant": "primary"
|
|
582
671
|
}
|
|
583
|
-
]
|
|
672
|
+
],
|
|
673
|
+
"justify": "center"
|
|
584
674
|
}
|
|
585
|
-
]
|
|
675
|
+
],
|
|
676
|
+
"direction": "vertical",
|
|
677
|
+
"type": "stack"
|
|
586
678
|
}
|
|
587
679
|
]
|
|
588
680
|
]
|
|
589
681
|
},
|
|
590
682
|
{
|
|
591
|
-
"from": "
|
|
683
|
+
"from": "error",
|
|
592
684
|
"to": "idle",
|
|
593
|
-
"event": "
|
|
685
|
+
"event": "RETRY",
|
|
594
686
|
"effects": [
|
|
595
687
|
[
|
|
596
688
|
"render-ui",
|
|
597
689
|
"main",
|
|
598
690
|
{
|
|
599
|
-
"type": "stack",
|
|
600
|
-
"direction": "vertical",
|
|
601
|
-
"gap": "lg",
|
|
602
|
-
"align": "center",
|
|
603
691
|
"children": [
|
|
604
692
|
{
|
|
693
|
+
"size": "lg",
|
|
605
694
|
"type": "icon",
|
|
606
|
-
"name": "globe"
|
|
607
|
-
"size": "lg"
|
|
695
|
+
"name": "globe"
|
|
608
696
|
},
|
|
609
697
|
{
|
|
698
|
+
"variant": "h2",
|
|
610
699
|
"type": "typography",
|
|
611
|
-
"content": "Unified API Tester"
|
|
612
|
-
"variant": "h2"
|
|
700
|
+
"content": "Unified API Tester"
|
|
613
701
|
},
|
|
614
702
|
{
|
|
615
703
|
"type": "input",
|
|
704
|
+
"bind": "@entity.endpoint",
|
|
616
705
|
"field": "endpoint",
|
|
617
|
-
"placeholder": "/users"
|
|
618
|
-
"bind": "@entity.endpoint"
|
|
706
|
+
"placeholder": "/users"
|
|
619
707
|
},
|
|
620
708
|
{
|
|
621
|
-
"type": "select",
|
|
622
709
|
"field": "method",
|
|
710
|
+
"type": "select",
|
|
623
711
|
"bind": "@entity.method",
|
|
624
712
|
"options": [
|
|
625
713
|
{
|
|
@@ -631,8 +719,8 @@
|
|
|
631
719
|
"value": "POST"
|
|
632
720
|
},
|
|
633
721
|
{
|
|
634
|
-
"
|
|
635
|
-
"
|
|
722
|
+
"value": "PUT",
|
|
723
|
+
"label": "PUT"
|
|
636
724
|
},
|
|
637
725
|
{
|
|
638
726
|
"label": "DELETE",
|
|
@@ -643,54 +731,58 @@
|
|
|
643
731
|
{
|
|
644
732
|
"type": "textarea",
|
|
645
733
|
"field": "requestBody",
|
|
646
|
-
"
|
|
647
|
-
"
|
|
734
|
+
"bind": "@entity.requestBody",
|
|
735
|
+
"placeholder": "Request body (JSON)"
|
|
648
736
|
},
|
|
649
737
|
{
|
|
650
738
|
"type": "divider"
|
|
651
739
|
},
|
|
652
740
|
{
|
|
653
|
-
"type": "typography",
|
|
654
741
|
"content": "Select Auth Type",
|
|
742
|
+
"type": "typography",
|
|
655
743
|
"variant": "h4"
|
|
656
744
|
},
|
|
657
745
|
{
|
|
658
|
-
"type": "stack",
|
|
659
|
-
"direction": "horizontal",
|
|
660
746
|
"gap": "sm",
|
|
747
|
+
"type": "stack",
|
|
661
748
|
"justify": "center",
|
|
662
749
|
"children": [
|
|
663
750
|
{
|
|
664
|
-
"type": "button",
|
|
665
751
|
"label": "Header API Key",
|
|
752
|
+
"icon": "key",
|
|
666
753
|
"event": "CALL_HEADER_API",
|
|
667
|
-
"
|
|
668
|
-
"
|
|
754
|
+
"type": "button",
|
|
755
|
+
"variant": "primary"
|
|
669
756
|
},
|
|
670
757
|
{
|
|
758
|
+
"icon": "shield",
|
|
671
759
|
"type": "button",
|
|
672
760
|
"label": "Bearer Token",
|
|
673
761
|
"event": "CALL_BEARER_API",
|
|
674
|
-
"variant": "primary"
|
|
675
|
-
"icon": "shield"
|
|
762
|
+
"variant": "primary"
|
|
676
763
|
},
|
|
677
764
|
{
|
|
765
|
+
"variant": "primary",
|
|
678
766
|
"type": "button",
|
|
679
|
-
"label": "Query Param",
|
|
680
767
|
"event": "CALL_QUERY_API",
|
|
681
|
-
"
|
|
682
|
-
"
|
|
768
|
+
"icon": "search",
|
|
769
|
+
"label": "Query Param"
|
|
683
770
|
},
|
|
684
771
|
{
|
|
685
|
-
"
|
|
772
|
+
"icon": "unlock",
|
|
686
773
|
"label": "No Auth",
|
|
687
774
|
"event": "CALL_NOAUTH_API",
|
|
688
|
-
"
|
|
689
|
-
"
|
|
775
|
+
"type": "button",
|
|
776
|
+
"variant": "primary"
|
|
690
777
|
}
|
|
691
|
-
]
|
|
778
|
+
],
|
|
779
|
+
"direction": "horizontal"
|
|
692
780
|
}
|
|
693
|
-
]
|
|
781
|
+
],
|
|
782
|
+
"direction": "vertical",
|
|
783
|
+
"align": "center",
|
|
784
|
+
"type": "stack",
|
|
785
|
+
"gap": "lg"
|
|
694
786
|
}
|
|
695
787
|
]
|
|
696
788
|
]
|
|
@@ -704,39 +796,33 @@
|
|
|
704
796
|
"render-ui",
|
|
705
797
|
"main",
|
|
706
798
|
{
|
|
707
|
-
"type": "stack",
|
|
708
|
-
"direction": "vertical",
|
|
709
|
-
"gap": "lg",
|
|
710
|
-
"align": "center",
|
|
711
799
|
"children": [
|
|
712
800
|
{
|
|
713
|
-
"type": "icon",
|
|
714
801
|
"name": "globe",
|
|
715
|
-
"size": "lg"
|
|
802
|
+
"size": "lg",
|
|
803
|
+
"type": "icon"
|
|
716
804
|
},
|
|
717
805
|
{
|
|
806
|
+
"variant": "h2",
|
|
718
807
|
"type": "typography",
|
|
719
|
-
"content": "Unified API Tester"
|
|
720
|
-
"variant": "h2"
|
|
808
|
+
"content": "Unified API Tester"
|
|
721
809
|
},
|
|
722
810
|
{
|
|
723
|
-
"
|
|
724
|
-
"field": "endpoint",
|
|
811
|
+
"bind": "@entity.endpoint",
|
|
725
812
|
"placeholder": "/users",
|
|
726
|
-
"
|
|
813
|
+
"type": "input",
|
|
814
|
+
"field": "endpoint"
|
|
727
815
|
},
|
|
728
816
|
{
|
|
729
817
|
"type": "select",
|
|
730
|
-
"field": "method",
|
|
731
|
-
"bind": "@entity.method",
|
|
732
818
|
"options": [
|
|
733
819
|
{
|
|
734
|
-
"
|
|
735
|
-
"
|
|
820
|
+
"value": "GET",
|
|
821
|
+
"label": "GET"
|
|
736
822
|
},
|
|
737
823
|
{
|
|
738
|
-
"
|
|
739
|
-
"
|
|
824
|
+
"value": "POST",
|
|
825
|
+
"label": "POST"
|
|
740
826
|
},
|
|
741
827
|
{
|
|
742
828
|
"label": "PUT",
|
|
@@ -746,12 +832,14 @@
|
|
|
746
832
|
"label": "DELETE",
|
|
747
833
|
"value": "DELETE"
|
|
748
834
|
}
|
|
749
|
-
]
|
|
835
|
+
],
|
|
836
|
+
"field": "method",
|
|
837
|
+
"bind": "@entity.method"
|
|
750
838
|
},
|
|
751
839
|
{
|
|
840
|
+
"placeholder": "Request body (JSON)",
|
|
752
841
|
"type": "textarea",
|
|
753
842
|
"field": "requestBody",
|
|
754
|
-
"placeholder": "Request body (JSON)",
|
|
755
843
|
"bind": "@entity.requestBody"
|
|
756
844
|
},
|
|
757
845
|
{
|
|
@@ -759,52 +847,57 @@
|
|
|
759
847
|
},
|
|
760
848
|
{
|
|
761
849
|
"type": "typography",
|
|
762
|
-
"
|
|
763
|
-
"
|
|
850
|
+
"variant": "h4",
|
|
851
|
+
"content": "Select Auth Type"
|
|
764
852
|
},
|
|
765
853
|
{
|
|
766
854
|
"type": "stack",
|
|
767
855
|
"direction": "horizontal",
|
|
768
|
-
"gap": "sm",
|
|
769
856
|
"justify": "center",
|
|
857
|
+
"gap": "sm",
|
|
770
858
|
"children": [
|
|
771
859
|
{
|
|
860
|
+
"icon": "key",
|
|
861
|
+
"event": "CALL_HEADER_API",
|
|
772
862
|
"type": "button",
|
|
773
863
|
"label": "Header API Key",
|
|
774
|
-
"
|
|
775
|
-
"variant": "primary",
|
|
776
|
-
"icon": "key"
|
|
864
|
+
"variant": "primary"
|
|
777
865
|
},
|
|
778
866
|
{
|
|
779
|
-
"type": "button",
|
|
780
867
|
"label": "Bearer Token",
|
|
868
|
+
"type": "button",
|
|
869
|
+
"icon": "shield",
|
|
781
870
|
"event": "CALL_BEARER_API",
|
|
782
|
-
"variant": "primary"
|
|
783
|
-
"icon": "shield"
|
|
871
|
+
"variant": "primary"
|
|
784
872
|
},
|
|
785
873
|
{
|
|
874
|
+
"icon": "search",
|
|
875
|
+
"event": "CALL_QUERY_API",
|
|
786
876
|
"type": "button",
|
|
787
877
|
"label": "Query Param",
|
|
788
|
-
"
|
|
789
|
-
"variant": "primary",
|
|
790
|
-
"icon": "search"
|
|
878
|
+
"variant": "primary"
|
|
791
879
|
},
|
|
792
880
|
{
|
|
793
|
-
"type": "button",
|
|
794
|
-
"label": "No Auth",
|
|
795
|
-
"event": "CALL_NOAUTH_API",
|
|
796
881
|
"variant": "primary",
|
|
797
|
-
"icon": "unlock"
|
|
882
|
+
"icon": "unlock",
|
|
883
|
+
"label": "No Auth",
|
|
884
|
+
"type": "button",
|
|
885
|
+
"event": "CALL_NOAUTH_API"
|
|
798
886
|
}
|
|
799
887
|
]
|
|
800
888
|
}
|
|
801
|
-
]
|
|
889
|
+
],
|
|
890
|
+
"type": "stack",
|
|
891
|
+
"gap": "lg",
|
|
892
|
+
"align": "center",
|
|
893
|
+
"direction": "vertical"
|
|
802
894
|
}
|
|
803
895
|
]
|
|
804
896
|
]
|
|
805
897
|
}
|
|
806
898
|
]
|
|
807
|
-
}
|
|
899
|
+
},
|
|
900
|
+
"scope": "instance"
|
|
808
901
|
}
|
|
809
902
|
],
|
|
810
903
|
"pages": [
|
|
@@ -820,4 +913,4 @@
|
|
|
820
913
|
]
|
|
821
914
|
}
|
|
822
915
|
]
|
|
823
|
-
}
|
|
916
|
+
}
|