@storm-software/config 1.125.8 → 1.125.10
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/CHANGELOG.md +21 -0
- package/README.md +1 -1
- package/dist/{chunk-HIMNLC45.js → chunk-K5G67OIW.js} +15 -14
- package/dist/{chunk-AT6TQLTD.cjs → chunk-MWNFJGNE.cjs} +15 -14
- package/dist/define-config.d.cts +1 -1
- package/dist/define-config.d.ts +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +29 -29
- package/dist/schema.d.ts +29 -29
- package/dist/schema.js +1 -1
- package/dist/types.d.cts +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +2 -2
- package/schemas/storm-workspace.schema.json +0 -3
- package/src/schema.d.ts +29 -29
- package/src/types.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.125.9](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.9) (2025-07-10)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **config:** Resolved issues with unmet `zod` v4 requirements
|
|
10
|
+
([9d82ae81a](https://github.com/storm-software/storm-ops/commit/9d82ae81a))
|
|
11
|
+
|
|
12
|
+
### Miscellaneous
|
|
13
|
+
|
|
14
|
+
- **monorepo:** Regenerate README markdown files
|
|
15
|
+
([b95696e42](https://github.com/storm-software/storm-ops/commit/b95696e42))
|
|
16
|
+
|
|
17
|
+
## [1.125.8](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.8) (2025-07-10)
|
|
18
|
+
|
|
19
|
+
### Miscellaneous
|
|
20
|
+
|
|
21
|
+
- **config:** Remove org-specific `release` field from defaults
|
|
22
|
+
([ea298fb47](https://github.com/storm-software/storm-ops/commit/ea298fb47))
|
|
23
|
+
- **monorepo:** Regenerate workspace artifacts
|
|
24
|
+
([f45c14e5f](https://github.com/storm-software/storm-ops/commit/f45c14e5f))
|
|
25
|
+
|
|
5
26
|
## [1.125.7](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.7) (2025-07-10)
|
|
6
27
|
|
|
7
28
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
} from "./chunk-KSQRDQGT.js";
|
|
10
10
|
|
|
11
11
|
// src/schema.ts
|
|
12
|
-
import * as z from "zod
|
|
12
|
+
import * as z from "zod";
|
|
13
13
|
var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1d1e22").describe("The dark background color of the workspace");
|
|
14
14
|
var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
15
15
|
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
|
|
@@ -76,7 +76,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
76
76
|
positive: PositiveColorSchema,
|
|
77
77
|
negative: NegativeColorSchema
|
|
78
78
|
});
|
|
79
|
-
var RegistryUrlConfigSchema = z.
|
|
79
|
+
var RegistryUrlConfigSchema = z.url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
80
80
|
var RegistryConfigSchema = z.object({
|
|
81
81
|
github: RegistryUrlConfigSchema,
|
|
82
82
|
npm: RegistryUrlConfigSchema,
|
|
@@ -103,7 +103,7 @@ var WorkspaceBotConfigSchema = z.object({
|
|
|
103
103
|
name: z.string().trim().default("stormie-bot").describe(
|
|
104
104
|
"The workspace bot user's name (this is the bot that will be used to perform various tasks)"
|
|
105
105
|
),
|
|
106
|
-
email: z.
|
|
106
|
+
email: z.email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
|
|
107
107
|
}).describe(
|
|
108
108
|
"The workspace's bot user's config used to automated various operations tasks"
|
|
109
109
|
);
|
|
@@ -146,19 +146,20 @@ var WorkspaceDirectoryConfigSchema = z.object({
|
|
|
146
146
|
);
|
|
147
147
|
var errorConfigSchema = z.object({
|
|
148
148
|
codesFile: z.string().trim().default(STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
|
|
149
|
-
url: z.
|
|
149
|
+
url: z.url().optional().describe(
|
|
150
150
|
"A URL to a page that looks up the workspace's error messages given a specific error code"
|
|
151
151
|
)
|
|
152
152
|
}).describe("The workspace's error config used during the error process");
|
|
153
153
|
var organizationConfigSchema = z.object({
|
|
154
154
|
name: z.string().trim().describe("The name of the organization"),
|
|
155
155
|
description: z.string().trim().optional().describe("A description of the organization"),
|
|
156
|
-
logo: z.
|
|
157
|
-
icon: z.
|
|
158
|
-
url: z.
|
|
156
|
+
logo: z.url().optional().describe("A URL to the organization's logo image"),
|
|
157
|
+
icon: z.url().optional().describe("A URL to the organization's icon image"),
|
|
158
|
+
url: z.url().optional().describe(
|
|
159
159
|
"A URL to a page that provides more information about the organization"
|
|
160
160
|
)
|
|
161
161
|
}).describe("The workspace's organization details");
|
|
162
|
+
var MODE_OPTIONS = ["development", "staging", "production"];
|
|
162
163
|
var stormWorkspaceConfigSchema = z.object({
|
|
163
164
|
$schema: z.string().trim().default(
|
|
164
165
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -175,12 +176,12 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
175
176
|
),
|
|
176
177
|
repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
177
178
|
license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
178
|
-
homepage: z.
|
|
179
|
-
docs: z.
|
|
180
|
-
portal: z.
|
|
181
|
-
licensing: z.
|
|
182
|
-
contact: z.
|
|
183
|
-
support: z.
|
|
179
|
+
homepage: z.url().optional().describe("The homepage of the workspace"),
|
|
180
|
+
docs: z.url().optional().describe("The documentation site for the workspace"),
|
|
181
|
+
portal: z.url().optional().describe("The development portal site for the workspace"),
|
|
182
|
+
licensing: z.url().optional().describe("The licensing site for the workspace"),
|
|
183
|
+
contact: z.url().optional().describe("The contact site for the workspace"),
|
|
184
|
+
support: z.url().optional().describe(
|
|
184
185
|
"The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
|
|
185
186
|
),
|
|
186
187
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
@@ -190,7 +191,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
190
191
|
release: WorkspaceReleaseConfigSchema,
|
|
191
192
|
socials: WorkspaceSocialsConfigSchema,
|
|
192
193
|
error: errorConfigSchema,
|
|
193
|
-
mode: z.enum(
|
|
194
|
+
mode: z.enum(MODE_OPTIONS).prefault("production").describe("The current runtime environment mode for the package"),
|
|
194
195
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
195
196
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
196
197
|
directories: WorkspaceDirectoryConfigSchema,
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
var _chunk63N4QQ4Fcjs = require('./chunk-63N4QQ4F.cjs');
|
|
10
10
|
|
|
11
11
|
// src/schema.ts
|
|
12
|
-
var
|
|
12
|
+
var _zod = require('zod'); var z = _interopRequireWildcard(_zod);
|
|
13
13
|
var DarkColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1d1e22").describe("The dark background color of the workspace");
|
|
14
14
|
var LightColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#f4f4f5").describe("The light background color of the workspace");
|
|
15
15
|
var BrandColorSchema = z.string().trim().toLowerCase().regex(/^#([0-9a-f]{3}){1,2}$/i).length(7).default("#1fb2a6").describe("The primary brand specific color of the workspace");
|
|
@@ -76,7 +76,7 @@ var SingleThemeColorConfigSchema = z.object({
|
|
|
76
76
|
positive: PositiveColorSchema,
|
|
77
77
|
negative: NegativeColorSchema
|
|
78
78
|
});
|
|
79
|
-
var RegistryUrlConfigSchema = z.
|
|
79
|
+
var RegistryUrlConfigSchema = z.url().optional().describe("A remote registry URL used to publish distributable packages");
|
|
80
80
|
var RegistryConfigSchema = z.object({
|
|
81
81
|
github: RegistryUrlConfigSchema,
|
|
82
82
|
npm: RegistryUrlConfigSchema,
|
|
@@ -103,7 +103,7 @@ var WorkspaceBotConfigSchema = z.object({
|
|
|
103
103
|
name: z.string().trim().default("stormie-bot").describe(
|
|
104
104
|
"The workspace bot user's name (this is the bot that will be used to perform various tasks)"
|
|
105
105
|
),
|
|
106
|
-
email: z.
|
|
106
|
+
email: z.email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
|
|
107
107
|
}).describe(
|
|
108
108
|
"The workspace's bot user's config used to automated various operations tasks"
|
|
109
109
|
);
|
|
@@ -146,19 +146,20 @@ var WorkspaceDirectoryConfigSchema = z.object({
|
|
|
146
146
|
);
|
|
147
147
|
var errorConfigSchema = z.object({
|
|
148
148
|
codesFile: z.string().trim().default(_chunk63N4QQ4Fcjs.STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
|
|
149
|
-
url: z.
|
|
149
|
+
url: z.url().optional().describe(
|
|
150
150
|
"A URL to a page that looks up the workspace's error messages given a specific error code"
|
|
151
151
|
)
|
|
152
152
|
}).describe("The workspace's error config used during the error process");
|
|
153
153
|
var organizationConfigSchema = z.object({
|
|
154
154
|
name: z.string().trim().describe("The name of the organization"),
|
|
155
155
|
description: z.string().trim().optional().describe("A description of the organization"),
|
|
156
|
-
logo: z.
|
|
157
|
-
icon: z.
|
|
158
|
-
url: z.
|
|
156
|
+
logo: z.url().optional().describe("A URL to the organization's logo image"),
|
|
157
|
+
icon: z.url().optional().describe("A URL to the organization's icon image"),
|
|
158
|
+
url: z.url().optional().describe(
|
|
159
159
|
"A URL to a page that provides more information about the organization"
|
|
160
160
|
)
|
|
161
161
|
}).describe("The workspace's organization details");
|
|
162
|
+
var MODE_OPTIONS = ["development", "staging", "production"];
|
|
162
163
|
var stormWorkspaceConfigSchema = z.object({
|
|
163
164
|
$schema: z.string().trim().default(
|
|
164
165
|
"https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
|
|
@@ -175,12 +176,12 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
175
176
|
),
|
|
176
177
|
repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
177
178
|
license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
178
|
-
homepage: z.
|
|
179
|
-
docs: z.
|
|
180
|
-
portal: z.
|
|
181
|
-
licensing: z.
|
|
182
|
-
contact: z.
|
|
183
|
-
support: z.
|
|
179
|
+
homepage: z.url().optional().describe("The homepage of the workspace"),
|
|
180
|
+
docs: z.url().optional().describe("The documentation site for the workspace"),
|
|
181
|
+
portal: z.url().optional().describe("The development portal site for the workspace"),
|
|
182
|
+
licensing: z.url().optional().describe("The licensing site for the workspace"),
|
|
183
|
+
contact: z.url().optional().describe("The contact site for the workspace"),
|
|
184
|
+
support: z.url().optional().describe(
|
|
184
185
|
"The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
|
|
185
186
|
),
|
|
186
187
|
branch: z.string().trim().default("main").describe("The branch of the workspace"),
|
|
@@ -190,7 +191,7 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
190
191
|
release: WorkspaceReleaseConfigSchema,
|
|
191
192
|
socials: WorkspaceSocialsConfigSchema,
|
|
192
193
|
error: errorConfigSchema,
|
|
193
|
-
mode: z.enum(
|
|
194
|
+
mode: z.enum(MODE_OPTIONS).prefault("production").describe("The current runtime environment mode for the package"),
|
|
194
195
|
workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
|
|
195
196
|
skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
|
|
196
197
|
directories: WorkspaceDirectoryConfigSchema,
|
package/dist/define-config.d.cts
CHANGED
package/dist/define-config.d.ts
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -18,7 +18,7 @@ var _chunkH6PQ7FMQcjs = require('./chunk-H6PQ7FMQ.cjs');
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
var
|
|
21
|
+
var _chunkMWNFJGNEcjs = require('./chunk-MWNFJGNE.cjs');
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
|
|
@@ -73,4 +73,4 @@ var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
|
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
|
|
76
|
-
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema =
|
|
76
|
+
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkMWNFJGNEcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkMWNFJGNEcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkMWNFJGNEcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkMWNFJGNEcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkMWNFJGNEcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkMWNFJGNEcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkMWNFJGNEcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkMWNFJGNEcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_CONTACT = _chunk63N4QQ4Fcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunk63N4QQ4Fcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunk63N4QQ4Fcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunk63N4QQ4Fcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunk63N4QQ4Fcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunk63N4QQ4Fcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunk63N4QQ4Fcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunk63N4QQ4Fcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.STORM_DEFAULT_SOCIAL_DISCORD = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SOCIAL_DISCORD; exports.STORM_DEFAULT_SOCIAL_GITHUB = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SOCIAL_GITHUB; exports.STORM_DEFAULT_SOCIAL_MEDIUM = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SOCIAL_MEDIUM; exports.STORM_DEFAULT_SOCIAL_SLACK = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SOCIAL_SLACK; exports.STORM_DEFAULT_SOCIAL_TELEGRAM = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SOCIAL_TELEGRAM; exports.STORM_DEFAULT_SOCIAL_TWITTER = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SOCIAL_TWITTER; exports.STORM_DEFAULT_SUPPORT = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SUPPORT; exports.SingleThemeColorConfigSchema = _chunkMWNFJGNEcjs.SingleThemeColorConfigSchema; exports.WorkspaceBotConfigSchema = _chunkMWNFJGNEcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkMWNFJGNEcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkMWNFJGNEcjs.WorkspaceReleaseConfigSchema; exports.WorkspaceSocialsConfigSchema = _chunkMWNFJGNEcjs.WorkspaceSocialsConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkMWNFJGNEcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkMWNFJGNEcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkMWNFJGNEcjs.stormWorkspaceConfigSchema;
|
package/dist/index.d.cts
CHANGED
|
@@ -2,4 +2,4 @@ export { STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FI
|
|
|
2
2
|
export { defineConfig } from './define-config.cjs';
|
|
3
3
|
export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema, WorkspaceSocialsConfigSchema, errorConfigSchema, organizationConfigSchema, stormWorkspaceConfigSchema } from './schema.cjs';
|
|
4
4
|
export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, OrganizationConfig, OrganizationConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.cjs';
|
|
5
|
-
import 'zod
|
|
5
|
+
import 'zod';
|
package/dist/index.d.ts
CHANGED
|
@@ -2,4 +2,4 @@ export { STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FI
|
|
|
2
2
|
export { defineConfig } from './define-config.js';
|
|
3
3
|
export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema, WorkspaceSocialsConfigSchema, errorConfigSchema, organizationConfigSchema, stormWorkspaceConfigSchema } from './schema.js';
|
|
4
4
|
export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, OrganizationConfig, OrganizationConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.js';
|
|
5
|
-
import 'zod
|
|
5
|
+
import 'zod';
|
package/dist/index.js
CHANGED
package/dist/schema.cjs
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkMWNFJGNEcjs = require('./chunk-MWNFJGNE.cjs');
|
|
19
19
|
require('./chunk-63N4QQ4F.cjs');
|
|
20
20
|
|
|
21
21
|
|
|
@@ -34,4 +34,4 @@ require('./chunk-63N4QQ4F.cjs');
|
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
exports.ColorConfigMapSchema =
|
|
37
|
+
exports.ColorConfigMapSchema = _chunkMWNFJGNEcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkMWNFJGNEcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkMWNFJGNEcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkMWNFJGNEcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkMWNFJGNEcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkMWNFJGNEcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkMWNFJGNEcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkMWNFJGNEcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkMWNFJGNEcjs.SingleThemeColorConfigSchema; exports.WorkspaceBotConfigSchema = _chunkMWNFJGNEcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkMWNFJGNEcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkMWNFJGNEcjs.WorkspaceReleaseConfigSchema; exports.WorkspaceSocialsConfigSchema = _chunkMWNFJGNEcjs.WorkspaceSocialsConfigSchema; exports.errorConfigSchema = _chunkMWNFJGNEcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkMWNFJGNEcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkMWNFJGNEcjs.stormWorkspaceConfigSchema;
|
package/dist/schema.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as z from 'zod
|
|
1
|
+
import * as z from 'zod';
|
|
2
2
|
|
|
3
3
|
declare const DarkThemeColorConfigSchema: z.ZodObject<{
|
|
4
4
|
foreground: z.ZodDefault<z.ZodString>;
|
|
@@ -82,13 +82,13 @@ declare const SingleThemeColorConfigSchema: z.ZodObject<{
|
|
|
82
82
|
positive: z.ZodDefault<z.ZodString>;
|
|
83
83
|
negative: z.ZodDefault<z.ZodString>;
|
|
84
84
|
}, z.core.$strip>;
|
|
85
|
-
declare const RegistryUrlConfigSchema: z.ZodOptional<z.
|
|
85
|
+
declare const RegistryUrlConfigSchema: z.ZodOptional<z.ZodURL>;
|
|
86
86
|
declare const RegistryConfigSchema: z.ZodDefault<z.ZodObject<{
|
|
87
|
-
github: z.ZodOptional<z.
|
|
88
|
-
npm: z.ZodOptional<z.
|
|
89
|
-
cargo: z.ZodOptional<z.
|
|
90
|
-
cyclone: z.ZodOptional<z.
|
|
91
|
-
container: z.ZodOptional<z.
|
|
87
|
+
github: z.ZodOptional<z.ZodURL>;
|
|
88
|
+
npm: z.ZodOptional<z.ZodURL>;
|
|
89
|
+
cargo: z.ZodOptional<z.ZodURL>;
|
|
90
|
+
cyclone: z.ZodOptional<z.ZodURL>;
|
|
91
|
+
container: z.ZodOptional<z.ZodURL>;
|
|
92
92
|
}, z.core.$strip>>;
|
|
93
93
|
/**
|
|
94
94
|
* Storm theme color config values used for styling various workspace elements
|
|
@@ -194,7 +194,7 @@ declare const ColorConfigMapSchema: z.ZodRecord<z.ZodUnion<readonly [z.ZodLitera
|
|
|
194
194
|
declare const ExtendsSchema: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>;
|
|
195
195
|
declare const WorkspaceBotConfigSchema: z.ZodObject<{
|
|
196
196
|
name: z.ZodDefault<z.ZodString>;
|
|
197
|
-
email: z.ZodDefault<z.
|
|
197
|
+
email: z.ZodDefault<z.ZodEmail>;
|
|
198
198
|
}, z.core.$strip>;
|
|
199
199
|
declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
|
|
200
200
|
banner: z.ZodOptional<z.ZodString>;
|
|
@@ -219,14 +219,14 @@ declare const WorkspaceDirectoryConfigSchema: z.ZodObject<{
|
|
|
219
219
|
}, z.core.$strip>;
|
|
220
220
|
declare const errorConfigSchema: z.ZodObject<{
|
|
221
221
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
222
|
-
url: z.ZodOptional<z.
|
|
222
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
223
223
|
}, z.core.$strip>;
|
|
224
224
|
declare const organizationConfigSchema: z.ZodObject<{
|
|
225
225
|
name: z.ZodString;
|
|
226
226
|
description: z.ZodOptional<z.ZodString>;
|
|
227
|
-
logo: z.ZodOptional<z.
|
|
228
|
-
icon: z.ZodOptional<z.
|
|
229
|
-
url: z.ZodOptional<z.
|
|
227
|
+
logo: z.ZodOptional<z.ZodURL>;
|
|
228
|
+
icon: z.ZodOptional<z.ZodURL>;
|
|
229
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
230
230
|
}, z.core.$strip>;
|
|
231
231
|
/**
|
|
232
232
|
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
@@ -239,24 +239,24 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
239
239
|
organization: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
240
240
|
name: z.ZodString;
|
|
241
241
|
description: z.ZodOptional<z.ZodString>;
|
|
242
|
-
logo: z.ZodOptional<z.
|
|
243
|
-
icon: z.ZodOptional<z.
|
|
244
|
-
url: z.ZodOptional<z.
|
|
242
|
+
logo: z.ZodOptional<z.ZodURL>;
|
|
243
|
+
icon: z.ZodOptional<z.ZodURL>;
|
|
244
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
245
245
|
}, z.core.$strip>, z.ZodString]>>;
|
|
246
246
|
repository: z.ZodOptional<z.ZodString>;
|
|
247
247
|
license: z.ZodDefault<z.ZodString>;
|
|
248
|
-
homepage: z.ZodOptional<z.
|
|
249
|
-
docs: z.ZodOptional<z.
|
|
250
|
-
portal: z.ZodOptional<z.
|
|
251
|
-
licensing: z.ZodOptional<z.
|
|
252
|
-
contact: z.ZodOptional<z.
|
|
253
|
-
support: z.ZodOptional<z.
|
|
248
|
+
homepage: z.ZodOptional<z.ZodURL>;
|
|
249
|
+
docs: z.ZodOptional<z.ZodURL>;
|
|
250
|
+
portal: z.ZodOptional<z.ZodURL>;
|
|
251
|
+
licensing: z.ZodOptional<z.ZodURL>;
|
|
252
|
+
contact: z.ZodOptional<z.ZodURL>;
|
|
253
|
+
support: z.ZodOptional<z.ZodURL>;
|
|
254
254
|
branch: z.ZodDefault<z.ZodString>;
|
|
255
255
|
preid: z.ZodOptional<z.ZodString>;
|
|
256
256
|
owner: z.ZodDefault<z.ZodString>;
|
|
257
257
|
bot: z.ZodObject<{
|
|
258
258
|
name: z.ZodDefault<z.ZodString>;
|
|
259
|
-
email: z.ZodDefault<z.
|
|
259
|
+
email: z.ZodDefault<z.ZodEmail>;
|
|
260
260
|
}, z.core.$strip>;
|
|
261
261
|
release: z.ZodObject<{
|
|
262
262
|
banner: z.ZodOptional<z.ZodString>;
|
|
@@ -273,9 +273,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
273
273
|
}, z.core.$strip>;
|
|
274
274
|
error: z.ZodObject<{
|
|
275
275
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
276
|
-
url: z.ZodOptional<z.
|
|
276
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
277
277
|
}, z.core.$strip>;
|
|
278
|
-
mode: z.
|
|
278
|
+
mode: z.ZodPrefault<z.ZodEnum<{
|
|
279
279
|
development: "development";
|
|
280
280
|
staging: "staging";
|
|
281
281
|
production: "production";
|
|
@@ -311,11 +311,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
311
311
|
}>>;
|
|
312
312
|
skipConfigLogging: z.ZodOptional<z.ZodBoolean>;
|
|
313
313
|
registry: z.ZodDefault<z.ZodObject<{
|
|
314
|
-
github: z.ZodOptional<z.
|
|
315
|
-
npm: z.ZodOptional<z.
|
|
316
|
-
cargo: z.ZodOptional<z.
|
|
317
|
-
cyclone: z.ZodOptional<z.
|
|
318
|
-
container: z.ZodOptional<z.
|
|
314
|
+
github: z.ZodOptional<z.ZodURL>;
|
|
315
|
+
npm: z.ZodOptional<z.ZodURL>;
|
|
316
|
+
cargo: z.ZodOptional<z.ZodURL>;
|
|
317
|
+
cyclone: z.ZodOptional<z.ZodURL>;
|
|
318
|
+
container: z.ZodOptional<z.ZodURL>;
|
|
319
319
|
}, z.core.$strip>>;
|
|
320
320
|
configFile: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
321
321
|
colors: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
package/dist/schema.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as z from 'zod
|
|
1
|
+
import * as z from 'zod';
|
|
2
2
|
|
|
3
3
|
declare const DarkThemeColorConfigSchema: z.ZodObject<{
|
|
4
4
|
foreground: z.ZodDefault<z.ZodString>;
|
|
@@ -82,13 +82,13 @@ declare const SingleThemeColorConfigSchema: z.ZodObject<{
|
|
|
82
82
|
positive: z.ZodDefault<z.ZodString>;
|
|
83
83
|
negative: z.ZodDefault<z.ZodString>;
|
|
84
84
|
}, z.core.$strip>;
|
|
85
|
-
declare const RegistryUrlConfigSchema: z.ZodOptional<z.
|
|
85
|
+
declare const RegistryUrlConfigSchema: z.ZodOptional<z.ZodURL>;
|
|
86
86
|
declare const RegistryConfigSchema: z.ZodDefault<z.ZodObject<{
|
|
87
|
-
github: z.ZodOptional<z.
|
|
88
|
-
npm: z.ZodOptional<z.
|
|
89
|
-
cargo: z.ZodOptional<z.
|
|
90
|
-
cyclone: z.ZodOptional<z.
|
|
91
|
-
container: z.ZodOptional<z.
|
|
87
|
+
github: z.ZodOptional<z.ZodURL>;
|
|
88
|
+
npm: z.ZodOptional<z.ZodURL>;
|
|
89
|
+
cargo: z.ZodOptional<z.ZodURL>;
|
|
90
|
+
cyclone: z.ZodOptional<z.ZodURL>;
|
|
91
|
+
container: z.ZodOptional<z.ZodURL>;
|
|
92
92
|
}, z.core.$strip>>;
|
|
93
93
|
/**
|
|
94
94
|
* Storm theme color config values used for styling various workspace elements
|
|
@@ -194,7 +194,7 @@ declare const ColorConfigMapSchema: z.ZodRecord<z.ZodUnion<readonly [z.ZodLitera
|
|
|
194
194
|
declare const ExtendsSchema: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>;
|
|
195
195
|
declare const WorkspaceBotConfigSchema: z.ZodObject<{
|
|
196
196
|
name: z.ZodDefault<z.ZodString>;
|
|
197
|
-
email: z.ZodDefault<z.
|
|
197
|
+
email: z.ZodDefault<z.ZodEmail>;
|
|
198
198
|
}, z.core.$strip>;
|
|
199
199
|
declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
|
|
200
200
|
banner: z.ZodOptional<z.ZodString>;
|
|
@@ -219,14 +219,14 @@ declare const WorkspaceDirectoryConfigSchema: z.ZodObject<{
|
|
|
219
219
|
}, z.core.$strip>;
|
|
220
220
|
declare const errorConfigSchema: z.ZodObject<{
|
|
221
221
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
222
|
-
url: z.ZodOptional<z.
|
|
222
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
223
223
|
}, z.core.$strip>;
|
|
224
224
|
declare const organizationConfigSchema: z.ZodObject<{
|
|
225
225
|
name: z.ZodString;
|
|
226
226
|
description: z.ZodOptional<z.ZodString>;
|
|
227
|
-
logo: z.ZodOptional<z.
|
|
228
|
-
icon: z.ZodOptional<z.
|
|
229
|
-
url: z.ZodOptional<z.
|
|
227
|
+
logo: z.ZodOptional<z.ZodURL>;
|
|
228
|
+
icon: z.ZodOptional<z.ZodURL>;
|
|
229
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
230
230
|
}, z.core.$strip>;
|
|
231
231
|
/**
|
|
232
232
|
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
@@ -239,24 +239,24 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
239
239
|
organization: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
240
240
|
name: z.ZodString;
|
|
241
241
|
description: z.ZodOptional<z.ZodString>;
|
|
242
|
-
logo: z.ZodOptional<z.
|
|
243
|
-
icon: z.ZodOptional<z.
|
|
244
|
-
url: z.ZodOptional<z.
|
|
242
|
+
logo: z.ZodOptional<z.ZodURL>;
|
|
243
|
+
icon: z.ZodOptional<z.ZodURL>;
|
|
244
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
245
245
|
}, z.core.$strip>, z.ZodString]>>;
|
|
246
246
|
repository: z.ZodOptional<z.ZodString>;
|
|
247
247
|
license: z.ZodDefault<z.ZodString>;
|
|
248
|
-
homepage: z.ZodOptional<z.
|
|
249
|
-
docs: z.ZodOptional<z.
|
|
250
|
-
portal: z.ZodOptional<z.
|
|
251
|
-
licensing: z.ZodOptional<z.
|
|
252
|
-
contact: z.ZodOptional<z.
|
|
253
|
-
support: z.ZodOptional<z.
|
|
248
|
+
homepage: z.ZodOptional<z.ZodURL>;
|
|
249
|
+
docs: z.ZodOptional<z.ZodURL>;
|
|
250
|
+
portal: z.ZodOptional<z.ZodURL>;
|
|
251
|
+
licensing: z.ZodOptional<z.ZodURL>;
|
|
252
|
+
contact: z.ZodOptional<z.ZodURL>;
|
|
253
|
+
support: z.ZodOptional<z.ZodURL>;
|
|
254
254
|
branch: z.ZodDefault<z.ZodString>;
|
|
255
255
|
preid: z.ZodOptional<z.ZodString>;
|
|
256
256
|
owner: z.ZodDefault<z.ZodString>;
|
|
257
257
|
bot: z.ZodObject<{
|
|
258
258
|
name: z.ZodDefault<z.ZodString>;
|
|
259
|
-
email: z.ZodDefault<z.
|
|
259
|
+
email: z.ZodDefault<z.ZodEmail>;
|
|
260
260
|
}, z.core.$strip>;
|
|
261
261
|
release: z.ZodObject<{
|
|
262
262
|
banner: z.ZodOptional<z.ZodString>;
|
|
@@ -273,9 +273,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
273
273
|
}, z.core.$strip>;
|
|
274
274
|
error: z.ZodObject<{
|
|
275
275
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
276
|
-
url: z.ZodOptional<z.
|
|
276
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
277
277
|
}, z.core.$strip>;
|
|
278
|
-
mode: z.
|
|
278
|
+
mode: z.ZodPrefault<z.ZodEnum<{
|
|
279
279
|
development: "development";
|
|
280
280
|
staging: "staging";
|
|
281
281
|
production: "production";
|
|
@@ -311,11 +311,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
311
311
|
}>>;
|
|
312
312
|
skipConfigLogging: z.ZodOptional<z.ZodBoolean>;
|
|
313
313
|
registry: z.ZodDefault<z.ZodObject<{
|
|
314
|
-
github: z.ZodOptional<z.
|
|
315
|
-
npm: z.ZodOptional<z.
|
|
316
|
-
cargo: z.ZodOptional<z.
|
|
317
|
-
cyclone: z.ZodOptional<z.
|
|
318
|
-
container: z.ZodOptional<z.
|
|
314
|
+
github: z.ZodOptional<z.ZodURL>;
|
|
315
|
+
npm: z.ZodOptional<z.ZodURL>;
|
|
316
|
+
cargo: z.ZodOptional<z.ZodURL>;
|
|
317
|
+
cyclone: z.ZodOptional<z.ZodURL>;
|
|
318
|
+
container: z.ZodOptional<z.ZodURL>;
|
|
319
319
|
}, z.core.$strip>>;
|
|
320
320
|
configFile: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
321
321
|
colors: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
package/dist/schema.js
CHANGED
package/dist/types.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as z from 'zod
|
|
1
|
+
import * as z from 'zod';
|
|
2
2
|
import { stormWorkspaceConfigSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, ColorConfigSchema, ColorConfigMapSchema, organizationConfigSchema } from './schema.cjs';
|
|
3
3
|
|
|
4
4
|
type DarkThemeColorConfig = z.infer<typeof DarkThemeColorConfigSchema>;
|
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as z from 'zod
|
|
1
|
+
import * as z from 'zod';
|
|
2
2
|
import { stormWorkspaceConfigSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, SingleThemeColorConfigSchema, ColorConfigSchema, ColorConfigMapSchema, organizationConfigSchema } from './schema.js';
|
|
3
3
|
|
|
4
4
|
type DarkThemeColorConfig = z.infer<typeof DarkThemeColorConfigSchema>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.125.
|
|
3
|
+
"version": "1.125.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Configuration management tools and schemas for Storm Software projects, providing a standardized approach to handle project settings and presets.",
|
|
6
6
|
"repository": {
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"dependencies": { "zod": "^4.0.2" },
|
|
88
88
|
"devDependencies": { "tsup": "8.4.0" },
|
|
89
89
|
"publishConfig": { "access": "public" },
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "56f060816d1082fefc318aa1b65294279c0bfdcd"
|
|
91
91
|
}
|
|
@@ -151,7 +151,6 @@
|
|
|
151
151
|
"properties": {
|
|
152
152
|
"banner": {
|
|
153
153
|
"description": "A URL to a banner image used to display the workspace's release",
|
|
154
|
-
"default": "https://public.storm-cdn.com/brand-banner.png",
|
|
155
154
|
"type": "string"
|
|
156
155
|
},
|
|
157
156
|
"header": {
|
|
@@ -160,11 +159,9 @@
|
|
|
160
159
|
},
|
|
161
160
|
"footer": {
|
|
162
161
|
"description": "A footer message appended to the end of the workspace's release notes",
|
|
163
|
-
"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",
|
|
164
162
|
"type": "string"
|
|
165
163
|
}
|
|
166
164
|
},
|
|
167
|
-
"required": ["banner", "footer"],
|
|
168
165
|
"additionalProperties": false
|
|
169
166
|
},
|
|
170
167
|
"socials": {
|
package/src/schema.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as z from "zod
|
|
1
|
+
import * as z from "zod";
|
|
2
2
|
export declare const DarkThemeColorConfigSchema: z.ZodObject<{
|
|
3
3
|
foreground: z.ZodDefault<z.ZodString>;
|
|
4
4
|
background: z.ZodDefault<z.ZodString>;
|
|
@@ -81,13 +81,13 @@ export declare const SingleThemeColorConfigSchema: z.ZodObject<{
|
|
|
81
81
|
positive: z.ZodDefault<z.ZodString>;
|
|
82
82
|
negative: z.ZodDefault<z.ZodString>;
|
|
83
83
|
}, z.core.$strip>;
|
|
84
|
-
export declare const RegistryUrlConfigSchema: z.ZodOptional<z.
|
|
84
|
+
export declare const RegistryUrlConfigSchema: z.ZodOptional<z.ZodURL>;
|
|
85
85
|
export declare const RegistryConfigSchema: z.ZodDefault<z.ZodObject<{
|
|
86
|
-
github: z.ZodOptional<z.
|
|
87
|
-
npm: z.ZodOptional<z.
|
|
88
|
-
cargo: z.ZodOptional<z.
|
|
89
|
-
cyclone: z.ZodOptional<z.
|
|
90
|
-
container: z.ZodOptional<z.
|
|
86
|
+
github: z.ZodOptional<z.ZodURL>;
|
|
87
|
+
npm: z.ZodOptional<z.ZodURL>;
|
|
88
|
+
cargo: z.ZodOptional<z.ZodURL>;
|
|
89
|
+
cyclone: z.ZodOptional<z.ZodURL>;
|
|
90
|
+
container: z.ZodOptional<z.ZodURL>;
|
|
91
91
|
}, z.core.$strip>>;
|
|
92
92
|
/**
|
|
93
93
|
* Storm theme color config values used for styling various workspace elements
|
|
@@ -193,7 +193,7 @@ export declare const ColorConfigMapSchema: z.ZodRecord<z.ZodUnion<readonly [z.Zo
|
|
|
193
193
|
export declare const ExtendsSchema: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>;
|
|
194
194
|
export declare const WorkspaceBotConfigSchema: z.ZodObject<{
|
|
195
195
|
name: z.ZodDefault<z.ZodString>;
|
|
196
|
-
email: z.ZodDefault<z.
|
|
196
|
+
email: z.ZodDefault<z.ZodEmail>;
|
|
197
197
|
}, z.core.$strip>;
|
|
198
198
|
export declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
|
|
199
199
|
banner: z.ZodOptional<z.ZodString>;
|
|
@@ -218,14 +218,14 @@ export declare const WorkspaceDirectoryConfigSchema: z.ZodObject<{
|
|
|
218
218
|
}, z.core.$strip>;
|
|
219
219
|
export declare const errorConfigSchema: z.ZodObject<{
|
|
220
220
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
221
|
-
url: z.ZodOptional<z.
|
|
221
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
222
222
|
}, z.core.$strip>;
|
|
223
223
|
export declare const organizationConfigSchema: z.ZodObject<{
|
|
224
224
|
name: z.ZodString;
|
|
225
225
|
description: z.ZodOptional<z.ZodString>;
|
|
226
|
-
logo: z.ZodOptional<z.
|
|
227
|
-
icon: z.ZodOptional<z.
|
|
228
|
-
url: z.ZodOptional<z.
|
|
226
|
+
logo: z.ZodOptional<z.ZodURL>;
|
|
227
|
+
icon: z.ZodOptional<z.ZodURL>;
|
|
228
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
229
229
|
}, z.core.$strip>;
|
|
230
230
|
/**
|
|
231
231
|
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
@@ -238,24 +238,24 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
238
238
|
organization: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
239
239
|
name: z.ZodString;
|
|
240
240
|
description: z.ZodOptional<z.ZodString>;
|
|
241
|
-
logo: z.ZodOptional<z.
|
|
242
|
-
icon: z.ZodOptional<z.
|
|
243
|
-
url: z.ZodOptional<z.
|
|
241
|
+
logo: z.ZodOptional<z.ZodURL>;
|
|
242
|
+
icon: z.ZodOptional<z.ZodURL>;
|
|
243
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
244
244
|
}, z.core.$strip>, z.ZodString]>>;
|
|
245
245
|
repository: z.ZodOptional<z.ZodString>;
|
|
246
246
|
license: z.ZodDefault<z.ZodString>;
|
|
247
|
-
homepage: z.ZodOptional<z.
|
|
248
|
-
docs: z.ZodOptional<z.
|
|
249
|
-
portal: z.ZodOptional<z.
|
|
250
|
-
licensing: z.ZodOptional<z.
|
|
251
|
-
contact: z.ZodOptional<z.
|
|
252
|
-
support: z.ZodOptional<z.
|
|
247
|
+
homepage: z.ZodOptional<z.ZodURL>;
|
|
248
|
+
docs: z.ZodOptional<z.ZodURL>;
|
|
249
|
+
portal: z.ZodOptional<z.ZodURL>;
|
|
250
|
+
licensing: z.ZodOptional<z.ZodURL>;
|
|
251
|
+
contact: z.ZodOptional<z.ZodURL>;
|
|
252
|
+
support: z.ZodOptional<z.ZodURL>;
|
|
253
253
|
branch: z.ZodDefault<z.ZodString>;
|
|
254
254
|
preid: z.ZodOptional<z.ZodString>;
|
|
255
255
|
owner: z.ZodDefault<z.ZodString>;
|
|
256
256
|
bot: z.ZodObject<{
|
|
257
257
|
name: z.ZodDefault<z.ZodString>;
|
|
258
|
-
email: z.ZodDefault<z.
|
|
258
|
+
email: z.ZodDefault<z.ZodEmail>;
|
|
259
259
|
}, z.core.$strip>;
|
|
260
260
|
release: z.ZodObject<{
|
|
261
261
|
banner: z.ZodOptional<z.ZodString>;
|
|
@@ -272,9 +272,9 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
272
272
|
}, z.core.$strip>;
|
|
273
273
|
error: z.ZodObject<{
|
|
274
274
|
codesFile: z.ZodDefault<z.ZodString>;
|
|
275
|
-
url: z.ZodOptional<z.
|
|
275
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
276
276
|
}, z.core.$strip>;
|
|
277
|
-
mode: z.
|
|
277
|
+
mode: z.ZodPrefault<z.ZodEnum<{
|
|
278
278
|
development: "development";
|
|
279
279
|
staging: "staging";
|
|
280
280
|
production: "production";
|
|
@@ -310,11 +310,11 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
310
310
|
}>>;
|
|
311
311
|
skipConfigLogging: z.ZodOptional<z.ZodBoolean>;
|
|
312
312
|
registry: z.ZodDefault<z.ZodObject<{
|
|
313
|
-
github: z.ZodOptional<z.
|
|
314
|
-
npm: z.ZodOptional<z.
|
|
315
|
-
cargo: z.ZodOptional<z.
|
|
316
|
-
cyclone: z.ZodOptional<z.
|
|
317
|
-
container: z.ZodOptional<z.
|
|
313
|
+
github: z.ZodOptional<z.ZodURL>;
|
|
314
|
+
npm: z.ZodOptional<z.ZodURL>;
|
|
315
|
+
cargo: z.ZodOptional<z.ZodURL>;
|
|
316
|
+
cyclone: z.ZodOptional<z.ZodURL>;
|
|
317
|
+
container: z.ZodOptional<z.ZodURL>;
|
|
318
318
|
}, z.core.$strip>>;
|
|
319
319
|
configFile: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
320
320
|
colors: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
package/src/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as z from "zod
|
|
1
|
+
import * as z from "zod";
|
|
2
2
|
import type { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, organizationConfigSchema, SingleThemeColorConfigSchema, stormWorkspaceConfigSchema } from "./schema";
|
|
3
3
|
export type DarkThemeColorConfig = z.infer<typeof DarkThemeColorConfigSchema>;
|
|
4
4
|
export type DarkThemeColorConfigInput = z.input<typeof DarkThemeColorConfigSchema>;
|