@vscode/vscode-settings-history 0.0.2-16 → 0.0.2-17
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/history.json +2149 -0
- package/dist/vscode-settings.d.ts +42 -2
- package/package.json +1 -1
|
@@ -11174,6 +11174,43 @@ export type VscodeSettings_1_124_0_insider_2026060513 = Patch<VscodeSettings_1_1
|
|
|
11174
11174
|
readonly 'workbench.browser.enableChatTools'?: boolean;
|
|
11175
11175
|
}, never>;
|
|
11176
11176
|
|
|
11177
|
+
// ── 1.123.1: ~16, -1 ──
|
|
11178
|
+
export type VscodeSettings_1_123_1 = Patch<VscodeSettings_1_123_0, {
|
|
11179
|
+
readonly 'chat.agentHost.otel.captureContent'?: boolean;
|
|
11180
|
+
readonly 'chat.agentHost.otel.dbSpanExporter.enabled'?: boolean;
|
|
11181
|
+
readonly 'chat.agentHost.otel.enabled'?: boolean;
|
|
11182
|
+
readonly 'chat.agentHost.otel.exporterType'?: 'otlp-http' | 'otlp-grpc' | 'console' | 'file';
|
|
11183
|
+
readonly 'chat.agentHost.otel.otlpEndpoint'?: string;
|
|
11184
|
+
readonly 'chat.agentHost.otel.outfile'?: string;
|
|
11185
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11186
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
11187
|
+
readonly 'github.copilot.chat.otel.captureContent'?: boolean;
|
|
11188
|
+
readonly 'github.copilot.chat.otel.dbSpanExporter.enabled'?: boolean;
|
|
11189
|
+
readonly 'github.copilot.chat.otel.enabled'?: boolean;
|
|
11190
|
+
readonly 'github.copilot.chat.otel.exporterType'?: 'otlp-grpc' | 'otlp-http' | 'console' | 'file';
|
|
11191
|
+
readonly 'github.copilot.chat.otel.maxAttributeSizeChars'?: number;
|
|
11192
|
+
readonly 'github.copilot.chat.otel.otlpEndpoint'?: string;
|
|
11193
|
+
readonly 'github.copilot.chat.otel.outfile'?: string;
|
|
11194
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
11195
|
+
}, 'chat.agent.maxRequests'>;
|
|
11196
|
+
|
|
11197
|
+
// ── 1.123.2: +1, ~4 ──
|
|
11198
|
+
export type VscodeSettings_1_123_2 = Patch<VscodeSettings_1_123_1, {
|
|
11199
|
+
readonly 'chat.agent.maxRequests'?: number;
|
|
11200
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
11201
|
+
readonly 'editor.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11202
|
+
readonly 'notebook.defaultFormatter'?: null | 'GitHub.copilot-chat' | 'vscode.css-language-features' | 'vscode.html-language-features' | 'vscode.json-language-features' | 'vscode.markdown-language-features' | 'vscode.markdown-math' | 'vscode.php-language-features' | 'vscode.typescript-language-features' | 'vscode.configuration-editing' | 'vscode.debug-auto-launch' | 'vscode.debug-server-ready' | 'vscode.emmet' | 'vscode.extension-editing' | 'vscode.git' | 'vscode.git-base' | 'vscode.github' | 'vscode.github-authentication' | 'vscode.grunt' | 'vscode.gulp' | 'vscode.ipynb' | 'vscode.jake' | 'ms-vscode.js-debug' | 'ms-vscode.js-debug-companion' | 'vscode.media-preview' | 'vscode.merge-conflict' | 'vscode.mermaid-markdown-features' | 'vscode.microsoft-authentication' | 'vscode.npm' | 'vscode.references-view' | 'vscode.search-result' | 'vscode.simple-browser' | 'vscode.terminal-suggest' | 'vscode.tunnel-forwarding' | 'ms-vscode.vscode-js-profile-table';
|
|
11203
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
|
|
11204
|
+
}, never>;
|
|
11205
|
+
|
|
11206
|
+
// ── 1.124.0-insider+2026060900: +2, ~2 ──
|
|
11207
|
+
export type VscodeSettings_1_124_0_insider_2026060900 = Patch<VscodeSettings_1_124_0_insider_2026060513, {
|
|
11208
|
+
readonly 'chat.agentHost.defaultChatProvider'?: boolean;
|
|
11209
|
+
readonly 'chat.autopilot.advanced.enabled'?: boolean;
|
|
11210
|
+
readonly 'jsts-chat-features.skills.enabled'?: boolean;
|
|
11211
|
+
readonly 'npm.scriptRunner'?: 'auto' | 'npm' | 'yarn' | 'pnpm' | 'bun' | 'node' | 'vp';
|
|
11212
|
+
}, never>;
|
|
11213
|
+
|
|
11177
11214
|
// ── Version map ──
|
|
11178
11215
|
// Stable entries map directly to their settings type.
|
|
11179
11216
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -11214,6 +11251,8 @@ interface VscodeVersionMap {
|
|
|
11214
11251
|
'1.122.0': VscodeSettings_1_122_0;
|
|
11215
11252
|
'1.122.1': VscodeSettings_1_122_1;
|
|
11216
11253
|
'1.123.0': VscodeSettings_1_123_0;
|
|
11254
|
+
'1.123.1': VscodeSettings_1_123_1;
|
|
11255
|
+
'1.123.2': VscodeSettings_1_123_2;
|
|
11217
11256
|
'1.121.0-insider': InsiderBuilds<{
|
|
11218
11257
|
'2026051305': VscodeSettings_1_121_0_insider_2026051305;
|
|
11219
11258
|
'2026051505': VscodeSettings_1_121_0_insider_2026051505;
|
|
@@ -11235,12 +11274,13 @@ interface VscodeVersionMap {
|
|
|
11235
11274
|
'2026060217': VscodeSettings_1_124_0_insider_2026060217;
|
|
11236
11275
|
'2026060321': VscodeSettings_1_124_0_insider_2026060321;
|
|
11237
11276
|
'2026060513': VscodeSettings_1_124_0_insider_2026060513;
|
|
11277
|
+
'2026060900': VscodeSettings_1_124_0_insider_2026060900;
|
|
11238
11278
|
}>;
|
|
11239
11279
|
}
|
|
11240
11280
|
|
|
11241
|
-
export type LatestVscodeSettings =
|
|
11281
|
+
export type LatestVscodeSettings = VscodeSettings_1_123_2;
|
|
11242
11282
|
|
|
11243
|
-
export type LatestInsiderVscodeSettings =
|
|
11283
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_124_0_insider_2026060900;
|
|
11244
11284
|
|
|
11245
11285
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
11246
11286
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vscode/vscode-settings-history",
|
|
3
|
-
"version": "0.0.2-
|
|
3
|
+
"version": "0.0.2-17",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "pnpm@10.18.0+sha512.e804f889f1cecc40d572db084eec3e4881739f8dec69c0ff10d2d1beff9a4e309383ba27b5b750059d7f4c149535b6cd0d2cb1ed3aeb739239a4284a68f40cfa",
|
|
6
6
|
"description": "Tracks VS Code settings schema changes across versions",
|