@cat-factory/server 0.267.0 → 0.269.0
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/agents/containerAgentBody.d.ts +18 -5
- package/dist/agents/containerAgentBody.d.ts.map +1 -1
- package/dist/agents/containerAgentBody.js +84 -21
- package/dist/agents/containerAgentBody.js.map +1 -1
- package/dist/agents/containerAgentResult.js +3 -3
- package/dist/agents/containerAgentResult.js.map +1 -1
- package/dist/agents/jobBody.d.ts +8 -2
- package/dist/agents/jobBody.d.ts.map +1 -1
- package/dist/agents/jobBody.js +15 -4
- package/dist/agents/jobBody.js.map +1 -1
- package/dist/app.d.ts.map +1 -1
- package/dist/app.js +12 -0
- package/dist/app.js.map +1 -1
- package/dist/github/GitHubMergeabilityProvider.d.ts.map +1 -1
- package/dist/github/GitHubMergeabilityProvider.js +6 -2
- package/dist/github/GitHubMergeabilityProvider.js.map +1 -1
- package/dist/github/GitHubPrReportPublisher.d.ts +17 -6
- package/dist/github/GitHubPrReportPublisher.d.ts.map +1 -1
- package/dist/github/GitHubPrReportPublisher.js +65 -36
- package/dist/github/GitHubPrReportPublisher.js.map +1 -1
- package/dist/http/authGate.d.ts.map +1 -1
- package/dist/http/authGate.js +10 -0
- package/dist/http/authGate.js.map +1 -1
- package/dist/http/cors.d.ts +16 -0
- package/dist/http/cors.d.ts.map +1 -1
- package/dist/http/cors.js +48 -1
- package/dist/http/cors.js.map +1 -1
- package/dist/http/env.d.ts +32 -1
- package/dist/http/env.d.ts.map +1 -1
- package/dist/http/errorHandler.d.ts.map +1 -1
- package/dist/http/errorHandler.js +22 -1
- package/dist/http/errorHandler.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/modules/llmProxy/LlmProxyController.d.ts +16 -0
- package/dist/modules/llmProxy/LlmProxyController.d.ts.map +1 -1
- package/dist/modules/llmProxy/LlmProxyController.js +30 -7
- package/dist/modules/llmProxy/LlmProxyController.js.map +1 -1
- package/dist/modules/mcpAuthServer/McpAuthorizationConsentController.d.ts +4 -0
- package/dist/modules/mcpAuthServer/McpAuthorizationConsentController.d.ts.map +1 -0
- package/dist/modules/mcpAuthServer/McpAuthorizationConsentController.js +119 -0
- package/dist/modules/mcpAuthServer/McpAuthorizationConsentController.js.map +1 -0
- package/dist/modules/mcpAuthServer/McpAuthorizationController.d.ts +4 -0
- package/dist/modules/mcpAuthServer/McpAuthorizationController.d.ts.map +1 -0
- package/dist/modules/mcpAuthServer/McpAuthorizationController.js +235 -0
- package/dist/modules/mcpAuthServer/McpAuthorizationController.js.map +1 -0
- package/dist/modules/mcpAuthServer/consentRedirect.d.ts +42 -0
- package/dist/modules/mcpAuthServer/consentRedirect.d.ts.map +1 -0
- package/dist/modules/mcpAuthServer/consentRedirect.js +46 -0
- package/dist/modules/mcpAuthServer/consentRedirect.js.map +1 -0
- package/dist/modules/mcpAuthServer/containerFields.d.ts +37 -0
- package/dist/modules/mcpAuthServer/containerFields.d.ts.map +1 -0
- package/dist/modules/mcpAuthServer/containerFields.js +36 -0
- package/dist/modules/mcpAuthServer/containerFields.js.map +1 -0
- package/dist/modules/publicApi/PublicMcpController.d.ts.map +1 -1
- package/dist/modules/publicApi/PublicMcpController.js +7 -0
- package/dist/modules/publicApi/PublicMcpController.js.map +1 -1
- package/dist/modules/publicApi/openapiDocument.generated.d.ts +1 -1
- package/dist/modules/publicApi/openapiDocument.generated.d.ts.map +1 -1
- package/dist/modules/publicApi/openapiDocument.generated.js +1 -1
- package/dist/modules/publicApi/openapiDocument.generated.js.map +1 -1
- package/package.json +8 -8
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"openapiDocument.generated.js","sourceRoot":"","sources":["../../../src/modules/publicApi/openapiDocument.generated.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,EAAE;AACF,0FAA0F;AAC1F,8FAA8F;AAC9F,8FAA8F;AAC9F,8EAA8E;AAE9E,MAAM,CAAC,MAAM,YAAY,GAAG,
|
|
1
|
+
{"version":3,"file":"openapiDocument.generated.js","sourceRoot":"","sources":["../../../src/modules/publicApi/openapiDocument.generated.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,EAAE;AACF,0FAA0F;AAC1F,8FAA8F;AAC9F,8FAA8F;AAC9F,8EAA8E;AAE9E,MAAM,CAAC,MAAM,YAAY,GAAG,4h8jBAA4h8jB,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.269.0",
|
|
4
4
|
"description": "Runtime-neutral HTTP layer for the Agent Architecture Board: the Hono controllers, middleware (auth/authz/CORS/error), request helpers and the gateway seams shared by every deployment facade (Cloudflare Worker, Node service).",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
"jose": "^6.2.8",
|
|
32
32
|
"pino": "^10.3.1",
|
|
33
33
|
"valibot": "^1.4.2",
|
|
34
|
-
"@cat-factory/agents": "0.
|
|
35
|
-
"@cat-factory/
|
|
36
|
-
"@cat-factory/
|
|
37
|
-
"@cat-factory/
|
|
38
|
-
"@cat-factory/mcp-server": "0.
|
|
39
|
-
"@cat-factory/orchestration": "0.
|
|
40
|
-
"@cat-factory/spend": "0.15.
|
|
34
|
+
"@cat-factory/agents": "0.125.1",
|
|
35
|
+
"@cat-factory/integrations": "0.155.0",
|
|
36
|
+
"@cat-factory/kernel": "0.285.1",
|
|
37
|
+
"@cat-factory/contracts": "0.292.0",
|
|
38
|
+
"@cat-factory/mcp-server": "0.29.0",
|
|
39
|
+
"@cat-factory/orchestration": "0.256.1",
|
|
40
|
+
"@cat-factory/spend": "0.15.65"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "^26.2.0",
|