sdl-mcp 0.11.0 → 0.11.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.
@@ -40,6 +40,7 @@
40
40
  "sh"
41
41
  ],
42
42
  "maxFileBytes": 2000000,
43
+ "postIndexSessionTimeoutMs": 900000,
43
44
  "includeNodeModulesTypes": true,
44
45
  "packageJsonPath": null,
45
46
  "tsconfigPath": null,
@@ -91,6 +91,13 @@
91
91
  "minimum": 1,
92
92
  "default": 2000000
93
93
  },
94
+ "postIndexSessionTimeoutMs": {
95
+ "type": "integer",
96
+ "description": "Hard timeout for post-index finalization writes in milliseconds. Covers embeddings, summaries, deferred index builds, memory sync, and audit flushing after pass-1/pass-2 complete.",
97
+ "minimum": 1000,
98
+ "maximum": 86400000,
99
+ "default": 900000
100
+ },
94
101
  "includeNodeModulesTypes": {
95
102
  "type": "boolean",
96
103
  "description": "Include node_modules/@types declarations in TypeScript call resolution (excluding @types/node)",