@vscode/vscode-settings-history 0.0.2-45 → 0.0.2-46

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
@@ -392569,5 +392569,81 @@
392569
392569
  }
392570
392570
  }
392571
392571
  ]
392572
+ },
392573
+ {
392574
+ "version": "1.131.0-insider+2026072117",
392575
+ "base": {
392576
+ "version": "1.130.0-insider+2026072017"
392577
+ },
392578
+ "patch": [
392579
+ {
392580
+ "op": "replace",
392581
+ "path": "/chat.speechToText.enabled/markdownDescription",
392582
+ "value": "Enables dictation into the chat input using on-device speech-to-text. When enabled on a supported platform, a microphone button appears in the chat input; the transcription model is downloaded on first use and runs locally."
392583
+ },
392584
+ {
392585
+ "op": "replace",
392586
+ "path": "/github.copilot.chat.tools.grepSearch.defaultMaxResults/defaultDefaultValue",
392587
+ "value": 100
392588
+ },
392589
+ {
392590
+ "op": "replace",
392591
+ "path": "/github.copilot.chat.tools.grepSearch.defaultMaxResults/markdownDescription",
392592
+ "value": "The default maximum number of results to return from the grep search tool. The default is 100."
392593
+ },
392594
+ {
392595
+ "op": "replace",
392596
+ "path": "/github.copilot.chat.tools.grepSearch.defaultMaxResults/default",
392597
+ "value": 100
392598
+ },
392599
+ {
392600
+ "op": "add",
392601
+ "path": "/terminal.integrated.resizeDimensionsOverlay.enabled",
392602
+ "value": {
392603
+ "markdownDescription": "Whether to show a visual overlay with the terminal's columns and rows when it is resized.",
392604
+ "type": "boolean",
392605
+ "default": true,
392606
+ "section": {
392607
+ "id": "terminal",
392608
+ "title": "Integrated Terminal",
392609
+ "order": 100
392610
+ },
392611
+ "defaultDefaultValue": true,
392612
+ "scope": 4,
392613
+ "restricted": false
392614
+ }
392615
+ },
392616
+ {
392617
+ "op": "add",
392618
+ "path": "/github.copilot.chat.gpt56Verbosity.enabled",
392619
+ "value": {
392620
+ "type": "boolean",
392621
+ "default": true,
392622
+ "markdownDescription": "Sets the response verbosity to low for gpt-5.6 models.",
392623
+ "tags": [
392624
+ "experimental",
392625
+ "onExp"
392626
+ ],
392627
+ "experiment": {
392628
+ "mode": "startup"
392629
+ },
392630
+ "scope": 4,
392631
+ "section": {
392632
+ "id": "experimental",
392633
+ "title": "GitHub Copilot",
392634
+ "extensionInfo": {
392635
+ "id": "GitHub.copilot-chat",
392636
+ "displayName": "GitHub Copilot"
392637
+ }
392638
+ },
392639
+ "source": {
392640
+ "id": "GitHub.copilot-chat",
392641
+ "displayName": "GitHub Copilot"
392642
+ },
392643
+ "defaultDefaultValue": true,
392644
+ "restricted": false
392645
+ }
392646
+ }
392647
+ ]
392572
392648
  }
392573
392649
  ]
@@ -12339,6 +12339,14 @@ export type VscodeSettings_1_130_0_insider_2026072017 = Patch<VscodeSettings_1_1
12339
12339
  readonly 'notebook.editorOptionsCustomizations'?: unknown;
12340
12340
  }, 'editor.suggest.maxVisibleSuggestions' | 'search.location' | 'search.maintainFileSearchCache' | 'search.usePCRE2' | 'search.useRipgrep'>;
12341
12341
 
12342
+ // ── 1.131.0-insider+2026072117: +2, ~2 ──
12343
+ export type VscodeSettings_1_131_0_insider_2026072117 = Patch<VscodeSettings_1_130_0_insider_2026072017, {
12344
+ readonly 'chat.speechToText.enabled'?: boolean;
12345
+ readonly 'github.copilot.chat.gpt56Verbosity.enabled'?: boolean;
12346
+ readonly 'github.copilot.chat.tools.grepSearch.defaultMaxResults'?: number;
12347
+ readonly 'terminal.integrated.resizeDimensionsOverlay.enabled'?: boolean;
12348
+ }, never>;
12349
+
12342
12350
  // ── Version map ──
12343
12351
  // Stable entries map directly to their settings type.
12344
12352
  // Insider entries map to a nested record keyed by 10-digit build release date
@@ -12453,11 +12461,14 @@ interface VscodeVersionMap {
12453
12461
  '2026071716': VscodeSettings_1_130_0_insider_2026071716;
12454
12462
  '2026072017': VscodeSettings_1_130_0_insider_2026072017;
12455
12463
  }>;
12464
+ '1.131.0-insider': InsiderBuilds<{
12465
+ '2026072117': VscodeSettings_1_131_0_insider_2026072117;
12466
+ }>;
12456
12467
  }
12457
12468
 
12458
12469
  export type LatestVscodeSettings = VscodeSettings_1_129_1;
12459
12470
 
12460
- export type LatestInsiderVscodeSettings = VscodeSettings_1_130_0_insider_2026072017;
12471
+ export type LatestInsiderVscodeSettings = VscodeSettings_1_131_0_insider_2026072117;
12461
12472
 
12462
12473
  export type VscodeVersion = keyof VscodeVersionMap;
12463
12474
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vscode/vscode-settings-history",
3
- "version": "0.0.2-45",
3
+ "version": "0.0.2-46",
4
4
  "type": "module",
5
5
  "description": "Tracks VS Code settings schema changes across versions",
6
6
  "license": "MIT",