@storm-software/config 1.123.0 → 1.123.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.
@@ -1,631 +1,1602 @@
1
1
  {
2
- "$ref": "#/definitions/StormWorkspaceConfiguration",
3
- "definitions": {
4
- "StormWorkspaceConfiguration": {
5
- "type": "object",
6
- "properties": {
7
- "$schema": {
8
- "anyOf": [
9
- {
10
- "anyOf": [
11
- {
12
- "not": {}
13
- },
14
- {
15
- "type": "string",
16
- "default": "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json"
17
- }
18
- ]
19
- },
20
- {
21
- "type": "null"
22
- }
23
- ],
24
- "description": "The URL to the JSON schema file that describes the Storm configuration file"
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "description": "Storm Workspace config values used during various dev-ops processes. This type is a combination of the StormPackageConfig and StormProject types. It represents the config of the entire monorepo.",
4
+ "type": "object",
5
+ "properties": {
6
+ "$schema": {
7
+ "description": "The URL to the JSON schema file that describes the Storm configuration file",
8
+ "anyOf": [
9
+ {
10
+ "default": "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json",
11
+ "type": "string"
25
12
  },
26
- "extends": {
27
- "anyOf": [
28
- {
13
+ {
14
+ "type": "null"
15
+ }
16
+ ]
17
+ },
18
+ "extends": {
19
+ "description": "The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration.",
20
+ "anyOf": [
21
+ {
22
+ "description": "The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration.",
23
+ "type": "string"
24
+ },
25
+ {
26
+ "type": "array",
27
+ "items": {
28
+ "description": "The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration.",
29
+ "type": "string"
30
+ }
31
+ }
32
+ ]
33
+ },
34
+ "name": {
35
+ "description": "The name of the service/package/scope using this configuration",
36
+ "type": "string"
37
+ },
38
+ "namespace": {
39
+ "description": "The namespace of the package",
40
+ "type": "string"
41
+ },
42
+ "organization": {
43
+ "description": "The organization of the workspace. This can be a string or an object containing the organization's details",
44
+ "anyOf": [
45
+ {
46
+ "description": "The workspace's organization details",
47
+ "type": "object",
48
+ "properties": {
49
+ "name": {
50
+ "description": "The name of the organization",
51
+ "type": "string"
52
+ },
53
+ "description": {
54
+ "description": "A description of the organization",
55
+ "type": "string"
56
+ },
57
+ "logo": {
58
+ "description": "A URL to the organization's logo image",
29
59
  "type": "string",
30
- "description": "The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration."
60
+ "format": "uri"
31
61
  },
32
- {
33
- "type": "array",
34
- "items": {
35
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/extends/anyOf/0"
36
- }
37
- }
38
- ],
39
- "description": "The path to a base config file to use as a configuration preset file. Documentation can be found at https://github.com/unjs/c12#extending-configuration."
40
- },
41
- "name": {
42
- "type": "string",
43
- "description": "The name of the service/package/scope using this configuration"
44
- },
45
- "namespace": {
46
- "type": "string",
47
- "description": "The namespace of the package"
48
- },
49
- "organization": {
50
- "anyOf": [
51
- {
52
- "type": "object",
53
- "properties": {
54
- "name": {
55
- "type": "string",
56
- "description": "The name of the organization"
57
- },
58
- "description": {
59
- "type": "string",
60
- "description": "A description of the organization"
61
- },
62
- "logo": {
63
- "type": "string",
64
- "format": "uri",
65
- "description": "A URL to the organization's logo image"
66
- },
67
- "icon": {
68
- "type": "string",
69
- "format": "uri",
70
- "description": "A URL to the organization's icon image"
71
- },
72
- "url": {
73
- "type": "string",
74
- "format": "uri",
75
- "description": "A URL to a page that provides more information about the organization"
76
- }
77
- },
78
- "required": ["name"],
79
- "additionalProperties": false,
80
- "description": "The workspace's organization details"
62
+ "icon": {
63
+ "description": "A URL to the organization's icon image",
64
+ "type": "string",
65
+ "format": "uri"
81
66
  },
82
- {
67
+ "url": {
68
+ "description": "A URL to a page that provides more information about the organization",
83
69
  "type": "string",
84
- "description": "The organization of the workspace"
70
+ "format": "uri"
85
71
  }
86
- ],
87
- "description": "The organization of the workspace. This can be a string or an object containing the organization's details"
72
+ },
73
+ "required": ["name"],
74
+ "additionalProperties": false
88
75
  },
89
- "repository": {
90
- "type": "string",
91
- "description": "The repo URL of the workspace (i.e. GitHub)"
76
+ {
77
+ "description": "The organization of the workspace",
78
+ "type": "string"
79
+ }
80
+ ]
81
+ },
82
+ "repository": {
83
+ "description": "The repo URL of the workspace (i.e. GitHub)",
84
+ "type": "string"
85
+ },
86
+ "license": {
87
+ "description": "The license type of the package",
88
+ "default": "Apache-2.0",
89
+ "type": "string"
90
+ },
91
+ "homepage": {
92
+ "description": "The homepage of the workspace",
93
+ "type": "string",
94
+ "format": "uri"
95
+ },
96
+ "docs": {
97
+ "description": "The documentation site for the workspace",
98
+ "type": "string",
99
+ "format": "uri"
100
+ },
101
+ "portal": {
102
+ "description": "The development portal site for the workspace",
103
+ "type": "string",
104
+ "format": "uri"
105
+ },
106
+ "licensing": {
107
+ "description": "The licensing site for the workspace",
108
+ "type": "string",
109
+ "format": "uri"
110
+ },
111
+ "contact": {
112
+ "description": "The contact site for the workspace",
113
+ "type": "string",
114
+ "format": "uri"
115
+ },
116
+ "support": {
117
+ "description": "The support site for the workspace. If not provided, this is defaulted to the `contact` config value",
118
+ "type": "string",
119
+ "format": "uri"
120
+ },
121
+ "branch": {
122
+ "description": "The branch of the workspace",
123
+ "default": "main",
124
+ "type": "string"
125
+ },
126
+ "preid": {
127
+ "description": "A tag specifying the version pre-release identifier",
128
+ "type": "string"
129
+ },
130
+ "owner": {
131
+ "description": "The owner of the package",
132
+ "default": "@storm-software/admin",
133
+ "type": "string"
134
+ },
135
+ "bot": {
136
+ "description": "The workspace's bot user's config used to automated various operations tasks",
137
+ "type": "object",
138
+ "properties": {
139
+ "name": {
140
+ "description": "The workspace bot user's name (this is the bot that will be used to perform various tasks)",
141
+ "default": "stormie-bot",
142
+ "type": "string"
92
143
  },
93
- "license": {
144
+ "email": {
145
+ "description": "The email of the workspace bot",
146
+ "default": "bot@stormsoftware.com",
94
147
  "type": "string",
95
- "default": "Apache-2.0",
96
- "description": "The license type of the package"
148
+ "format": "email",
149
+ "pattern": "^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"
150
+ }
151
+ },
152
+ "required": ["name", "email"],
153
+ "additionalProperties": false
154
+ },
155
+ "release": {
156
+ "description": "The workspace's release config used during the release process",
157
+ "type": "object",
158
+ "properties": {
159
+ "banner": {
160
+ "description": "A URL to a banner image used to display the workspace's release",
161
+ "default": "https://public.storm-cdn.com/brand-banner.png",
162
+ "type": "string"
97
163
  },
98
- "homepage": {
99
- "type": "string",
100
- "format": "uri",
101
- "description": "The homepage of the workspace"
164
+ "header": {
165
+ "description": "A header message appended to the start of the workspace's release notes",
166
+ "type": "string"
102
167
  },
103
- "docs": {
104
- "type": "string",
105
- "format": "uri",
106
- "description": "The documentation site for the workspace"
168
+ "footer": {
169
+ "description": "A footer message appended to the end of the workspace's release notes",
170
+ "default": "\nStorm Software is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.\n\nJoin us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.\n\nIf this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!\n",
171
+ "type": "string"
172
+ }
173
+ },
174
+ "required": ["banner", "footer"],
175
+ "additionalProperties": false
176
+ },
177
+ "account": {
178
+ "description": "The workspace's account config used to store various social media links",
179
+ "type": "object",
180
+ "properties": {
181
+ "twitter": {
182
+ "description": "A Twitter/X account associated with the organization/project",
183
+ "default": "StormSoftwareHQ",
184
+ "type": "string"
107
185
  },
108
- "portal": {
109
- "type": "string",
110
- "format": "uri",
111
- "description": "The development portal site for the workspace"
186
+ "discord": {
187
+ "description": "A Discord account associated with the organization/project",
188
+ "default": "https://discord.gg/MQ6YVzakM5",
189
+ "type": "string"
112
190
  },
113
- "licensing": {
114
- "type": "string",
115
- "format": "uri",
116
- "description": "The licensing site for the workspace"
191
+ "telegram": {
192
+ "description": "A Telegram account associated with the organization/project",
193
+ "default": "https://t.me/storm_software",
194
+ "type": "string"
117
195
  },
118
- "contact": {
119
- "type": "string",
120
- "format": "uri",
121
- "description": "The contact site for the workspace"
196
+ "slack": {
197
+ "description": "A Slack account associated with the organization/project",
198
+ "default": "https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA",
199
+ "type": "string"
122
200
  },
123
- "support": {
124
- "type": "string",
125
- "format": "uri",
126
- "description": "The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
201
+ "medium": {
202
+ "description": "A Medium account associated with the organization/project",
203
+ "default": "https://medium.com/storm-software",
204
+ "type": "string"
127
205
  },
128
- "branch": {
129
- "type": "string",
130
- "default": "main",
131
- "description": "The branch of the workspace"
206
+ "github": {
207
+ "description": "A GitHub account associated with the organization/project",
208
+ "default": "https://github.com/storm-software",
209
+ "type": "string"
210
+ }
211
+ },
212
+ "required": [
213
+ "twitter",
214
+ "discord",
215
+ "telegram",
216
+ "slack",
217
+ "medium",
218
+ "github"
219
+ ],
220
+ "additionalProperties": false
221
+ },
222
+ "error": {
223
+ "description": "The workspace's error config used during the error process",
224
+ "type": "object",
225
+ "properties": {
226
+ "codesFile": {
227
+ "description": "The path to the workspace's error codes JSON file",
228
+ "default": "tools/errors/codes.json",
229
+ "type": "string"
132
230
  },
133
- "preid": {
231
+ "url": {
232
+ "description": "A URL to a page that looks up the workspace's error messages given a specific error code",
134
233
  "type": "string",
135
- "description": "A tag specifying the version pre-release identifier"
234
+ "format": "uri"
235
+ }
236
+ },
237
+ "required": ["codesFile"],
238
+ "additionalProperties": false
239
+ },
240
+ "mode": {
241
+ "description": "The current runtime environment mode for the package",
242
+ "default": "production",
243
+ "type": "string",
244
+ "enum": ["development", "staging", "production"]
245
+ },
246
+ "workspaceRoot": {
247
+ "description": "The root directory of the workspace",
248
+ "type": "string"
249
+ },
250
+ "externalPackagePatterns": {
251
+ "description": "The build will use these package patterns to determine if they should be external to the bundle",
252
+ "default": [],
253
+ "type": "array",
254
+ "items": {
255
+ "type": "string"
256
+ }
257
+ },
258
+ "skipCache": {
259
+ "description": "Should all known types of workspace caching be skipped?",
260
+ "default": false,
261
+ "type": "boolean"
262
+ },
263
+ "directories": {
264
+ "description": "Various directories used by the workspace to store data, cache, and configuration files",
265
+ "type": "object",
266
+ "properties": {
267
+ "cache": {
268
+ "description": "The directory used to store the environment's cached file data",
269
+ "type": "string"
136
270
  },
137
- "owner": {
138
- "type": "string",
139
- "default": "@storm-software/admin",
140
- "description": "The owner of the package"
271
+ "data": {
272
+ "description": "The directory used to store the environment's data files",
273
+ "type": "string"
141
274
  },
142
- "bot": {
143
- "type": "object",
144
- "properties": {
145
- "name": {
146
- "type": "string",
147
- "default": "stormie-bot",
148
- "description": "The workspace bot user's name (this is the bot that will be used to perform various tasks)"
149
- },
150
- "email": {
151
- "type": "string",
152
- "format": "email",
153
- "default": "bot@stormsoftware.com",
154
- "description": "The email of the workspace bot"
155
- }
156
- },
157
- "additionalProperties": false,
158
- "description": "The workspace's bot user's config used to automated various operations tasks"
275
+ "config": {
276
+ "description": "The directory used to store the environment's configuration files",
277
+ "type": "string"
159
278
  },
160
- "release": {
161
- "type": "object",
162
- "properties": {
163
- "banner": {
164
- "type": "string",
165
- "default": "https://public.storm-cdn.com/brand-banner.png",
166
- "description": "A URL to a banner image used to display the workspace's release"
167
- },
168
- "header": {
169
- "type": "string",
170
- "description": "A header message appended to the start of the workspace's release notes"
171
- },
172
- "footer": {
173
- "type": "string",
174
- "default": "\nStorm Software is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.\n\nJoin us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.\n\nIf this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!\n",
175
- "description": "A footer message appended to the end of the workspace's release notes"
176
- }
177
- },
178
- "additionalProperties": false,
179
- "description": "The workspace's release config used during the release process"
279
+ "temp": {
280
+ "description": "The directory used to store the environment's temp files",
281
+ "type": "string"
180
282
  },
181
- "account": {
182
- "type": "object",
183
- "properties": {
184
- "twitter": {
185
- "type": "string",
186
- "default": "StormSoftwareHQ",
187
- "description": "A Twitter/X account associated with the organization/project"
188
- },
189
- "discord": {
190
- "type": "string",
191
- "default": "https://discord.gg/MQ6YVzakM5",
192
- "description": "A Discord account associated with the organization/project"
193
- },
194
- "telegram": {
195
- "type": "string",
196
- "default": "https://t.me/storm_software",
197
- "description": "A Telegram account associated with the organization/project"
198
- },
199
- "slack": {
200
- "type": "string",
201
- "default": "https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA",
202
- "description": "A Slack account associated with the organization/project"
203
- },
204
- "medium": {
205
- "type": "string",
206
- "default": "https://medium.com/storm-software",
207
- "description": "A Medium account associated with the organization/project"
208
- },
209
- "github": {
210
- "type": "string",
211
- "default": "https://github.com/storm-software",
212
- "description": "A GitHub account associated with the organization/project"
213
- }
214
- },
215
- "additionalProperties": false,
216
- "description": "The workspace's account config used to store various social media links"
283
+ "log": {
284
+ "description": "The directory used to store the environment's temp files",
285
+ "type": "string"
217
286
  },
218
- "error": {
219
- "type": "object",
220
- "properties": {
221
- "codesFile": {
222
- "type": "string",
223
- "default": "tools/errors/codes.json",
224
- "description": "The path to the workspace's error codes JSON file"
225
- },
226
- "url": {
227
- "type": "string",
228
- "format": "uri",
229
- "description": "A URL to a page that looks up the workspace's error messages given a specific error code"
230
- }
231
- },
232
- "additionalProperties": false,
233
- "description": "The workspace's error config used during the error process"
234
- },
235
- "mode": {
236
- "type": "string",
237
- "enum": ["development", "staging", "production"],
238
- "default": "production",
239
- "description": "The current runtime environment mode for the package"
240
- },
241
- "workspaceRoot": {
287
+ "build": {
288
+ "description": "The directory used to store the workspace's distributable files after a build (relative to the workspace root)",
289
+ "default": "dist",
290
+ "type": "string"
291
+ }
292
+ },
293
+ "required": ["build"],
294
+ "additionalProperties": false
295
+ },
296
+ "packageManager": {
297
+ "description": "The JavaScript/TypeScript package manager used by the repository",
298
+ "default": "npm",
299
+ "type": "string",
300
+ "enum": ["npm", "yarn", "pnpm", "bun"]
301
+ },
302
+ "timezone": {
303
+ "description": "The default timezone of the workspace",
304
+ "default": "America/New_York",
305
+ "type": "string"
306
+ },
307
+ "locale": {
308
+ "description": "The default locale of the workspace",
309
+ "default": "en-US",
310
+ "type": "string"
311
+ },
312
+ "logLevel": {
313
+ "description": "The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`).",
314
+ "default": "info",
315
+ "type": "string",
316
+ "enum": [
317
+ "silent",
318
+ "fatal",
319
+ "error",
320
+ "warn",
321
+ "success",
322
+ "info",
323
+ "debug",
324
+ "trace",
325
+ "all"
326
+ ]
327
+ },
328
+ "skipConfigLogging": {
329
+ "description": "Should the logging of the current Storm Workspace configuration be skipped?",
330
+ "type": "boolean"
331
+ },
332
+ "registry": {
333
+ "description": "A list of remote registry URLs used by Storm Software",
334
+ "default": {},
335
+ "type": "object",
336
+ "properties": {
337
+ "github": {
338
+ "description": "A remote registry URL used to publish distributable packages",
242
339
  "type": "string",
243
- "description": "The root directory of the workspace"
244
- },
245
- "externalPackagePatterns": {
246
- "type": "array",
247
- "items": {
248
- "type": "string"
249
- },
250
- "default": [],
251
- "description": "The build will use these package patterns to determine if they should be external to the bundle"
252
- },
253
- "skipCache": {
254
- "type": "boolean",
255
- "default": false,
256
- "description": "Should all known types of workspace caching be skipped?"
257
- },
258
- "directories": {
259
- "type": "object",
260
- "properties": {
261
- "cache": {
262
- "type": "string",
263
- "description": "The directory used to store the environment's cached file data"
264
- },
265
- "data": {
266
- "type": "string",
267
- "description": "The directory used to store the environment's data files"
268
- },
269
- "config": {
270
- "type": "string",
271
- "description": "The directory used to store the environment's configuration files"
272
- },
273
- "temp": {
274
- "type": "string",
275
- "description": "The directory used to store the environment's temp files"
276
- },
277
- "log": {
278
- "type": "string",
279
- "description": "The directory used to store the environment's temp files"
280
- },
281
- "build": {
282
- "type": "string",
283
- "default": "dist",
284
- "description": "The directory used to store the workspace's distributable files after a build (relative to the workspace root)"
285
- }
286
- },
287
- "additionalProperties": false,
288
- "description": "Various directories used by the workspace to store data, cache, and configuration files"
340
+ "format": "uri"
289
341
  },
290
- "packageManager": {
342
+ "npm": {
343
+ "description": "A remote registry URL used to publish distributable packages",
291
344
  "type": "string",
292
- "enum": ["npm", "yarn", "pnpm", "bun"],
293
- "default": "npm",
294
- "description": "The JavaScript/TypeScript package manager used by the repository"
345
+ "format": "uri"
295
346
  },
296
- "timezone": {
347
+ "cargo": {
348
+ "description": "A remote registry URL used to publish distributable packages",
297
349
  "type": "string",
298
- "default": "America/New_York",
299
- "description": "The default timezone of the workspace"
350
+ "format": "uri"
300
351
  },
301
- "locale": {
352
+ "cyclone": {
353
+ "description": "A remote registry URL used to publish distributable packages",
302
354
  "type": "string",
303
- "default": "en-US",
304
- "description": "The default locale of the workspace"
355
+ "format": "uri"
305
356
  },
306
- "logLevel": {
357
+ "container": {
358
+ "description": "A remote registry URL used to publish distributable packages",
307
359
  "type": "string",
308
- "enum": [
309
- "silent",
310
- "fatal",
311
- "error",
312
- "warn",
313
- "success",
314
- "info",
315
- "debug",
316
- "trace",
317
- "all"
318
- ],
319
- "default": "info",
320
- "description": "The log level used to filter out lower priority log messages. If not provided, this is defaulted using the `environment` config value (if `environment` is set to `production` then `level` is `error`, else `level` is `debug`)."
321
- },
322
- "skipConfigLogging": {
323
- "type": "boolean",
324
- "description": "Should the logging of the current Storm Workspace configuration be skipped?"
325
- },
326
- "registry": {
327
- "type": "object",
328
- "properties": {
329
- "github": {
330
- "type": "string",
331
- "format": "uri",
332
- "description": "A remote registry URL used to publish distributable packages"
333
- },
334
- "npm": {
335
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/registry/properties/github"
336
- },
337
- "cargo": {
338
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/registry/properties/github"
339
- },
340
- "cyclone": {
341
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/registry/properties/github"
342
- },
343
- "container": {
344
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/registry/properties/github"
345
- }
346
- },
347
- "additionalProperties": false,
348
- "default": {},
349
- "description": "A list of remote registry URLs used by Storm Software"
360
+ "format": "uri"
361
+ }
362
+ },
363
+ "additionalProperties": false
364
+ },
365
+ "configFile": {
366
+ "description": "The filepath of the Storm config. When this field is null, no config file was found in the current workspace.",
367
+ "default": null,
368
+ "anyOf": [
369
+ {
370
+ "type": "string"
350
371
  },
351
- "configFile": {
372
+ {
373
+ "type": "null"
374
+ }
375
+ ]
376
+ },
377
+ "colors": {
378
+ "description": "Storm theme config values used for styling various package elements",
379
+ "anyOf": [
380
+ {
381
+ "description": "Colors used for various workspace elements",
352
382
  "anyOf": [
353
383
  {
354
- "type": "string"
384
+ "type": "object",
385
+ "properties": {
386
+ "dark": {
387
+ "description": "The dark background color of the workspace",
388
+ "default": "#1d1e22",
389
+ "type": "string",
390
+ "minLength": 7,
391
+ "maxLength": 7,
392
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
393
+ },
394
+ "light": {
395
+ "description": "The light background color of the workspace",
396
+ "default": "#f4f4f5",
397
+ "type": "string",
398
+ "minLength": 7,
399
+ "maxLength": 7,
400
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
401
+ },
402
+ "brand": {
403
+ "description": "The primary brand specific color of the workspace",
404
+ "default": "#1fb2a6",
405
+ "type": "string",
406
+ "minLength": 7,
407
+ "maxLength": 7,
408
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
409
+ },
410
+ "alternate": {
411
+ "description": "The alternate brand specific color of the workspace",
412
+ "type": "string",
413
+ "minLength": 7,
414
+ "maxLength": 7,
415
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
416
+ },
417
+ "accent": {
418
+ "description": "The secondary brand specific color of the workspace",
419
+ "type": "string",
420
+ "minLength": 7,
421
+ "maxLength": 7,
422
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
423
+ },
424
+ "link": {
425
+ "description": "The color used to display hyperlink text",
426
+ "type": "string",
427
+ "minLength": 7,
428
+ "maxLength": 7,
429
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
430
+ },
431
+ "help": {
432
+ "description": "The second brand specific color of the workspace",
433
+ "default": "#8256D0",
434
+ "type": "string",
435
+ "minLength": 7,
436
+ "maxLength": 7,
437
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
438
+ },
439
+ "success": {
440
+ "description": "The success color of the workspace",
441
+ "default": "#12B66A",
442
+ "type": "string",
443
+ "minLength": 7,
444
+ "maxLength": 7,
445
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
446
+ },
447
+ "info": {
448
+ "description": "The informational color of the workspace",
449
+ "default": "#0070E0",
450
+ "type": "string",
451
+ "minLength": 7,
452
+ "maxLength": 7,
453
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
454
+ },
455
+ "warning": {
456
+ "description": "The warning color of the workspace",
457
+ "default": "#fcc419",
458
+ "type": "string",
459
+ "minLength": 7,
460
+ "maxLength": 7,
461
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
462
+ },
463
+ "danger": {
464
+ "description": "The danger color of the workspace",
465
+ "default": "#D8314A",
466
+ "type": "string",
467
+ "minLength": 7,
468
+ "maxLength": 7,
469
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
470
+ },
471
+ "fatal": {
472
+ "description": "The fatal color of the workspace",
473
+ "type": "string",
474
+ "minLength": 7,
475
+ "maxLength": 7,
476
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
477
+ },
478
+ "positive": {
479
+ "description": "The positive number color of the workspace",
480
+ "default": "#4ade80",
481
+ "type": "string",
482
+ "minLength": 7,
483
+ "maxLength": 7,
484
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
485
+ },
486
+ "negative": {
487
+ "description": "The negative number color of the workspace",
488
+ "default": "#ef4444",
489
+ "type": "string",
490
+ "minLength": 7,
491
+ "maxLength": 7,
492
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
493
+ }
494
+ },
495
+ "required": [
496
+ "dark",
497
+ "light",
498
+ "brand",
499
+ "help",
500
+ "success",
501
+ "info",
502
+ "warning",
503
+ "danger",
504
+ "positive",
505
+ "negative"
506
+ ],
507
+ "additionalProperties": false
355
508
  },
356
509
  {
357
- "type": "null"
358
- }
359
- ],
360
- "default": null,
361
- "description": "The filepath of the Storm config. When this field is null, no config file was found in the current workspace."
362
- },
363
- "colors": {
364
- "anyOf": [
365
- {
366
- "anyOf": [
367
- {
510
+ "type": "object",
511
+ "properties": {
512
+ "dark": {
368
513
  "type": "object",
369
514
  "properties": {
370
- "dark": {
515
+ "foreground": {
516
+ "description": "The light background color of the workspace",
517
+ "default": "#f4f4f5",
371
518
  "type": "string",
372
- "pattern": "^#([0-9a-f]{3}){1,2}$",
373
519
  "minLength": 7,
374
520
  "maxLength": 7,
375
- "default": "#1d1e22",
376
- "description": "The dark background color of the workspace"
521
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
377
522
  },
378
- "light": {
523
+ "background": {
524
+ "description": "The dark background color of the workspace",
525
+ "default": "#1d1e22",
379
526
  "type": "string",
380
- "pattern": "^#([0-9a-f]{3}){1,2}$",
381
527
  "minLength": 7,
382
528
  "maxLength": 7,
383
- "default": "#f4f4f5",
384
- "description": "The light background color of the workspace"
529
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
385
530
  },
386
531
  "brand": {
532
+ "description": "The primary brand specific color of the workspace",
533
+ "default": "#1fb2a6",
387
534
  "type": "string",
388
- "pattern": "^#([0-9a-f]{3}){1,2}$",
389
535
  "minLength": 7,
390
536
  "maxLength": 7,
391
- "default": "#1fb2a6",
392
- "description": "The primary brand specific color of the workspace"
537
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
393
538
  },
394
539
  "alternate": {
540
+ "description": "The alternate brand specific color of the workspace",
395
541
  "type": "string",
396
- "pattern": "^#([0-9a-f]{3}){1,2}$",
397
542
  "minLength": 7,
398
543
  "maxLength": 7,
399
- "description": "The alternate brand specific color of the workspace"
544
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
400
545
  },
401
546
  "accent": {
547
+ "description": "The secondary brand specific color of the workspace",
402
548
  "type": "string",
403
- "pattern": "^#([0-9a-f]{3}){1,2}$",
404
549
  "minLength": 7,
405
550
  "maxLength": 7,
406
- "description": "The secondary brand specific color of the workspace"
551
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
407
552
  },
408
553
  "link": {
554
+ "description": "The color used to display hyperlink text",
409
555
  "type": "string",
410
- "pattern": "^#([0-9a-f]{3}){1,2}$",
411
556
  "minLength": 7,
412
557
  "maxLength": 7,
413
- "description": "The color used to display hyperlink text"
558
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
414
559
  },
415
560
  "help": {
561
+ "description": "The second brand specific color of the workspace",
562
+ "default": "#8256D0",
416
563
  "type": "string",
417
- "pattern": "^#([0-9a-f]{3}){1,2}$",
418
564
  "minLength": 7,
419
565
  "maxLength": 7,
420
- "default": "#8256D0",
421
- "description": "The second brand specific color of the workspace"
566
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
422
567
  },
423
568
  "success": {
569
+ "description": "The success color of the workspace",
570
+ "default": "#12B66A",
424
571
  "type": "string",
425
- "pattern": "^#([0-9a-f]{3}){1,2}$",
426
572
  "minLength": 7,
427
573
  "maxLength": 7,
428
- "default": "#12B66A",
429
- "description": "The success color of the workspace"
574
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
430
575
  },
431
576
  "info": {
577
+ "description": "The informational color of the workspace",
578
+ "default": "#0070E0",
432
579
  "type": "string",
433
- "pattern": "^#([0-9a-f]{3}){1,2}$",
434
580
  "minLength": 7,
435
581
  "maxLength": 7,
436
- "default": "#0070E0",
437
- "description": "The informational color of the workspace"
582
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
438
583
  },
439
584
  "warning": {
585
+ "description": "The warning color of the workspace",
586
+ "default": "#fcc419",
440
587
  "type": "string",
441
- "pattern": "^#([0-9a-f]{3}){1,2}$",
442
588
  "minLength": 7,
443
589
  "maxLength": 7,
444
- "default": "#fcc419",
445
- "description": "The warning color of the workspace"
590
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
446
591
  },
447
592
  "danger": {
593
+ "description": "The danger color of the workspace",
594
+ "default": "#D8314A",
448
595
  "type": "string",
449
- "pattern": "^#([0-9a-f]{3}){1,2}$",
450
596
  "minLength": 7,
451
597
  "maxLength": 7,
452
- "default": "#D8314A",
453
- "description": "The danger color of the workspace"
598
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
454
599
  },
455
600
  "fatal": {
601
+ "description": "The fatal color of the workspace",
456
602
  "type": "string",
457
- "pattern": "^#([0-9a-f]{3}){1,2}$",
458
603
  "minLength": 7,
459
604
  "maxLength": 7,
460
- "description": "The fatal color of the workspace"
605
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
461
606
  },
462
607
  "positive": {
608
+ "description": "The positive number color of the workspace",
609
+ "default": "#4ade80",
463
610
  "type": "string",
464
- "pattern": "^#([0-9a-f]{3}){1,2}$",
465
611
  "minLength": 7,
466
612
  "maxLength": 7,
467
- "default": "#4ade80",
468
- "description": "The positive number color of the workspace"
613
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
469
614
  },
470
615
  "negative": {
616
+ "description": "The negative number color of the workspace",
617
+ "default": "#ef4444",
471
618
  "type": "string",
472
- "pattern": "^#([0-9a-f]{3}){1,2}$",
473
619
  "minLength": 7,
474
620
  "maxLength": 7,
475
- "default": "#ef4444",
476
- "description": "The negative number color of the workspace"
621
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
477
622
  }
478
623
  },
624
+ "required": [
625
+ "foreground",
626
+ "background",
627
+ "brand",
628
+ "help",
629
+ "success",
630
+ "info",
631
+ "warning",
632
+ "danger",
633
+ "positive",
634
+ "negative"
635
+ ],
479
636
  "additionalProperties": false
480
637
  },
481
- {
638
+ "light": {
482
639
  "type": "object",
483
640
  "properties": {
484
- "dark": {
641
+ "foreground": {
642
+ "description": "The dark background color of the workspace",
643
+ "default": "#1d1e22",
644
+ "type": "string",
645
+ "minLength": 7,
646
+ "maxLength": 7,
647
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
648
+ },
649
+ "background": {
650
+ "description": "The light background color of the workspace",
651
+ "default": "#f4f4f5",
652
+ "type": "string",
653
+ "minLength": 7,
654
+ "maxLength": 7,
655
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
656
+ },
657
+ "brand": {
658
+ "description": "The primary brand specific color of the workspace",
659
+ "default": "#1fb2a6",
660
+ "type": "string",
661
+ "minLength": 7,
662
+ "maxLength": 7,
663
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
664
+ },
665
+ "alternate": {
666
+ "description": "The alternate brand specific color of the workspace",
667
+ "type": "string",
668
+ "minLength": 7,
669
+ "maxLength": 7,
670
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
671
+ },
672
+ "accent": {
673
+ "description": "The secondary brand specific color of the workspace",
674
+ "type": "string",
675
+ "minLength": 7,
676
+ "maxLength": 7,
677
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
678
+ },
679
+ "link": {
680
+ "description": "The color used to display hyperlink text",
681
+ "type": "string",
682
+ "minLength": 7,
683
+ "maxLength": 7,
684
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
685
+ },
686
+ "help": {
687
+ "description": "The second brand specific color of the workspace",
688
+ "default": "#8256D0",
689
+ "type": "string",
690
+ "minLength": 7,
691
+ "maxLength": 7,
692
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
693
+ },
694
+ "success": {
695
+ "description": "The success color of the workspace",
696
+ "default": "#12B66A",
697
+ "type": "string",
698
+ "minLength": 7,
699
+ "maxLength": 7,
700
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
701
+ },
702
+ "info": {
703
+ "description": "The informational color of the workspace",
704
+ "default": "#0070E0",
705
+ "type": "string",
706
+ "minLength": 7,
707
+ "maxLength": 7,
708
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
709
+ },
710
+ "warning": {
711
+ "description": "The warning color of the workspace",
712
+ "default": "#fcc419",
713
+ "type": "string",
714
+ "minLength": 7,
715
+ "maxLength": 7,
716
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
717
+ },
718
+ "danger": {
719
+ "description": "The danger color of the workspace",
720
+ "default": "#D8314A",
721
+ "type": "string",
722
+ "minLength": 7,
723
+ "maxLength": 7,
724
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
725
+ },
726
+ "fatal": {
727
+ "description": "The fatal color of the workspace",
728
+ "type": "string",
729
+ "minLength": 7,
730
+ "maxLength": 7,
731
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
732
+ },
733
+ "positive": {
734
+ "description": "The positive number color of the workspace",
735
+ "default": "#4ade80",
736
+ "type": "string",
737
+ "minLength": 7,
738
+ "maxLength": 7,
739
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
740
+ },
741
+ "negative": {
742
+ "description": "The negative number color of the workspace",
743
+ "default": "#ef4444",
744
+ "type": "string",
745
+ "minLength": 7,
746
+ "maxLength": 7,
747
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
748
+ }
749
+ },
750
+ "required": [
751
+ "foreground",
752
+ "background",
753
+ "brand",
754
+ "help",
755
+ "success",
756
+ "info",
757
+ "warning",
758
+ "danger",
759
+ "positive",
760
+ "negative"
761
+ ],
762
+ "additionalProperties": false
763
+ }
764
+ },
765
+ "required": ["dark", "light"],
766
+ "additionalProperties": false
767
+ }
768
+ ]
769
+ },
770
+ {
771
+ "anyOf": [
772
+ {
773
+ "type": "object",
774
+ "properties": {
775
+ "base": {
776
+ "description": "Colors used for various workspace elements",
777
+ "anyOf": [
778
+ {
485
779
  "type": "object",
486
780
  "properties": {
487
- "foreground": {
488
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/light"
781
+ "dark": {
782
+ "description": "The dark background color of the workspace",
783
+ "default": "#1d1e22",
784
+ "type": "string",
785
+ "minLength": 7,
786
+ "maxLength": 7,
787
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
489
788
  },
490
- "background": {
491
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/dark"
789
+ "light": {
790
+ "description": "The light background color of the workspace",
791
+ "default": "#f4f4f5",
792
+ "type": "string",
793
+ "minLength": 7,
794
+ "maxLength": 7,
795
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
492
796
  },
493
797
  "brand": {
494
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/brand"
798
+ "description": "The primary brand specific color of the workspace",
799
+ "default": "#1fb2a6",
800
+ "type": "string",
801
+ "minLength": 7,
802
+ "maxLength": 7,
803
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
495
804
  },
496
805
  "alternate": {
497
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/alternate"
806
+ "description": "The alternate brand specific color of the workspace",
807
+ "type": "string",
808
+ "minLength": 7,
809
+ "maxLength": 7,
810
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
498
811
  },
499
812
  "accent": {
500
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/accent"
813
+ "description": "The secondary brand specific color of the workspace",
814
+ "type": "string",
815
+ "minLength": 7,
816
+ "maxLength": 7,
817
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
501
818
  },
502
819
  "link": {
503
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/link"
820
+ "description": "The color used to display hyperlink text",
821
+ "type": "string",
822
+ "minLength": 7,
823
+ "maxLength": 7,
824
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
504
825
  },
505
826
  "help": {
506
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/help"
827
+ "description": "The second brand specific color of the workspace",
828
+ "default": "#8256D0",
829
+ "type": "string",
830
+ "minLength": 7,
831
+ "maxLength": 7,
832
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
507
833
  },
508
834
  "success": {
509
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/success"
835
+ "description": "The success color of the workspace",
836
+ "default": "#12B66A",
837
+ "type": "string",
838
+ "minLength": 7,
839
+ "maxLength": 7,
840
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
510
841
  },
511
842
  "info": {
512
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/info"
843
+ "description": "The informational color of the workspace",
844
+ "default": "#0070E0",
845
+ "type": "string",
846
+ "minLength": 7,
847
+ "maxLength": 7,
848
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
513
849
  },
514
850
  "warning": {
515
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/warning"
851
+ "description": "The warning color of the workspace",
852
+ "default": "#fcc419",
853
+ "type": "string",
854
+ "minLength": 7,
855
+ "maxLength": 7,
856
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
516
857
  },
517
858
  "danger": {
518
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/danger"
859
+ "description": "The danger color of the workspace",
860
+ "default": "#D8314A",
861
+ "type": "string",
862
+ "minLength": 7,
863
+ "maxLength": 7,
864
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
519
865
  },
520
866
  "fatal": {
521
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/fatal"
867
+ "description": "The fatal color of the workspace",
868
+ "type": "string",
869
+ "minLength": 7,
870
+ "maxLength": 7,
871
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
522
872
  },
523
873
  "positive": {
524
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/positive"
874
+ "description": "The positive number color of the workspace",
875
+ "default": "#4ade80",
876
+ "type": "string",
877
+ "minLength": 7,
878
+ "maxLength": 7,
879
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
525
880
  },
526
881
  "negative": {
527
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/negative"
882
+ "description": "The negative number color of the workspace",
883
+ "default": "#ef4444",
884
+ "type": "string",
885
+ "minLength": 7,
886
+ "maxLength": 7,
887
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
528
888
  }
529
889
  },
890
+ "required": [
891
+ "dark",
892
+ "light",
893
+ "brand",
894
+ "help",
895
+ "success",
896
+ "info",
897
+ "warning",
898
+ "danger",
899
+ "positive",
900
+ "negative"
901
+ ],
530
902
  "additionalProperties": false
531
903
  },
532
- "light": {
904
+ {
533
905
  "type": "object",
534
906
  "properties": {
535
- "foreground": {
536
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/dark"
537
- },
538
- "background": {
539
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/light"
540
- },
541
- "brand": {
542
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/brand"
543
- },
544
- "alternate": {
545
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/alternate"
546
- },
547
- "accent": {
548
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/accent"
549
- },
550
- "link": {
551
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/link"
552
- },
553
- "help": {
554
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/help"
555
- },
556
- "success": {
557
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/success"
558
- },
559
- "info": {
560
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/info"
907
+ "dark": {
908
+ "type": "object",
909
+ "properties": {
910
+ "foreground": {
911
+ "description": "The light background color of the workspace",
912
+ "default": "#f4f4f5",
913
+ "type": "string",
914
+ "minLength": 7,
915
+ "maxLength": 7,
916
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
917
+ },
918
+ "background": {
919
+ "description": "The dark background color of the workspace",
920
+ "default": "#1d1e22",
921
+ "type": "string",
922
+ "minLength": 7,
923
+ "maxLength": 7,
924
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
925
+ },
926
+ "brand": {
927
+ "description": "The primary brand specific color of the workspace",
928
+ "default": "#1fb2a6",
929
+ "type": "string",
930
+ "minLength": 7,
931
+ "maxLength": 7,
932
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
933
+ },
934
+ "alternate": {
935
+ "description": "The alternate brand specific color of the workspace",
936
+ "type": "string",
937
+ "minLength": 7,
938
+ "maxLength": 7,
939
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
940
+ },
941
+ "accent": {
942
+ "description": "The secondary brand specific color of the workspace",
943
+ "type": "string",
944
+ "minLength": 7,
945
+ "maxLength": 7,
946
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
947
+ },
948
+ "link": {
949
+ "description": "The color used to display hyperlink text",
950
+ "type": "string",
951
+ "minLength": 7,
952
+ "maxLength": 7,
953
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
954
+ },
955
+ "help": {
956
+ "description": "The second brand specific color of the workspace",
957
+ "default": "#8256D0",
958
+ "type": "string",
959
+ "minLength": 7,
960
+ "maxLength": 7,
961
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
962
+ },
963
+ "success": {
964
+ "description": "The success color of the workspace",
965
+ "default": "#12B66A",
966
+ "type": "string",
967
+ "minLength": 7,
968
+ "maxLength": 7,
969
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
970
+ },
971
+ "info": {
972
+ "description": "The informational color of the workspace",
973
+ "default": "#0070E0",
974
+ "type": "string",
975
+ "minLength": 7,
976
+ "maxLength": 7,
977
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
978
+ },
979
+ "warning": {
980
+ "description": "The warning color of the workspace",
981
+ "default": "#fcc419",
982
+ "type": "string",
983
+ "minLength": 7,
984
+ "maxLength": 7,
985
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
986
+ },
987
+ "danger": {
988
+ "description": "The danger color of the workspace",
989
+ "default": "#D8314A",
990
+ "type": "string",
991
+ "minLength": 7,
992
+ "maxLength": 7,
993
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
994
+ },
995
+ "fatal": {
996
+ "description": "The fatal color of the workspace",
997
+ "type": "string",
998
+ "minLength": 7,
999
+ "maxLength": 7,
1000
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1001
+ },
1002
+ "positive": {
1003
+ "description": "The positive number color of the workspace",
1004
+ "default": "#4ade80",
1005
+ "type": "string",
1006
+ "minLength": 7,
1007
+ "maxLength": 7,
1008
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1009
+ },
1010
+ "negative": {
1011
+ "description": "The negative number color of the workspace",
1012
+ "default": "#ef4444",
1013
+ "type": "string",
1014
+ "minLength": 7,
1015
+ "maxLength": 7,
1016
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1017
+ }
1018
+ },
1019
+ "required": [
1020
+ "foreground",
1021
+ "background",
1022
+ "brand",
1023
+ "help",
1024
+ "success",
1025
+ "info",
1026
+ "warning",
1027
+ "danger",
1028
+ "positive",
1029
+ "negative"
1030
+ ],
1031
+ "additionalProperties": false
561
1032
  },
562
- "warning": {
563
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/warning"
564
- },
565
- "danger": {
566
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/danger"
567
- },
568
- "fatal": {
569
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/fatal"
570
- },
571
- "positive": {
572
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/positive"
573
- },
574
- "negative": {
575
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0/anyOf/0/properties/negative"
1033
+ "light": {
1034
+ "type": "object",
1035
+ "properties": {
1036
+ "foreground": {
1037
+ "description": "The dark background color of the workspace",
1038
+ "default": "#1d1e22",
1039
+ "type": "string",
1040
+ "minLength": 7,
1041
+ "maxLength": 7,
1042
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1043
+ },
1044
+ "background": {
1045
+ "description": "The light background color of the workspace",
1046
+ "default": "#f4f4f5",
1047
+ "type": "string",
1048
+ "minLength": 7,
1049
+ "maxLength": 7,
1050
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1051
+ },
1052
+ "brand": {
1053
+ "description": "The primary brand specific color of the workspace",
1054
+ "default": "#1fb2a6",
1055
+ "type": "string",
1056
+ "minLength": 7,
1057
+ "maxLength": 7,
1058
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1059
+ },
1060
+ "alternate": {
1061
+ "description": "The alternate brand specific color of the workspace",
1062
+ "type": "string",
1063
+ "minLength": 7,
1064
+ "maxLength": 7,
1065
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1066
+ },
1067
+ "accent": {
1068
+ "description": "The secondary brand specific color of the workspace",
1069
+ "type": "string",
1070
+ "minLength": 7,
1071
+ "maxLength": 7,
1072
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1073
+ },
1074
+ "link": {
1075
+ "description": "The color used to display hyperlink text",
1076
+ "type": "string",
1077
+ "minLength": 7,
1078
+ "maxLength": 7,
1079
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1080
+ },
1081
+ "help": {
1082
+ "description": "The second brand specific color of the workspace",
1083
+ "default": "#8256D0",
1084
+ "type": "string",
1085
+ "minLength": 7,
1086
+ "maxLength": 7,
1087
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1088
+ },
1089
+ "success": {
1090
+ "description": "The success color of the workspace",
1091
+ "default": "#12B66A",
1092
+ "type": "string",
1093
+ "minLength": 7,
1094
+ "maxLength": 7,
1095
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1096
+ },
1097
+ "info": {
1098
+ "description": "The informational color of the workspace",
1099
+ "default": "#0070E0",
1100
+ "type": "string",
1101
+ "minLength": 7,
1102
+ "maxLength": 7,
1103
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1104
+ },
1105
+ "warning": {
1106
+ "description": "The warning color of the workspace",
1107
+ "default": "#fcc419",
1108
+ "type": "string",
1109
+ "minLength": 7,
1110
+ "maxLength": 7,
1111
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1112
+ },
1113
+ "danger": {
1114
+ "description": "The danger color of the workspace",
1115
+ "default": "#D8314A",
1116
+ "type": "string",
1117
+ "minLength": 7,
1118
+ "maxLength": 7,
1119
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1120
+ },
1121
+ "fatal": {
1122
+ "description": "The fatal color of the workspace",
1123
+ "type": "string",
1124
+ "minLength": 7,
1125
+ "maxLength": 7,
1126
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1127
+ },
1128
+ "positive": {
1129
+ "description": "The positive number color of the workspace",
1130
+ "default": "#4ade80",
1131
+ "type": "string",
1132
+ "minLength": 7,
1133
+ "maxLength": 7,
1134
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1135
+ },
1136
+ "negative": {
1137
+ "description": "The negative number color of the workspace",
1138
+ "default": "#ef4444",
1139
+ "type": "string",
1140
+ "minLength": 7,
1141
+ "maxLength": 7,
1142
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1143
+ }
1144
+ },
1145
+ "required": [
1146
+ "foreground",
1147
+ "background",
1148
+ "brand",
1149
+ "help",
1150
+ "success",
1151
+ "info",
1152
+ "warning",
1153
+ "danger",
1154
+ "positive",
1155
+ "negative"
1156
+ ],
1157
+ "additionalProperties": false
576
1158
  }
577
1159
  },
1160
+ "required": ["dark", "light"],
578
1161
  "additionalProperties": false
579
1162
  }
580
- },
581
- "required": ["dark", "light"],
582
- "additionalProperties": false
1163
+ ]
583
1164
  }
584
- ],
585
- "description": "Colors used for various workspace elements"
1165
+ },
1166
+ "required": ["base"],
1167
+ "additionalProperties": false
586
1168
  },
587
1169
  {
588
- "anyOf": [
589
- {
590
- "type": "object",
591
- "properties": {
592
- "base": {
593
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0"
594
- }
1170
+ "type": "object",
1171
+ "propertyNames": {
1172
+ "type": "string"
1173
+ },
1174
+ "additionalProperties": {
1175
+ "description": "Colors used for various workspace elements",
1176
+ "anyOf": [
1177
+ {
1178
+ "type": "object",
1179
+ "properties": {
1180
+ "dark": {
1181
+ "description": "The dark background color of the workspace",
1182
+ "default": "#1d1e22",
1183
+ "type": "string",
1184
+ "minLength": 7,
1185
+ "maxLength": 7,
1186
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1187
+ },
1188
+ "light": {
1189
+ "description": "The light background color of the workspace",
1190
+ "default": "#f4f4f5",
1191
+ "type": "string",
1192
+ "minLength": 7,
1193
+ "maxLength": 7,
1194
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1195
+ },
1196
+ "brand": {
1197
+ "description": "The primary brand specific color of the workspace",
1198
+ "default": "#1fb2a6",
1199
+ "type": "string",
1200
+ "minLength": 7,
1201
+ "maxLength": 7,
1202
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1203
+ },
1204
+ "alternate": {
1205
+ "description": "The alternate brand specific color of the workspace",
1206
+ "type": "string",
1207
+ "minLength": 7,
1208
+ "maxLength": 7,
1209
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1210
+ },
1211
+ "accent": {
1212
+ "description": "The secondary brand specific color of the workspace",
1213
+ "type": "string",
1214
+ "minLength": 7,
1215
+ "maxLength": 7,
1216
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1217
+ },
1218
+ "link": {
1219
+ "description": "The color used to display hyperlink text",
1220
+ "type": "string",
1221
+ "minLength": 7,
1222
+ "maxLength": 7,
1223
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1224
+ },
1225
+ "help": {
1226
+ "description": "The second brand specific color of the workspace",
1227
+ "default": "#8256D0",
1228
+ "type": "string",
1229
+ "minLength": 7,
1230
+ "maxLength": 7,
1231
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1232
+ },
1233
+ "success": {
1234
+ "description": "The success color of the workspace",
1235
+ "default": "#12B66A",
1236
+ "type": "string",
1237
+ "minLength": 7,
1238
+ "maxLength": 7,
1239
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1240
+ },
1241
+ "info": {
1242
+ "description": "The informational color of the workspace",
1243
+ "default": "#0070E0",
1244
+ "type": "string",
1245
+ "minLength": 7,
1246
+ "maxLength": 7,
1247
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1248
+ },
1249
+ "warning": {
1250
+ "description": "The warning color of the workspace",
1251
+ "default": "#fcc419",
1252
+ "type": "string",
1253
+ "minLength": 7,
1254
+ "maxLength": 7,
1255
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1256
+ },
1257
+ "danger": {
1258
+ "description": "The danger color of the workspace",
1259
+ "default": "#D8314A",
1260
+ "type": "string",
1261
+ "minLength": 7,
1262
+ "maxLength": 7,
1263
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1264
+ },
1265
+ "fatal": {
1266
+ "description": "The fatal color of the workspace",
1267
+ "type": "string",
1268
+ "minLength": 7,
1269
+ "maxLength": 7,
1270
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1271
+ },
1272
+ "positive": {
1273
+ "description": "The positive number color of the workspace",
1274
+ "default": "#4ade80",
1275
+ "type": "string",
1276
+ "minLength": 7,
1277
+ "maxLength": 7,
1278
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1279
+ },
1280
+ "negative": {
1281
+ "description": "The negative number color of the workspace",
1282
+ "default": "#ef4444",
1283
+ "type": "string",
1284
+ "minLength": 7,
1285
+ "maxLength": 7,
1286
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1287
+ }
1288
+ },
1289
+ "required": [
1290
+ "dark",
1291
+ "light",
1292
+ "brand",
1293
+ "help",
1294
+ "success",
1295
+ "info",
1296
+ "warning",
1297
+ "danger",
1298
+ "positive",
1299
+ "negative"
1300
+ ],
1301
+ "additionalProperties": false
595
1302
  },
596
- "required": ["base"],
597
- "additionalProperties": false
598
- },
599
- {
600
- "type": "object",
601
- "additionalProperties": {
602
- "$ref": "#/definitions/StormWorkspaceConfiguration/properties/colors/anyOf/0"
1303
+ {
1304
+ "type": "object",
1305
+ "properties": {
1306
+ "dark": {
1307
+ "type": "object",
1308
+ "properties": {
1309
+ "foreground": {
1310
+ "description": "The light background color of the workspace",
1311
+ "default": "#f4f4f5",
1312
+ "type": "string",
1313
+ "minLength": 7,
1314
+ "maxLength": 7,
1315
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1316
+ },
1317
+ "background": {
1318
+ "description": "The dark background color of the workspace",
1319
+ "default": "#1d1e22",
1320
+ "type": "string",
1321
+ "minLength": 7,
1322
+ "maxLength": 7,
1323
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1324
+ },
1325
+ "brand": {
1326
+ "description": "The primary brand specific color of the workspace",
1327
+ "default": "#1fb2a6",
1328
+ "type": "string",
1329
+ "minLength": 7,
1330
+ "maxLength": 7,
1331
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1332
+ },
1333
+ "alternate": {
1334
+ "description": "The alternate brand specific color of the workspace",
1335
+ "type": "string",
1336
+ "minLength": 7,
1337
+ "maxLength": 7,
1338
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1339
+ },
1340
+ "accent": {
1341
+ "description": "The secondary brand specific color of the workspace",
1342
+ "type": "string",
1343
+ "minLength": 7,
1344
+ "maxLength": 7,
1345
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1346
+ },
1347
+ "link": {
1348
+ "description": "The color used to display hyperlink text",
1349
+ "type": "string",
1350
+ "minLength": 7,
1351
+ "maxLength": 7,
1352
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1353
+ },
1354
+ "help": {
1355
+ "description": "The second brand specific color of the workspace",
1356
+ "default": "#8256D0",
1357
+ "type": "string",
1358
+ "minLength": 7,
1359
+ "maxLength": 7,
1360
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1361
+ },
1362
+ "success": {
1363
+ "description": "The success color of the workspace",
1364
+ "default": "#12B66A",
1365
+ "type": "string",
1366
+ "minLength": 7,
1367
+ "maxLength": 7,
1368
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1369
+ },
1370
+ "info": {
1371
+ "description": "The informational color of the workspace",
1372
+ "default": "#0070E0",
1373
+ "type": "string",
1374
+ "minLength": 7,
1375
+ "maxLength": 7,
1376
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1377
+ },
1378
+ "warning": {
1379
+ "description": "The warning color of the workspace",
1380
+ "default": "#fcc419",
1381
+ "type": "string",
1382
+ "minLength": 7,
1383
+ "maxLength": 7,
1384
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1385
+ },
1386
+ "danger": {
1387
+ "description": "The danger color of the workspace",
1388
+ "default": "#D8314A",
1389
+ "type": "string",
1390
+ "minLength": 7,
1391
+ "maxLength": 7,
1392
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1393
+ },
1394
+ "fatal": {
1395
+ "description": "The fatal color of the workspace",
1396
+ "type": "string",
1397
+ "minLength": 7,
1398
+ "maxLength": 7,
1399
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1400
+ },
1401
+ "positive": {
1402
+ "description": "The positive number color of the workspace",
1403
+ "default": "#4ade80",
1404
+ "type": "string",
1405
+ "minLength": 7,
1406
+ "maxLength": 7,
1407
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1408
+ },
1409
+ "negative": {
1410
+ "description": "The negative number color of the workspace",
1411
+ "default": "#ef4444",
1412
+ "type": "string",
1413
+ "minLength": 7,
1414
+ "maxLength": 7,
1415
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1416
+ }
1417
+ },
1418
+ "required": [
1419
+ "foreground",
1420
+ "background",
1421
+ "brand",
1422
+ "help",
1423
+ "success",
1424
+ "info",
1425
+ "warning",
1426
+ "danger",
1427
+ "positive",
1428
+ "negative"
1429
+ ],
1430
+ "additionalProperties": false
1431
+ },
1432
+ "light": {
1433
+ "type": "object",
1434
+ "properties": {
1435
+ "foreground": {
1436
+ "description": "The dark background color of the workspace",
1437
+ "default": "#1d1e22",
1438
+ "type": "string",
1439
+ "minLength": 7,
1440
+ "maxLength": 7,
1441
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1442
+ },
1443
+ "background": {
1444
+ "description": "The light background color of the workspace",
1445
+ "default": "#f4f4f5",
1446
+ "type": "string",
1447
+ "minLength": 7,
1448
+ "maxLength": 7,
1449
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1450
+ },
1451
+ "brand": {
1452
+ "description": "The primary brand specific color of the workspace",
1453
+ "default": "#1fb2a6",
1454
+ "type": "string",
1455
+ "minLength": 7,
1456
+ "maxLength": 7,
1457
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1458
+ },
1459
+ "alternate": {
1460
+ "description": "The alternate brand specific color of the workspace",
1461
+ "type": "string",
1462
+ "minLength": 7,
1463
+ "maxLength": 7,
1464
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1465
+ },
1466
+ "accent": {
1467
+ "description": "The secondary brand specific color of the workspace",
1468
+ "type": "string",
1469
+ "minLength": 7,
1470
+ "maxLength": 7,
1471
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1472
+ },
1473
+ "link": {
1474
+ "description": "The color used to display hyperlink text",
1475
+ "type": "string",
1476
+ "minLength": 7,
1477
+ "maxLength": 7,
1478
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1479
+ },
1480
+ "help": {
1481
+ "description": "The second brand specific color of the workspace",
1482
+ "default": "#8256D0",
1483
+ "type": "string",
1484
+ "minLength": 7,
1485
+ "maxLength": 7,
1486
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1487
+ },
1488
+ "success": {
1489
+ "description": "The success color of the workspace",
1490
+ "default": "#12B66A",
1491
+ "type": "string",
1492
+ "minLength": 7,
1493
+ "maxLength": 7,
1494
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1495
+ },
1496
+ "info": {
1497
+ "description": "The informational color of the workspace",
1498
+ "default": "#0070E0",
1499
+ "type": "string",
1500
+ "minLength": 7,
1501
+ "maxLength": 7,
1502
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1503
+ },
1504
+ "warning": {
1505
+ "description": "The warning color of the workspace",
1506
+ "default": "#fcc419",
1507
+ "type": "string",
1508
+ "minLength": 7,
1509
+ "maxLength": 7,
1510
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1511
+ },
1512
+ "danger": {
1513
+ "description": "The danger color of the workspace",
1514
+ "default": "#D8314A",
1515
+ "type": "string",
1516
+ "minLength": 7,
1517
+ "maxLength": 7,
1518
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1519
+ },
1520
+ "fatal": {
1521
+ "description": "The fatal color of the workspace",
1522
+ "type": "string",
1523
+ "minLength": 7,
1524
+ "maxLength": 7,
1525
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1526
+ },
1527
+ "positive": {
1528
+ "description": "The positive number color of the workspace",
1529
+ "default": "#4ade80",
1530
+ "type": "string",
1531
+ "minLength": 7,
1532
+ "maxLength": 7,
1533
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1534
+ },
1535
+ "negative": {
1536
+ "description": "The negative number color of the workspace",
1537
+ "default": "#ef4444",
1538
+ "type": "string",
1539
+ "minLength": 7,
1540
+ "maxLength": 7,
1541
+ "pattern": "^#([0-9a-f]{3}){1,2}$"
1542
+ }
1543
+ },
1544
+ "required": [
1545
+ "foreground",
1546
+ "background",
1547
+ "brand",
1548
+ "help",
1549
+ "success",
1550
+ "info",
1551
+ "warning",
1552
+ "danger",
1553
+ "positive",
1554
+ "negative"
1555
+ ],
1556
+ "additionalProperties": false
1557
+ }
1558
+ },
1559
+ "required": ["dark", "light"],
1560
+ "additionalProperties": false
603
1561
  }
604
- }
605
- ]
1562
+ ]
1563
+ }
606
1564
  }
607
- ],
608
- "description": "Storm theme config values used for styling various package elements"
609
- },
610
- "extensions": {
611
- "type": "object",
612
- "additionalProperties": {},
613
- "default": {},
614
- "description": "Configuration of each used extension"
1565
+ ]
615
1566
  }
1567
+ ]
1568
+ },
1569
+ "extensions": {
1570
+ "description": "Configuration of each used extension",
1571
+ "default": {},
1572
+ "type": "object",
1573
+ "propertyNames": {
1574
+ "type": "string"
616
1575
  },
617
- "required": [
618
- "bot",
619
- "release",
620
- "account",
621
- "error",
622
- "workspaceRoot",
623
- "directories",
624
- "colors"
625
- ],
626
- "additionalProperties": false,
627
- "description": "Storm Workspace config values used during various dev-ops processes. This type is a combination of the StormPackageConfig and StormProject types. It represents the config of the entire monorepo."
1576
+ "additionalProperties": {}
628
1577
  }
629
1578
  },
630
- "$schema": "http://json-schema.org/draft-07/schema#"
1579
+ "required": [
1580
+ "license",
1581
+ "branch",
1582
+ "owner",
1583
+ "bot",
1584
+ "release",
1585
+ "account",
1586
+ "error",
1587
+ "mode",
1588
+ "workspaceRoot",
1589
+ "externalPackagePatterns",
1590
+ "skipCache",
1591
+ "directories",
1592
+ "packageManager",
1593
+ "timezone",
1594
+ "locale",
1595
+ "logLevel",
1596
+ "registry",
1597
+ "configFile",
1598
+ "colors",
1599
+ "extensions"
1600
+ ],
1601
+ "additionalProperties": false
631
1602
  }