arc-1 0.7.0 → 0.7.1
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/server/server.d.ts +1 -1
- package/dist/server/server.js +1 -1
- package/package.json +3 -1
package/dist/server/server.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ import { CachingLayer } from '../cache/caching-layer.js';
|
|
|
13
13
|
import { type ToolDefinition } from '../handlers/tools.js';
|
|
14
14
|
import type { ServerConfig } from './types.js';
|
|
15
15
|
/** ARC-1 version */
|
|
16
|
-
export declare const VERSION = "0.7.
|
|
16
|
+
export declare const VERSION = "0.7.1";
|
|
17
17
|
/**
|
|
18
18
|
* Filter tools by user scope + server deny list.
|
|
19
19
|
*
|
package/dist/server/server.js
CHANGED
|
@@ -23,7 +23,7 @@ import { isActionDenied } from './deny-actions.js';
|
|
|
23
23
|
import { initLogger, logger } from './logger.js';
|
|
24
24
|
import { FileSink } from './sinks/file.js';
|
|
25
25
|
/** ARC-1 version */
|
|
26
|
-
export const VERSION = '0.7.
|
|
26
|
+
export const VERSION = '0.7.1'; // x-release-please-version
|
|
27
27
|
/**
|
|
28
28
|
* Prune a tool's action OR type enum (or both) based on the user's scopes and
|
|
29
29
|
* the server's denyActions list. Uses ACTION_POLICY as the single source of truth.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arc-1",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"mcpName": "io.github.marianfoo/arc-1",
|
|
5
5
|
"description": "ARC-1 — MCP Server for SAP ABAP Systems",
|
|
6
6
|
"author": "Marian Zeis",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"node": ">=22.0.0"
|
|
15
15
|
},
|
|
16
16
|
"bin": {
|
|
17
|
+
"arc-1": "./bin/arc1.js",
|
|
17
18
|
"arc1": "./bin/arc1.js",
|
|
18
19
|
"arc1-cli": "./bin/arc1-cli.js"
|
|
19
20
|
},
|
|
@@ -41,6 +42,7 @@
|
|
|
41
42
|
"test:integration:btp:extended": "vitest run --config vitest.integration.config.ts tests/integration/btp-abap.integration.test.ts",
|
|
42
43
|
"test:integration:crud": "vitest run --config vitest.integration.config.ts tests/integration/crud.lifecycle.integration.test.ts",
|
|
43
44
|
"test:authz:http": "node scripts/check-authz-http-profiles.mjs",
|
|
45
|
+
"test:npx-smoke": "npm run build && node scripts/ci/assert-npx-bin-smoke.mjs",
|
|
44
46
|
"test:integration:skip-summary": "vitest run --config vitest.integration.config.ts --reporter=verbose 2>&1 | node scripts/ci/summarize-skips.mjs",
|
|
45
47
|
"test:coverage": "vitest run --coverage",
|
|
46
48
|
"test:coverage-report": "node scripts/ci/coverage-summary.mjs",
|