@schemastore/vs-2017.3.host 0.0.5 → 0.0.7
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 +22 -6
- package/index.d.ts +13 -13
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,12 +1,28 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
1
|
+
# Type definitions for vs-2017.3.host
|
|
2
|
+
|
|
3
|
+
## Installation
|
|
4
|
+
|
|
5
|
+
```
|
|
6
|
+
npm i @schemastore/vs-2017.3.host
|
|
7
|
+
yarn add @schemastore/vs-2017.3.host
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
## Summary
|
|
3
11
|
|
|
4
|
-
# Summary
|
|
5
12
|
This package contains type definitions for vs-2017.3.host.
|
|
6
13
|
|
|
7
|
-
##
|
|
8
|
-
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
import * as vs_2017_3_host from '@schemastore/vs-2017.3.host';
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Note
|
|
21
|
+
|
|
22
|
+
The definitions were auto-generated by [schemastore-updater](https://github.com/ffflorian/schemastore-updater) using [`json-schema-to-typescript`](https://www.npmjs.com/package/json-schema-to-typescript).
|
|
9
23
|
|
|
10
24
|
## Additional Details
|
|
11
|
-
|
|
25
|
+
|
|
26
|
+
* [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/vs-2017.3.host)
|
|
27
|
+
* Last updated: Sat, Jul 19, 2025, 17:01:26 GMT
|
|
12
28
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export type SymbolInfo = OverrideInfo & {
|
|
|
31
31
|
* Specifies the name and description overrides for individual choice parameters
|
|
32
32
|
*/
|
|
33
33
|
choices?: OverrideInfo[];
|
|
34
|
-
[k: string]: unknown;
|
|
34
|
+
[k: string]: unknown | undefined;
|
|
35
35
|
};
|
|
36
36
|
|
|
37
37
|
export interface JSONSchemaForIDETemplateHostFiles1 {
|
|
@@ -60,15 +60,15 @@ export interface JSONSchemaForIDETemplateHostFiles1 {
|
|
|
60
60
|
*/
|
|
61
61
|
disableHttpsSymbol?: string;
|
|
62
62
|
/**
|
|
63
|
-
* Sets the default isVisible for a symbolInfo if not
|
|
63
|
+
* Sets the default isVisible for a symbolInfo if not explicitly specified. Controls if the parameter is displayed in the IDE. Defaults to false if not specified
|
|
64
64
|
*/
|
|
65
65
|
defaultSymbolVisibility?: boolean;
|
|
66
66
|
/**
|
|
67
|
-
* The
|
|
67
|
+
* The default value for a symbolInfo if not explicitly specified. Determines if the user entered value should be persisted and used the next time a template is selected. Used starting in Visual Studio 2022 17.3
|
|
68
68
|
*/
|
|
69
69
|
defaultPersistenceScope?: "none" | "templateGroup" | "shared";
|
|
70
70
|
/**
|
|
71
|
-
* The
|
|
71
|
+
* The default value for a symbolInfo if not explicitly specified. Specifies the scope name of the persisted template option. To avoid conflicts with other templates, treat this like a namespace. Used starting in Visual Studio 2022 17.3
|
|
72
72
|
*/
|
|
73
73
|
defaultPersistenceScopeName?: string;
|
|
74
74
|
/**
|
|
@@ -80,20 +80,20 @@ export interface JSONSchemaForIDETemplateHostFiles1 {
|
|
|
80
80
|
*/
|
|
81
81
|
tags?: Tags[];
|
|
82
82
|
/**
|
|
83
|
-
*
|
|
83
|
+
* Unsupported Hosts. This can be used to suppress the template from being displayed in the new project dialog in Visual Studio.
|
|
84
84
|
*/
|
|
85
85
|
unsupportedHosts?: UnsupportedHost[];
|
|
86
86
|
/**
|
|
87
87
|
* Required components in order to display this template.
|
|
88
88
|
*/
|
|
89
89
|
requiredComponents?: RequiredComponent[];
|
|
90
|
-
[k: string]: unknown;
|
|
90
|
+
[k: string]: unknown | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface Text {
|
|
93
93
|
text: string;
|
|
94
94
|
package?: string;
|
|
95
95
|
id?: string;
|
|
96
|
-
[k: string]: unknown;
|
|
96
|
+
[k: string]: unknown | undefined;
|
|
97
97
|
}
|
|
98
98
|
export interface OverrideInfo {
|
|
99
99
|
/**
|
|
@@ -108,7 +108,7 @@ export interface OverrideInfo {
|
|
|
108
108
|
* Overrides the name specified in the template.json
|
|
109
109
|
*/
|
|
110
110
|
description?: Text;
|
|
111
|
-
[k: string]: unknown;
|
|
111
|
+
[k: string]: unknown | undefined;
|
|
112
112
|
}
|
|
113
113
|
export interface Tags {
|
|
114
114
|
/**
|
|
@@ -123,7 +123,7 @@ export interface Tags {
|
|
|
123
123
|
* Tags to remove. * can be specified to remove all tags specified in template.json
|
|
124
124
|
*/
|
|
125
125
|
remove?: string[];
|
|
126
|
-
[k: string]: unknown;
|
|
126
|
+
[k: string]: unknown | undefined;
|
|
127
127
|
}
|
|
128
128
|
export interface UnsupportedHost {
|
|
129
129
|
/**
|
|
@@ -134,9 +134,9 @@ export interface UnsupportedHost {
|
|
|
134
134
|
* A version range specifying the unsupported host versions. This uses the nuget package format.
|
|
135
135
|
*/
|
|
136
136
|
version?: {
|
|
137
|
-
[k: string]: unknown;
|
|
137
|
+
[k: string]: unknown | undefined;
|
|
138
138
|
};
|
|
139
|
-
[k: string]: unknown;
|
|
139
|
+
[k: string]: unknown | undefined;
|
|
140
140
|
}
|
|
141
141
|
/**
|
|
142
142
|
* To require a particular host version specify the hostId and optionally version only. To require a particular SetupComponent or Extension, specify the ID and set the componentType appropriately. Version range is optional.
|
|
@@ -155,7 +155,7 @@ export interface RequiredComponent {
|
|
|
155
155
|
* A version range specifying the required version range. This uses the nuget package format.
|
|
156
156
|
*/
|
|
157
157
|
version?: {
|
|
158
|
-
[k: string]: unknown;
|
|
158
|
+
[k: string]: unknown | undefined;
|
|
159
159
|
};
|
|
160
|
-
[k: string]: unknown;
|
|
160
|
+
[k: string]: unknown | undefined;
|
|
161
161
|
}
|
package/package.json
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"name": "@schemastore/vs-2017.3.host",
|
|
8
8
|
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/vs-2017.3.host",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"
|
|
10
|
+
"typeScriptVersion": "2.2",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
}
|
|
12
|
+
"typesPublisherContentHash": "db21dd1cfe78cf8ddb12fdd6e9c26bc982354fd623f0a7794125f14703f5996d",
|
|
13
|
+
"version": "0.0.7"
|
|
14
|
+
}
|