@vscode/vscode-settings-history 0.0.2-40 → 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 +1505 -0
- package/dist/vscode-settings.d.ts +27 -1
- package/package.json +1 -1
|
@@ -12210,6 +12210,30 @@ export type VscodeSettings_1_129_0_insider_2026070910 = Patch<VscodeSettings_1_1
|
|
|
12210
12210
|
readonly 'workbench.experimental.modernUI'?: boolean;
|
|
12211
12211
|
}, 'github.copilot.chat.claude47OpusPrompt.enabled'>;
|
|
12212
12212
|
|
|
12213
|
+
// ── 1.129.0-insider+2026071020: ~4, -1 ──
|
|
12214
|
+
export type VscodeSettings_1_129_0_insider_2026071020 = Patch<VscodeSettings_1_129_0_insider_2026070910, {
|
|
12215
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12216
|
+
readonly 'agents.voice.turn.silenceMs'?: number;
|
|
12217
|
+
readonly 'agents.voice.turn.stopPhrases'?: (string)[];
|
|
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
|
+
}, 'agents.voice.turn.autoEndMode'>;
|
|
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
|
+
|
|
12213
12237
|
// ── Version map ──
|
|
12214
12238
|
// Stable entries map directly to their settings type.
|
|
12215
12239
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -12313,12 +12337,14 @@ interface VscodeVersionMap {
|
|
|
12313
12337
|
}>;
|
|
12314
12338
|
'1.129.0-insider': InsiderBuilds<{
|
|
12315
12339
|
'2026070910': VscodeSettings_1_129_0_insider_2026070910;
|
|
12340
|
+
'2026071020': VscodeSettings_1_129_0_insider_2026071020;
|
|
12341
|
+
'2026071317': VscodeSettings_1_129_0_insider_2026071317;
|
|
12316
12342
|
}>;
|
|
12317
12343
|
}
|
|
12318
12344
|
|
|
12319
12345
|
export type LatestVscodeSettings = VscodeSettings_1_128_0;
|
|
12320
12346
|
|
|
12321
|
-
export type LatestInsiderVscodeSettings =
|
|
12347
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_129_0_insider_2026071317;
|
|
12322
12348
|
|
|
12323
12349
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
12324
12350
|
|