@vscode/vscode-settings-history 0.0.2-0 → 0.0.2-2
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 +245224 -6119
- package/dist/vscode-settings.d.ts +9402 -382
- package/package.json +2 -1
- package/types.d.ts +69 -5
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vscode/vscode-settings-history",
|
|
3
|
-
"version": "0.0.2-
|
|
3
|
+
"version": "0.0.2-2",
|
|
4
4
|
"type": "module",
|
|
5
|
+
"packageManager": "pnpm@10.18.0+sha512.e804f889f1cecc40d572db084eec3e4881739f8dec69c0ff10d2d1beff9a4e309383ba27b5b750059d7f4c149535b6cd0d2cb1ed3aeb739239a4284a68f40cfa",
|
|
5
6
|
"description": "Tracks VS Code settings schema changes across versions",
|
|
6
7
|
"license": "MIT",
|
|
7
8
|
"repository": {
|
package/types.d.ts
CHANGED
|
@@ -1,15 +1,79 @@
|
|
|
1
|
-
/**
|
|
2
|
-
|
|
1
|
+
/**
|
|
2
|
+
* Schema information for a single configuration property as returned by
|
|
3
|
+
* `_developer.getConfigurationInformation`. Self-contained so it can be
|
|
4
|
+
* copied verbatim into other projects.
|
|
5
|
+
*/
|
|
6
|
+
export interface IConfigurationPropertyInformation {
|
|
3
7
|
type?: string | string[];
|
|
4
|
-
|
|
8
|
+
default?: unknown;
|
|
5
9
|
description?: string;
|
|
6
10
|
markdownDescription?: string;
|
|
7
|
-
default?: unknown;
|
|
8
|
-
items?: SettingSchema;
|
|
9
11
|
deprecationMessage?: string;
|
|
10
12
|
markdownDeprecationMessage?: string;
|
|
13
|
+
enum?: unknown[];
|
|
14
|
+
enumDescriptions?: string[];
|
|
15
|
+
markdownEnumDescriptions?: string[];
|
|
16
|
+
enumItemLabels?: string[];
|
|
17
|
+
/** 1=APPLICATION, 2=MACHINE, 3=WINDOW, 4=RESOURCE, 5=LANGUAGE_OVERRIDABLE, 6=APPLICATION_MACHINE, 7=MACHINE_OVERRIDABLE */
|
|
18
|
+
scope?: number;
|
|
19
|
+
restricted?: boolean;
|
|
20
|
+
included?: boolean;
|
|
21
|
+
tags?: string[];
|
|
22
|
+
ignoreSync?: boolean;
|
|
23
|
+
disallowSyncIgnore?: boolean;
|
|
24
|
+
disallowConfigurationDefault?: boolean;
|
|
25
|
+
keywords?: string[];
|
|
26
|
+
editPresentation?: string;
|
|
27
|
+
order?: number;
|
|
28
|
+
policy?: {
|
|
29
|
+
name: string;
|
|
30
|
+
minimumVersion: string;
|
|
31
|
+
description?: string;
|
|
32
|
+
previewFeature?: string;
|
|
33
|
+
defaultValue?: string | number;
|
|
34
|
+
};
|
|
35
|
+
experiment?: {
|
|
36
|
+
mode: 'startup' | 'auto';
|
|
37
|
+
name?: string;
|
|
38
|
+
};
|
|
39
|
+
agentsWindow?: {
|
|
40
|
+
default?: unknown;
|
|
41
|
+
readOnly?: boolean;
|
|
42
|
+
};
|
|
43
|
+
section?: {
|
|
44
|
+
id?: string;
|
|
45
|
+
title?: string;
|
|
46
|
+
order?: number;
|
|
47
|
+
extensionInfo?: {
|
|
48
|
+
id: string;
|
|
49
|
+
displayName?: string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
defaultDefaultValue?: unknown;
|
|
53
|
+
source?: string | {
|
|
54
|
+
id: string;
|
|
55
|
+
displayName?: string;
|
|
56
|
+
};
|
|
57
|
+
/** JSON Schema field for array items. */
|
|
58
|
+
items?: IConfigurationPropertyInformation;
|
|
59
|
+
// Additional JSON Schema fields may be present (e.g. minimum, maximum, pattern, properties).
|
|
60
|
+
[key: string]: unknown;
|
|
11
61
|
}
|
|
12
62
|
|
|
63
|
+
/**
|
|
64
|
+
* The shape of the JSON returned by `_developer.getConfigurationInformation`:
|
|
65
|
+
* a map from configuration key to its schema information.
|
|
66
|
+
*/
|
|
67
|
+
export interface IConfigurationInformation {
|
|
68
|
+
[settingId: string]: IConfigurationPropertyInformation;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* @deprecated Use {@link IConfigurationPropertyInformation} instead. Kept as an
|
|
73
|
+
* alias for backward compatibility.
|
|
74
|
+
*/
|
|
75
|
+
export type SettingSchema = IConfigurationPropertyInformation;
|
|
76
|
+
|
|
13
77
|
/** RFC 6902 JSON Patch operation. */
|
|
14
78
|
export interface PatchOperation {
|
|
15
79
|
op: 'add' | 'remove' | 'replace' | 'move' | 'copy' | 'test';
|