@solongate/proxy 0.81.59 → 0.81.60
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/api-client/settings.d.ts +0 -6
- package/dist/commands/index.js +0 -4
- package/dist/index.js +3 -28
- package/dist/tui/index.js +3 -28
- package/package.json +1 -1
|
@@ -70,12 +70,6 @@ export declare function updateAlert(id: string, patch: {
|
|
|
70
70
|
}): Promise<{
|
|
71
71
|
rule: AlertRule;
|
|
72
72
|
}>;
|
|
73
|
-
export declare function sendTestAlert(id: string): Promise<{
|
|
74
|
-
delivered: {
|
|
75
|
-
telegram: boolean;
|
|
76
|
-
email: boolean;
|
|
77
|
-
};
|
|
78
|
-
}>;
|
|
79
73
|
export interface DenialWebhook {
|
|
80
74
|
id: string;
|
|
81
75
|
url: string;
|
package/dist/commands/index.js
CHANGED
|
@@ -221,7 +221,6 @@ __export(settings_exports, {
|
|
|
221
221
|
getSecurityLayers: () => getSecurityLayers,
|
|
222
222
|
getSelfProtection: () => getSelfProtection,
|
|
223
223
|
getWebhooks: () => getWebhooks,
|
|
224
|
-
sendTestAlert: () => sendTestAlert,
|
|
225
224
|
sendTestWebhook: () => sendTestWebhook,
|
|
226
225
|
setAlertEnabled: () => setAlertEnabled,
|
|
227
226
|
setLocalLogs: () => setLocalLogs,
|
|
@@ -272,9 +271,6 @@ function setAlertEnabled(id, enabled) {
|
|
|
272
271
|
function updateAlert(id, patch) {
|
|
273
272
|
return request("PATCH", "/settings/denial-alerts", { query: { id }, body: patch });
|
|
274
273
|
}
|
|
275
|
-
function sendTestAlert(id) {
|
|
276
|
-
return request("POST", "/settings/denial-alerts/send-test", { body: { id } });
|
|
277
|
-
}
|
|
278
274
|
function getWebhooks() {
|
|
279
275
|
return request("GET", "/settings/denial-webhook");
|
|
280
276
|
}
|
package/dist/index.js
CHANGED
|
@@ -7408,7 +7408,6 @@ __export(settings_exports, {
|
|
|
7408
7408
|
getSecurityLayers: () => getSecurityLayers,
|
|
7409
7409
|
getSelfProtection: () => getSelfProtection,
|
|
7410
7410
|
getWebhooks: () => getWebhooks,
|
|
7411
|
-
sendTestAlert: () => sendTestAlert,
|
|
7412
7411
|
sendTestWebhook: () => sendTestWebhook,
|
|
7413
7412
|
setAlertEnabled: () => setAlertEnabled,
|
|
7414
7413
|
setLocalLogs: () => setLocalLogs,
|
|
@@ -7459,9 +7458,6 @@ function setAlertEnabled(id, enabled) {
|
|
|
7459
7458
|
function updateAlert(id, patch) {
|
|
7460
7459
|
return request("PATCH", "/settings/denial-alerts", { query: { id }, body: patch });
|
|
7461
7460
|
}
|
|
7462
|
-
function sendTestAlert(id) {
|
|
7463
|
-
return request("POST", "/settings/denial-alerts/send-test", { body: { id } });
|
|
7464
|
-
}
|
|
7465
7461
|
function getWebhooks() {
|
|
7466
7462
|
return request("GET", "/settings/denial-webhook");
|
|
7467
7463
|
}
|
|
@@ -10239,16 +10235,6 @@ function SettingsPanel({
|
|
|
10239
10235
|
if (id) run12("alert updated", () => api.settings.updateAlert(id, body), alertQ.reload);
|
|
10240
10236
|
else run12(`${editor.channel} alert added`, () => api.settings.createAlert({ name: "dataroom alert", ...body }), alertQ.reload);
|
|
10241
10237
|
};
|
|
10242
|
-
const testAlert = (rule) => {
|
|
10243
|
-
run12(
|
|
10244
|
-
"alert test sent \u2014 check your " + (alertChannel(rule) ?? "channel"),
|
|
10245
|
-
() => api.settings.sendTestAlert(rule.id).then((r) => {
|
|
10246
|
-
if (!r.delivered.telegram && !r.delivered.email) throw new Error("no channel on this rule");
|
|
10247
|
-
}),
|
|
10248
|
-
() => {
|
|
10249
|
-
}
|
|
10250
|
-
);
|
|
10251
|
-
};
|
|
10252
10238
|
const activate = (r) => {
|
|
10253
10239
|
if (r.kind === "acct") {
|
|
10254
10240
|
setViewCredentials({ apiKey: r.acc.apiKey, apiUrl: r.acc.apiUrl });
|
|
@@ -10327,11 +10313,6 @@ function SettingsPanel({
|
|
|
10327
10313
|
setEditing("alert-target");
|
|
10328
10314
|
return;
|
|
10329
10315
|
}
|
|
10330
|
-
if (inp === "t" && editor.id) {
|
|
10331
|
-
const rule = alerts.find((a) => a.id === editor.id);
|
|
10332
|
-
if (rule) testAlert(rule);
|
|
10333
|
-
return;
|
|
10334
|
-
}
|
|
10335
10316
|
if (key.return) {
|
|
10336
10317
|
saveEditor();
|
|
10337
10318
|
return;
|
|
@@ -10378,8 +10359,6 @@ function SettingsPanel({
|
|
|
10378
10359
|
run12("webhook test sent \u2014 check your endpoint", () => api.settings.sendTestWebhook(cur.wh.id).then((r) => {
|
|
10379
10360
|
if (!r.delivered) throw new Error("endpoint rejected the test (non-2xx)");
|
|
10380
10361
|
}), whQ.reload);
|
|
10381
|
-
} else if (inp === "t" && cur.kind === "alert") {
|
|
10382
|
-
testAlert(cur.rule);
|
|
10383
10362
|
} else if (inp === "e" && cur.kind === "ll-path") activate(cur);
|
|
10384
10363
|
else if (inp === "e" && cur.kind === "wh") {
|
|
10385
10364
|
const next = EVENTS[(EVENTS.indexOf(cur.wh.events) + 1) % EVENTS.length];
|
|
@@ -10447,11 +10426,7 @@ function SettingsPanel({
|
|
|
10447
10426
|
editor.channel,
|
|
10448
10427
|
" alert"
|
|
10449
10428
|
] }),
|
|
10450
|
-
/* @__PURE__ */
|
|
10451
|
-
"\u2191\u2193 field \xB7 \u2190\u2192 change \xB7 e edit target \xB7 enter save",
|
|
10452
|
-
editor.id ? " \xB7 t test" : "",
|
|
10453
|
-
" \xB7 esc cancel"
|
|
10454
|
-
] }),
|
|
10429
|
+
/* @__PURE__ */ jsx7(Text7, { color: theme.dim, children: "\u2191\u2193 field \xB7 \u2190\u2192 change \xB7 e edit target \xB7 enter save \xB7 esc cancel" }),
|
|
10455
10430
|
editing === "alert-target" ? /* @__PURE__ */ jsxs7(Box7, { marginTop: 1, children: [
|
|
10456
10431
|
/* @__PURE__ */ jsx7(Text7, { color: theme.warn, children: editor.channel === "email" ? "e-mail address: " : "telegram chat id (from @userinfobot): " }),
|
|
10457
10432
|
/* @__PURE__ */ jsx7(TextInput5, { value: input, onChange: setInput, onSubmit: submitInput })
|
|
@@ -10573,7 +10548,7 @@ function SettingsPanel({
|
|
|
10573
10548
|
PROTECTION: "guard hook version + self-protection toggle",
|
|
10574
10549
|
"LOCAL LOGS": "mirror every decision to a file + dashboard link",
|
|
10575
10550
|
WEBHOOKS: `POST events to a URL (${webhooks.length}) \xB7 t tests`,
|
|
10576
|
-
ALERTS: `one email + one telegram (${alerts.length}) \xB7 enter edits
|
|
10551
|
+
ALERTS: `one email + one telegram (${alerts.length}) \xB7 enter edits`
|
|
10577
10552
|
};
|
|
10578
10553
|
const lineEls = [];
|
|
10579
10554
|
const lineKey = [];
|
|
@@ -10595,7 +10570,7 @@ function SettingsPanel({
|
|
|
10595
10570
|
lineKey.push("");
|
|
10596
10571
|
if ((sec === "WEBHOOKS" || sec === "ALERTS") && local?.enabled) {
|
|
10597
10572
|
lineEls.push(
|
|
10598
|
-
/* @__PURE__ */ jsx7(Text7, { wrap: "truncate", color: theme.warn, children: ` \u26A0 local logs on \u2014 real denials stay on this machine, so ${sec.toLowerCase()} do NOT fire (t test still works)` }, "warn:" + sec)
|
|
10573
|
+
/* @__PURE__ */ jsx7(Text7, { wrap: "truncate", color: theme.warn, children: ` \u26A0 local logs on \u2014 real denials stay on this machine, so ${sec.toLowerCase()} do NOT fire${sec === "WEBHOOKS" ? " (t test still works)" : ""}` }, "warn:" + sec)
|
|
10599
10574
|
);
|
|
10600
10575
|
lineKey.push("");
|
|
10601
10576
|
}
|
package/dist/tui/index.js
CHANGED
|
@@ -564,7 +564,6 @@ __export(settings_exports, {
|
|
|
564
564
|
getSecurityLayers: () => getSecurityLayers,
|
|
565
565
|
getSelfProtection: () => getSelfProtection,
|
|
566
566
|
getWebhooks: () => getWebhooks,
|
|
567
|
-
sendTestAlert: () => sendTestAlert,
|
|
568
567
|
sendTestWebhook: () => sendTestWebhook,
|
|
569
568
|
setAlertEnabled: () => setAlertEnabled,
|
|
570
569
|
setLocalLogs: () => setLocalLogs,
|
|
@@ -615,9 +614,6 @@ function setAlertEnabled(id, enabled) {
|
|
|
615
614
|
function updateAlert(id, patch) {
|
|
616
615
|
return request("PATCH", "/settings/denial-alerts", { query: { id }, body: patch });
|
|
617
616
|
}
|
|
618
|
-
function sendTestAlert(id) {
|
|
619
|
-
return request("POST", "/settings/denial-alerts/send-test", { body: { id } });
|
|
620
|
-
}
|
|
621
617
|
function getWebhooks() {
|
|
622
618
|
return request("GET", "/settings/denial-webhook");
|
|
623
619
|
}
|
|
@@ -3366,16 +3362,6 @@ function SettingsPanel({
|
|
|
3366
3362
|
if (id) run("alert updated", () => api.settings.updateAlert(id, body), alertQ.reload);
|
|
3367
3363
|
else run(`${editor.channel} alert added`, () => api.settings.createAlert({ name: "dataroom alert", ...body }), alertQ.reload);
|
|
3368
3364
|
};
|
|
3369
|
-
const testAlert = (rule) => {
|
|
3370
|
-
run(
|
|
3371
|
-
"alert test sent \u2014 check your " + (alertChannel(rule) ?? "channel"),
|
|
3372
|
-
() => api.settings.sendTestAlert(rule.id).then((r) => {
|
|
3373
|
-
if (!r.delivered.telegram && !r.delivered.email) throw new Error("no channel on this rule");
|
|
3374
|
-
}),
|
|
3375
|
-
() => {
|
|
3376
|
-
}
|
|
3377
|
-
);
|
|
3378
|
-
};
|
|
3379
3365
|
const activate = (r) => {
|
|
3380
3366
|
if (r.kind === "acct") {
|
|
3381
3367
|
setViewCredentials({ apiKey: r.acc.apiKey, apiUrl: r.acc.apiUrl });
|
|
@@ -3454,11 +3440,6 @@ function SettingsPanel({
|
|
|
3454
3440
|
setEditing("alert-target");
|
|
3455
3441
|
return;
|
|
3456
3442
|
}
|
|
3457
|
-
if (inp === "t" && editor.id) {
|
|
3458
|
-
const rule = alerts.find((a) => a.id === editor.id);
|
|
3459
|
-
if (rule) testAlert(rule);
|
|
3460
|
-
return;
|
|
3461
|
-
}
|
|
3462
3443
|
if (key.return) {
|
|
3463
3444
|
saveEditor();
|
|
3464
3445
|
return;
|
|
@@ -3505,8 +3486,6 @@ function SettingsPanel({
|
|
|
3505
3486
|
run("webhook test sent \u2014 check your endpoint", () => api.settings.sendTestWebhook(cur.wh.id).then((r) => {
|
|
3506
3487
|
if (!r.delivered) throw new Error("endpoint rejected the test (non-2xx)");
|
|
3507
3488
|
}), whQ.reload);
|
|
3508
|
-
} else if (inp === "t" && cur.kind === "alert") {
|
|
3509
|
-
testAlert(cur.rule);
|
|
3510
3489
|
} else if (inp === "e" && cur.kind === "ll-path") activate(cur);
|
|
3511
3490
|
else if (inp === "e" && cur.kind === "wh") {
|
|
3512
3491
|
const next = EVENTS[(EVENTS.indexOf(cur.wh.events) + 1) % EVENTS.length];
|
|
@@ -3574,11 +3553,7 @@ function SettingsPanel({
|
|
|
3574
3553
|
editor.channel,
|
|
3575
3554
|
" alert"
|
|
3576
3555
|
] }),
|
|
3577
|
-
/* @__PURE__ */
|
|
3578
|
-
"\u2191\u2193 field \xB7 \u2190\u2192 change \xB7 e edit target \xB7 enter save",
|
|
3579
|
-
editor.id ? " \xB7 t test" : "",
|
|
3580
|
-
" \xB7 esc cancel"
|
|
3581
|
-
] }),
|
|
3556
|
+
/* @__PURE__ */ jsx7(Text7, { color: theme.dim, children: "\u2191\u2193 field \xB7 \u2190\u2192 change \xB7 e edit target \xB7 enter save \xB7 esc cancel" }),
|
|
3582
3557
|
editing === "alert-target" ? /* @__PURE__ */ jsxs7(Box7, { marginTop: 1, children: [
|
|
3583
3558
|
/* @__PURE__ */ jsx7(Text7, { color: theme.warn, children: editor.channel === "email" ? "e-mail address: " : "telegram chat id (from @userinfobot): " }),
|
|
3584
3559
|
/* @__PURE__ */ jsx7(TextInput5, { value: input, onChange: setInput, onSubmit: submitInput })
|
|
@@ -3700,7 +3675,7 @@ function SettingsPanel({
|
|
|
3700
3675
|
PROTECTION: "guard hook version + self-protection toggle",
|
|
3701
3676
|
"LOCAL LOGS": "mirror every decision to a file + dashboard link",
|
|
3702
3677
|
WEBHOOKS: `POST events to a URL (${webhooks.length}) \xB7 t tests`,
|
|
3703
|
-
ALERTS: `one email + one telegram (${alerts.length}) \xB7 enter edits
|
|
3678
|
+
ALERTS: `one email + one telegram (${alerts.length}) \xB7 enter edits`
|
|
3704
3679
|
};
|
|
3705
3680
|
const lineEls = [];
|
|
3706
3681
|
const lineKey = [];
|
|
@@ -3722,7 +3697,7 @@ function SettingsPanel({
|
|
|
3722
3697
|
lineKey.push("");
|
|
3723
3698
|
if ((sec === "WEBHOOKS" || sec === "ALERTS") && local?.enabled) {
|
|
3724
3699
|
lineEls.push(
|
|
3725
|
-
/* @__PURE__ */ jsx7(Text7, { wrap: "truncate", color: theme.warn, children: ` \u26A0 local logs on \u2014 real denials stay on this machine, so ${sec.toLowerCase()} do NOT fire (t test still works)` }, "warn:" + sec)
|
|
3700
|
+
/* @__PURE__ */ jsx7(Text7, { wrap: "truncate", color: theme.warn, children: ` \u26A0 local logs on \u2014 real denials stay on this machine, so ${sec.toLowerCase()} do NOT fire${sec === "WEBHOOKS" ? " (t test still works)" : ""}` }, "warn:" + sec)
|
|
3726
3701
|
);
|
|
3727
3702
|
lineKey.push("");
|
|
3728
3703
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.60",
|
|
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": {
|