@vscode/vscode-settings-history 0.0.2-50 → 0.0.2-51

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 CHANGED
@@ -409726,5 +409726,66 @@
409726
409726
  }
409727
409727
  }
409728
409728
  ]
409729
+ },
409730
+ {
409731
+ "version": "1.132.0-insider+2026072817",
409732
+ "base": {
409733
+ "version": "1.131.0-insider+2026072801"
409734
+ },
409735
+ "patch": [
409736
+ {
409737
+ "op": "replace",
409738
+ "path": "/dictation.experimental.llmCleanup/markdownDescription",
409739
+ "value": "Experimental: periodically refine finalized text while dictating, then pass the final transcript through a small language model to restore punctuation, capitalization, paragraphs, and lists. Requires Copilot to be enabled; the transcript is sent to the language model for cleanup. Falls back to the raw transcript when no model is available. Use [dictation instructions](command:workbench.action.chat.configureDictationInstructions) to customize terminology and formatting."
409740
+ },
409741
+ {
409742
+ "op": "remove",
409743
+ "path": "/agents.voice.voice/description"
409744
+ },
409745
+ {
409746
+ "op": "add",
409747
+ "path": "/agents.voice.voice/markdownDescription",
409748
+ "value": "The voice used when the assistant reads responses aloud. Changing this while voice mode is connected takes effect immediately. Use [Voice Mode instructions](command:workbench.action.chat.configureVoiceInstructions) to customize Voice Mode behavior and terminology."
409749
+ },
409750
+ {
409751
+ "op": "replace",
409752
+ "path": "/chat.turnStatusPills/defaultDefaultValue",
409753
+ "value": true
409754
+ },
409755
+ {
409756
+ "op": "replace",
409757
+ "path": "/chat.turnStatusPills/default",
409758
+ "value": true
409759
+ },
409760
+ {
409761
+ "op": "add",
409762
+ "path": "/terminal.integrated.defaultProfile.linux/markdownEnumDescriptions/13",
409763
+ "value": "$($(debug)) JavaScript Debug Terminal\n- extensionIdentifier: ms-vscode.js-debug"
409764
+ },
409765
+ {
409766
+ "op": "add",
409767
+ "path": "/terminal.integrated.defaultProfile.linux/enum/13",
409768
+ "value": "JavaScript Debug Terminal"
409769
+ },
409770
+ {
409771
+ "op": "add",
409772
+ "path": "/dictation.showTranscript",
409773
+ "value": {
409774
+ "type": "boolean",
409775
+ "markdownDescription": "Controls whether the transcript is shown while dictating. The final transcript is inserted when dictation ends.",
409776
+ "default": true,
409777
+ "tags": [
409778
+ "experimental"
409779
+ ],
409780
+ "section": {
409781
+ "id": "chatSidebar",
409782
+ "title": "Chat"
409783
+ },
409784
+ "defaultDefaultValue": true,
409785
+ "scope": 4,
409786
+ "restricted": false
409787
+ }
409788
+ }
409789
+ ]
409729
409790
  }
409730
409791
  ]
@@ -12475,6 +12475,15 @@ export type VscodeSettings_1_131_0_insider_2026072801 = Patch<VscodeSettings_1_1
12475
12475
  readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)';
12476
12476
  }, 'github.copilot.chat.claude48OpusPrompt.enabled' | 'github.copilot.chat.claudeSonnet5Prompt.enabled' | 'github.copilot.chat.conversationCompaction.model' | 'github.copilot.chat.conversationCompaction.prismModelFilter' | 'github.copilot.chat.conversationCompaction.usePrismCompaction'>;
12477
12477
 
12478
+ // ── 1.132.0-insider+2026072817: +1, ~4 ──
12479
+ export type VscodeSettings_1_132_0_insider_2026072817 = Patch<VscodeSettings_1_131_0_insider_2026072801, {
12480
+ readonly 'agents.voice.voice'?: 'victoria_neutral' | 'kevin_neutral' | 'maya_neutral' | 'daniel_neutral';
12481
+ readonly 'chat.turnStatusPills'?: unknown;
12482
+ readonly 'dictation.experimental.llmCleanup'?: boolean;
12483
+ readonly 'dictation.showTranscript'?: boolean;
12484
+ 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';
12485
+ }, never>;
12486
+
12478
12487
  // ── Version map ──
12479
12488
  // Stable entries map directly to their settings type.
12480
12489
  // Insider entries map to a nested record keyed by 10-digit build release date
@@ -12597,11 +12606,14 @@ interface VscodeVersionMap {
12597
12606
  '2026072417': VscodeSettings_1_131_0_insider_2026072417;
12598
12607
  '2026072801': VscodeSettings_1_131_0_insider_2026072801;
12599
12608
  }>;
12609
+ '1.132.0-insider': InsiderBuilds<{
12610
+ '2026072817': VscodeSettings_1_132_0_insider_2026072817;
12611
+ }>;
12600
12612
  }
12601
12613
 
12602
12614
  export type LatestVscodeSettings = VscodeSettings_1_130_0;
12603
12615
 
12604
- export type LatestInsiderVscodeSettings = VscodeSettings_1_131_0_insider_2026072801;
12616
+ export type LatestInsiderVscodeSettings = VscodeSettings_1_132_0_insider_2026072817;
12605
12617
 
12606
12618
  export type VscodeVersion = keyof VscodeVersionMap;
12607
12619
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode/vscode-settings-history",
3
- "version": "0.0.2-50",
3
+ "version": "0.0.2-51",
4
4
  "type": "module",
5
5
  "description": "Tracks VS Code settings schema changes across versions",
6
6
  "license": "MIT",