@vscode/vscode-settings-history 0.0.2-41 → 0.0.2-42
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 +1433 -0
- package/dist/vscode-settings.d.ts +18 -1
- package/package.json +1 -1
|
@@ -12218,6 +12218,22 @@ export type VscodeSettings_1_129_0_insider_2026071020 = Patch<VscodeSettings_1_1
|
|
|
12218
12218
|
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
|
|
12219
12219
|
}, 'agents.voice.turn.autoEndMode'>;
|
|
12220
12220
|
|
|
12221
|
+
// ── 1.129.0-insider+2026071317: +4, ~8, -3 ──
|
|
12222
|
+
export type VscodeSettings_1_129_0_insider_2026071317 = Patch<VscodeSettings_1_129_0_insider_2026071020, {
|
|
12223
|
+
readonly 'agents.voice.showTranscript'?: boolean;
|
|
12224
|
+
readonly 'agents.voice.speakResponses'?: boolean;
|
|
12225
|
+
readonly 'breadcrumbs.showEditorType'?: boolean;
|
|
12226
|
+
readonly 'chat.agentHost.agentDebugLog.enabled'?: boolean;
|
|
12227
|
+
readonly 'chat.agentHost.agentDebugLog.maxEventsInMemory'?: number;
|
|
12228
|
+
readonly 'chat.customizations.promptMigration.enabled'?: boolean;
|
|
12229
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12230
|
+
readonly 'chat.turnStatusPills'?: Record<string, unknown>;
|
|
12231
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12232
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
12233
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
12234
|
+
readonly 'workbench.editor.useModal'?: 'off' | 'some' | 'all';
|
|
12235
|
+
}, 'agents.voice.textToSpeech' | 'chat.agent.maxRequests' | 'chat.generalPurposeAgent.enabled'>;
|
|
12236
|
+
|
|
12221
12237
|
// ── Version map ──
|
|
12222
12238
|
// Stable entries map directly to their settings type.
|
|
12223
12239
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -12322,12 +12338,13 @@ interface VscodeVersionMap {
|
|
|
12322
12338
|
'1.129.0-insider': InsiderBuilds<{
|
|
12323
12339
|
'2026070910': VscodeSettings_1_129_0_insider_2026070910;
|
|
12324
12340
|
'2026071020': VscodeSettings_1_129_0_insider_2026071020;
|
|
12341
|
+
'2026071317': VscodeSettings_1_129_0_insider_2026071317;
|
|
12325
12342
|
}>;
|
|
12326
12343
|
}
|
|
12327
12344
|
|
|
12328
12345
|
export type LatestVscodeSettings = VscodeSettings_1_128_0;
|
|
12329
12346
|
|
|
12330
|
-
export type LatestInsiderVscodeSettings =
|
|
12347
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_129_0_insider_2026071317;
|
|
12331
12348
|
|
|
12332
12349
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
12333
12350
|
|