@solongate/proxy 0.82.38 → 0.82.39
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/dist/commands/index.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/commands/index.js
CHANGED
|
@@ -1193,7 +1193,7 @@ async function run8(argv) {
|
|
|
1193
1193
|
table(
|
|
1194
1194
|
["ID", "ON", "SIGNAL", "THRESH", "WINDOW", "CHANNELS"],
|
|
1195
1195
|
rules.map((r) => [
|
|
1196
|
-
dim(
|
|
1196
|
+
dim(r.id),
|
|
1197
1197
|
r.enabled ? green("\u25CF") : dim("\u25CB"),
|
|
1198
1198
|
cyan(r.signal),
|
|
1199
1199
|
`${r.threshold}`,
|
|
@@ -1250,7 +1250,7 @@ async function run9(argv) {
|
|
|
1250
1250
|
if (!webhooks.length) return err(dim(" No webhooks.")), 0;
|
|
1251
1251
|
table(
|
|
1252
1252
|
["ID", "ON", "EVENTS", "URL"],
|
|
1253
|
-
webhooks.map((w) => [dim(
|
|
1253
|
+
webhooks.map((w) => [dim(w.id), w.enabled ? green("\u25CF") : dim("\u25CB"), cyan(w.events), dim(truncate(w.url, 46))])
|
|
1254
1254
|
);
|
|
1255
1255
|
return 0;
|
|
1256
1256
|
}
|
package/dist/index.js
CHANGED
|
@@ -12449,7 +12449,7 @@ async function run8(argv) {
|
|
|
12449
12449
|
table(
|
|
12450
12450
|
["ID", "ON", "SIGNAL", "THRESH", "WINDOW", "CHANNELS"],
|
|
12451
12451
|
rules.map((r) => [
|
|
12452
|
-
dim(
|
|
12452
|
+
dim(r.id),
|
|
12453
12453
|
r.enabled ? green("\u25CF") : dim("\u25CB"),
|
|
12454
12454
|
cyan(r.signal),
|
|
12455
12455
|
`${r.threshold}`,
|
|
@@ -12516,7 +12516,7 @@ async function run9(argv) {
|
|
|
12516
12516
|
if (!webhooks.length) return err(dim(" No webhooks.")), 0;
|
|
12517
12517
|
table(
|
|
12518
12518
|
["ID", "ON", "EVENTS", "URL"],
|
|
12519
|
-
webhooks.map((w) => [dim(
|
|
12519
|
+
webhooks.map((w) => [dim(w.id), w.enabled ? green("\u25CF") : dim("\u25CB"), cyan(w.events), dim(truncate3(w.url, 46))])
|
|
12520
12520
|
);
|
|
12521
12521
|
return 0;
|
|
12522
12522
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.82.
|
|
3
|
+
"version": "0.82.39",
|
|
4
4
|
"description": "AI tool security proxy: protect any AI tool server with customizable policies, path/command constraints, rate limiting, and audit logging. No code changes required.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|