@alfe.ai/gateway 0.1.1 → 0.1.2
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/health.js +7 -3
- package/package.json +5 -5
package/dist/health.js
CHANGED
|
@@ -93,6 +93,7 @@ const ID_PREFIXES = {
|
|
|
93
93
|
role: "role",
|
|
94
94
|
directGrant: "dgr",
|
|
95
95
|
oauthConnection: "con",
|
|
96
|
+
channel: "chn",
|
|
96
97
|
oauthConnectionRequest: "crq",
|
|
97
98
|
deviceCode: "dvc",
|
|
98
99
|
attachment: "att",
|
|
@@ -584,8 +585,9 @@ var IntegrationsService = class {
|
|
|
584
585
|
});
|
|
585
586
|
return this.client.request(`/integrations/scoped/${encodeURIComponent(integrationId)}?${params}`, { method: "DELETE" });
|
|
586
587
|
}
|
|
587
|
-
listIntegrations(agentId) {
|
|
588
|
-
|
|
588
|
+
listIntegrations(agentId, options) {
|
|
589
|
+
const qs = options?.includeInherited ? "?includeInherited=true" : "";
|
|
590
|
+
return this.client.request(`/integrations/agents/${agentId}${qs}`);
|
|
589
591
|
}
|
|
590
592
|
installIntegration(agentId, data) {
|
|
591
593
|
return this.client.request(`/integrations/agents/${agentId}`, {
|
|
@@ -4352,7 +4354,8 @@ enumValues({
|
|
|
4352
4354
|
ElevenLabs: "elevenlabs",
|
|
4353
4355
|
Twilio: "twilio",
|
|
4354
4356
|
ClaudeMax: "claude-max",
|
|
4355
|
-
OpenAICodexMax: "openai-codex-max"
|
|
4357
|
+
OpenAICodexMax: "openai-codex-max",
|
|
4358
|
+
GeminiMax: "gemini-max"
|
|
4356
4359
|
});
|
|
4357
4360
|
enumValues({
|
|
4358
4361
|
Month: "month",
|
|
@@ -4410,6 +4413,7 @@ enumValues({
|
|
|
4410
4413
|
Project: "project",
|
|
4411
4414
|
Agent: "agent"
|
|
4412
4415
|
});
|
|
4416
|
+
["alfe"].filter((id) => id !== "alfe");
|
|
4413
4417
|
enumValues({
|
|
4414
4418
|
Public: "public",
|
|
4415
4419
|
Hidden: "hidden"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/gateway",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Alfe local gateway daemon — persistent control plane for agent integrations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
"pino-roll": "^1.2.0",
|
|
23
23
|
"smol-toml": ">=1.6.1",
|
|
24
24
|
"ws": "^8.18.0",
|
|
25
|
-
"@alfe.ai/agent-api-client": "^0.
|
|
25
|
+
"@alfe.ai/agent-api-client": "^0.2.0",
|
|
26
26
|
"@alfe.ai/ai-proxy-local": "^0.0.10",
|
|
27
27
|
"@alfe.ai/config": "^0.0.9",
|
|
28
|
-
"@alfe.ai/integration-manifest": "^0.
|
|
29
|
-
"@alfe.ai/integrations": "^0.1.
|
|
30
|
-
"@alfe.ai/mcp-bundler": "^0.
|
|
28
|
+
"@alfe.ai/integration-manifest": "^0.2.0",
|
|
29
|
+
"@alfe.ai/integrations": "^0.1.2",
|
|
30
|
+
"@alfe.ai/mcp-bundler": "^0.2.0"
|
|
31
31
|
},
|
|
32
32
|
"license": "UNLICENSED",
|
|
33
33
|
"scripts": {
|