@alpic-ai/insights 0.0.0-dev.g51bec0a → 0.0.0-dev.g51d64db

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +6 -2
package/dist/index.mjs CHANGED
@@ -125,7 +125,7 @@ function feedbackMiddleware(options) {
125
125
  },
126
126
  outputSchema: FEEDBACK_OUTPUT_SCHEMA,
127
127
  annotations: {
128
- readOnlyHint: true,
128
+ readOnlyHint: false,
129
129
  destructiveHint: false,
130
130
  openWorldHint: false,
131
131
  idempotentHint: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alpic-ai/insights",
3
- "version": "0.0.0-dev.g51bec0a",
3
+ "version": "0.0.0-dev.g51d64db",
4
4
  "description": "User insights middlewares for Alpic-hosted MCP servers",
5
5
  "type": "module",
6
6
  "main": "./dist/index.mjs",
@@ -44,7 +44,7 @@
44
44
  "react": "^19.2.8",
45
45
  "react-dom": "^19.2.8",
46
46
  "shx": "^0.4.0",
47
- "skybridge": "^1.3.2",
47
+ "skybridge": "^1.3.5",
48
48
  "tsdown": "^0.22.14",
49
49
  "typescript": "^6.0.3",
50
50
  "vitest": "^4.1.10",
@@ -52,8 +52,12 @@
52
52
  },
53
53
  "scripts": {
54
54
  "build": "shx rm -rf dist && tsdown",
55
+ "build:python": "cd python && uv build --no-sources",
55
56
  "format": "biome check --write --error-on-warnings .",
56
57
  "test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
58
+ "test:python": "cd python && uv run --locked pytest",
59
+ "test:python:format": "cd python && uv run --locked ruff check . && uv run --locked ruff format --check .",
60
+ "test:python:smoke": "pnpm run build:python && cd python && uv run --isolated --no-project --with dist/*.whl scripts/smoke_test.py && uv run --isolated --no-project --with dist/*.tar.gz scripts/smoke_test.py",
57
61
  "test:unit": "vitest run",
58
62
  "test:format": "biome check --error-on-warnings .",
59
63
  "test:type": "tsgo --noEmit",