Spaces:
Runtime error
Runtime error
| { | |
| "name": "welcome-banner", | |
| "version": "1.0.0", | |
| "description": "Adds a welcome banner to API responses", | |
| "author": "OmniRoute", | |
| "license": "MIT", | |
| "main": "index.mjs", | |
| "source": "local", | |
| "tags": ["demo", "banner"], | |
| "hooks": { | |
| "onRequest": true, | |
| "onResponse": true, | |
| "onError": false | |
| }, | |
| "permissions": [], | |
| "enabledByDefault": true, | |
| "configSchema": { | |
| "bannerText": { | |
| "type": "string", | |
| "default": "Welcome to OmniRoute!", | |
| "description": "Banner message to display" | |
| }, | |
| "enabled": { | |
| "type": "boolean", | |
| "default": true, | |
| "description": "Enable or disable the banner" | |
| } | |
| } | |
| } | |