@vscode/vscode-settings-history 0.0.2-37 → 0.0.2-38
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 +1384 -0
- package/dist/vscode-settings.d.ts +14 -1
- package/package.json +1 -1
|
@@ -12127,6 +12127,18 @@ export type VscodeSettings_1_128_0_insider_2026070317 = Patch<VscodeSettings_1_1
|
|
|
12127
12127
|
readonly 'workbench.browser.enableRemoteProxy'?: boolean;
|
|
12128
12128
|
}, never>;
|
|
12129
12129
|
|
|
12130
|
+
// ── 1.128.0-insider+2026070704: +2, ~6, -2 ──
|
|
12131
|
+
export type VscodeSettings_1_128_0_insider_2026070704 = Patch<VscodeSettings_1_128_0_insider_2026070317, {
|
|
12132
|
+
readonly 'chat.byokUtilityModelDefault'?: 'none' | 'mainAgent' | 'copilot';
|
|
12133
|
+
readonly 'chat.tools.eligibleForAutoApproval'?: Record<string, unknown>;
|
|
12134
|
+
readonly 'chat.turnStatusPills'?: Record<string, unknown>;
|
|
12135
|
+
readonly 'chat.utilityModel'?: '';
|
|
12136
|
+
readonly 'chat.utilitySmallModel'?: '';
|
|
12137
|
+
readonly 'editor.defaultFoldingRangeProvider'?: string | null;
|
|
12138
|
+
readonly 'editor.defaultFormatter'?: string | null;
|
|
12139
|
+
readonly 'notebook.defaultFormatter'?: string | null;
|
|
12140
|
+
}, 'chat.agent.maxRequests' | 'chat.useCopilotModelsForUtilityModels'>;
|
|
12141
|
+
|
|
12130
12142
|
// ── Version map ──
|
|
12131
12143
|
// Stable entries map directly to their settings type.
|
|
12132
12144
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -12224,12 +12236,13 @@ interface VscodeVersionMap {
|
|
|
12224
12236
|
'2026070121': VscodeSettings_1_128_0_insider_2026070121;
|
|
12225
12237
|
'2026070217': VscodeSettings_1_128_0_insider_2026070217;
|
|
12226
12238
|
'2026070317': VscodeSettings_1_128_0_insider_2026070317;
|
|
12239
|
+
'2026070704': VscodeSettings_1_128_0_insider_2026070704;
|
|
12227
12240
|
}>;
|
|
12228
12241
|
}
|
|
12229
12242
|
|
|
12230
12243
|
export type LatestVscodeSettings = VscodeSettings_1_127_0;
|
|
12231
12244
|
|
|
12232
|
-
export type LatestInsiderVscodeSettings =
|
|
12245
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_128_0_insider_2026070704;
|
|
12233
12246
|
|
|
12234
12247
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
12235
12248
|
|
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-38",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "pnpm@10.18.0+sha512.e804f889f1cecc40d572db084eec3e4881739f8dec69c0ff10d2d1beff9a4e309383ba27b5b750059d7f4c149535b6cd0d2cb1ed3aeb739239a4284a68f40cfa",
|
|
6
6
|
"description": "Tracks VS Code settings schema changes across versions",
|