@vscode/vscode-settings-history 0.0.2-9 → 0.0.2-90
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/README.md +3 -0
- package/dist/history.json +236280 -0
- package/dist/vscode-settings.d.ts +3054 -10
- package/package.json +5 -6
- package/types.d.ts +18 -0
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vscode/vscode-settings-history",
|
|
3
|
-
"version": "0.0.2-
|
|
3
|
+
"version": "0.0.2-90",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"packageManager": "pnpm@10.18.0+sha512.e804f889f1cecc40d572db084eec3e4881739f8dec69c0ff10d2d1beff9a4e309383ba27b5b750059d7f4c149535b6cd0d2cb1ed3aeb739239a4284a68f40cfa",
|
|
6
5
|
"description": "Tracks VS Code settings schema changes across versions",
|
|
7
6
|
"license": "MIT",
|
|
8
7
|
"repository": {
|
|
@@ -34,9 +33,9 @@
|
|
|
34
33
|
},
|
|
35
34
|
"devDependencies": {
|
|
36
35
|
"@types/node": "^25.6.0",
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
36
|
+
"fast-json-patch": "^3.1.1",
|
|
37
|
+
"tsx": "4.22.4",
|
|
38
|
+
"vitest": "^4.1.4"
|
|
40
39
|
},
|
|
41
|
-
"
|
|
40
|
+
"gitHead": "904011ec1b02e8686395b6d34ce7d5e1145c8098"
|
|
42
41
|
}
|
package/types.d.ts
CHANGED
|
@@ -40,6 +40,8 @@ export interface IConfigurationPropertyInformation {
|
|
|
40
40
|
default?: unknown;
|
|
41
41
|
readOnly?: boolean;
|
|
42
42
|
};
|
|
43
|
+
/** Set when this setting is Copilot-internal (not part of the public JSON schema). */
|
|
44
|
+
internal?: boolean;
|
|
43
45
|
section?: {
|
|
44
46
|
id?: string;
|
|
45
47
|
title?: string;
|
|
@@ -68,6 +70,22 @@ export interface IConfigurationInformation {
|
|
|
68
70
|
[settingId: string]: IConfigurationPropertyInformation;
|
|
69
71
|
}
|
|
70
72
|
|
|
73
|
+
/**
|
|
74
|
+
* A single Copilot-internal configuration entry as returned by
|
|
75
|
+
* `_github.copilot.getInternalConfigurationInformation`.
|
|
76
|
+
*/
|
|
77
|
+
export interface IInternalConfigurationPropertyInformation {
|
|
78
|
+
defaultValue: unknown;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* The shape of the JSON returned by `_github.copilot.getInternalConfigurationInformation`:
|
|
83
|
+
* a map from fully qualified config id to its default value.
|
|
84
|
+
*/
|
|
85
|
+
export interface IInternalConfigurationInformation {
|
|
86
|
+
[id: string]: IInternalConfigurationPropertyInformation;
|
|
87
|
+
}
|
|
88
|
+
|
|
71
89
|
/**
|
|
72
90
|
* @deprecated Use {@link IConfigurationPropertyInformation} instead. Kept as an
|
|
73
91
|
* alias for backward compatibility.
|