@elizaos/plugin-ngrok 2.0.3-beta.2 → 2.0.3-beta.3
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/package.json +7 -6
- package/registry-entry.json +69 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-ngrok",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.3",
|
|
4
4
|
"description": "Ngrok tunnel plugin for elizaOS — third-party backend implementing the @elizaos/plugin-tunnel ITunnelService contract.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
|
+
"registry-entry.json",
|
|
34
35
|
"dist",
|
|
35
36
|
"src"
|
|
36
37
|
],
|
|
@@ -53,12 +54,12 @@
|
|
|
53
54
|
"networking"
|
|
54
55
|
],
|
|
55
56
|
"peerDependencies": {
|
|
56
|
-
"@elizaos/core": "2.0.3-beta.
|
|
57
|
-
"@elizaos/plugin-tunnel": "2.0.3-beta.
|
|
57
|
+
"@elizaos/core": "2.0.3-beta.3",
|
|
58
|
+
"@elizaos/plugin-tunnel": "2.0.3-beta.3"
|
|
58
59
|
},
|
|
59
60
|
"dependencies": {
|
|
60
|
-
"@elizaos/core": "2.0.3-beta.
|
|
61
|
-
"@elizaos/plugin-tunnel": "2.0.3-beta.
|
|
61
|
+
"@elizaos/core": "2.0.3-beta.3",
|
|
62
|
+
"@elizaos/plugin-tunnel": "2.0.3-beta.3",
|
|
62
63
|
"@ngrok/ngrok": "^1.5.1",
|
|
63
64
|
"zod": "^4.4.2"
|
|
64
65
|
},
|
|
@@ -76,5 +77,5 @@
|
|
|
76
77
|
"pluginType": "elizaos:plugin:1.0.0",
|
|
77
78
|
"pluginParameters": {}
|
|
78
79
|
},
|
|
79
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "f54b0f4eaed317d59fa7dbcdce20f4cdb0734420"
|
|
80
81
|
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "ngrok",
|
|
3
|
+
"name": "Ngrok",
|
|
4
|
+
"description": "Ngrok tunnel backend. Implements the @elizaos/plugin-tunnel ITunnelService contract; coexists with plugin-tunnel, plugin-tailscale, and Eliza Cloud headscale via first-active-wins.",
|
|
5
|
+
"npmName": "@elizaos/plugin-ngrok",
|
|
6
|
+
"version": "0.1.0",
|
|
7
|
+
"source": "bundled",
|
|
8
|
+
"tags": ["tunnel", "ngrok", "networking"],
|
|
9
|
+
"config": {
|
|
10
|
+
"NGROK_AUTH_TOKEN": {
|
|
11
|
+
"type": "secret",
|
|
12
|
+
"required": false,
|
|
13
|
+
"sensitive": true,
|
|
14
|
+
"label": "Auth Token",
|
|
15
|
+
"help": "Ngrok auth token. Required for stable tunnels and custom domains. Get one from https://dashboard.ngrok.com/get-started/your-authtoken",
|
|
16
|
+
"advanced": false
|
|
17
|
+
},
|
|
18
|
+
"NGROK_REGION": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"required": false,
|
|
21
|
+
"sensitive": false,
|
|
22
|
+
"default": "us",
|
|
23
|
+
"label": "Region",
|
|
24
|
+
"help": "Ngrok edge region (us, eu, ap, au, sa, jp, in).",
|
|
25
|
+
"advanced": true
|
|
26
|
+
},
|
|
27
|
+
"NGROK_DOMAIN": {
|
|
28
|
+
"type": "string",
|
|
29
|
+
"required": false,
|
|
30
|
+
"sensitive": false,
|
|
31
|
+
"label": "Custom Domain",
|
|
32
|
+
"help": "Reserved ngrok domain (paid feature). Leave blank for an auto-generated *.ngrok.io URL.",
|
|
33
|
+
"advanced": true
|
|
34
|
+
},
|
|
35
|
+
"NGROK_SUBDOMAIN": {
|
|
36
|
+
"type": "string",
|
|
37
|
+
"required": false,
|
|
38
|
+
"sensitive": false,
|
|
39
|
+
"label": "Subdomain",
|
|
40
|
+
"help": "Reserved subdomain (paid feature, alternative to NGROK_DOMAIN).",
|
|
41
|
+
"advanced": true
|
|
42
|
+
},
|
|
43
|
+
"NGROK_DEFAULT_PORT": {
|
|
44
|
+
"type": "number",
|
|
45
|
+
"required": false,
|
|
46
|
+
"sensitive": false,
|
|
47
|
+
"default": "3000",
|
|
48
|
+
"label": "Default Port",
|
|
49
|
+
"help": "Local port to tunnel when none is given in the prompt.",
|
|
50
|
+
"advanced": false
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"render": {
|
|
54
|
+
"visible": true,
|
|
55
|
+
"pinTo": [],
|
|
56
|
+
"style": "card",
|
|
57
|
+
"icon": "Network",
|
|
58
|
+
"group": "devtools",
|
|
59
|
+
"groupOrder": 8,
|
|
60
|
+
"actions": ["enable", "configure"]
|
|
61
|
+
},
|
|
62
|
+
"resources": {
|
|
63
|
+
"homepage": "https://github.com/eliza-ai/eliza/tree/develop/plugins/plugin-ngrok#readme",
|
|
64
|
+
"repository": "https://github.com/eliza-ai/eliza"
|
|
65
|
+
},
|
|
66
|
+
"dependsOn": [],
|
|
67
|
+
"kind": "plugin",
|
|
68
|
+
"subtype": "devtools"
|
|
69
|
+
}
|