@ultimat3/mcp 20.2.0 → 20.2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ultimat3/mcp",
3
- "version": "20.2.0",
3
+ "version": "20.2.1",
4
4
  "description": "MCP server, dev tools, and the action-to-tool projection \u2014 one authz system, two surfaces",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -31,13 +31,13 @@
31
31
  "test": "bun test"
32
32
  },
33
33
  "dependencies": {
34
- "@ultimat3/action": "20.2.0",
35
- "@ultimat3/core": "20.2.0",
36
- "@ultimat3/entity": "20.2.0",
37
- "@ultimat3/http": "20.2.0",
38
- "@ultimat3/jobs": "20.2.0",
39
- "@ultimat3/policy": "20.2.0",
40
- "@ultimat3/query": "20.2.0",
41
- "@ultimat3/schema": "20.2.0"
34
+ "@ultimat3/action": "20.2.1",
35
+ "@ultimat3/core": "20.2.1",
36
+ "@ultimat3/entity": "20.2.1",
37
+ "@ultimat3/http": "20.2.1",
38
+ "@ultimat3/jobs": "20.2.1",
39
+ "@ultimat3/policy": "20.2.1",
40
+ "@ultimat3/query": "20.2.1",
41
+ "@ultimat3/schema": "20.2.1"
42
42
  }
43
43
  }
@@ -261,7 +261,15 @@ export const VIEWPORT_ARGS = {
261
261
  },
262
262
  width: { type: 'integer', minimum: 320, maximum: 3840 },
263
263
  height: { type: 'integer', minimum: 320, maximum: 2160 },
264
- theme: { type: 'string', enum: ['light', 'dark'], default: 'dark' },
264
+ theme: {
265
+ type: 'string',
266
+ enum: ['light', 'dark'],
267
+ default: 'dark',
268
+ description:
269
+ 'The theme the capture is of: prefers-color-scheme is emulated AND the scheme is stored as ' +
270
+ "the visitor's choice (localStorage, the boot's key) before navigation, so an app whose " +
271
+ 'theme.defaultMode differs still captures what a visitor who chose this theme sees.',
272
+ },
265
273
  } as const;
266
274
 
267
275
  /**