@schemastore/vs-2017.3.host 0.0.5 → 0.0.6

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.
Files changed (3) hide show
  1. package/README.md +22 -6
  2. package/index.d.ts +9 -9
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -1,12 +1,28 @@
1
- # Installation
2
- > `npm install --save @schemastore/vs-2017.3.host`
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
- ## Details
8
- Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/vs-2017.3.host.
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
- * Last updated: Fri, Feb 24, 2023, 11:23:42 GMT
25
+
26
+ * [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/vs-2017.3.host)
27
+ * Last updated: Fri, Jun 30, 2023, 21:04:05 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 {
@@ -87,13 +87,13 @@ export interface JSONSchemaForIDETemplateHostFiles1 {
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
- "typesPublisherContentHash": "db21dd1cfe78cf8ddb12fdd6e9c26bc982354fd623f0a7794125f14703f5996d",
10
+ "typeScriptVersion": "2.2",
11
11
  "types": "index.d.ts",
12
- "version": "0.0.5",
13
- "typeScriptVersion": "2.2"
14
- }
12
+ "typesPublisherContentHash": "e5268e8ee86ad48dd982189695615cdc91ea4afaba07511616fc2ac8387ee669",
13
+ "version": "0.0.6"
14
+ }