@storm-software/config 1.125.7 → 1.125.9

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 CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  # Changelog for Storm Ops - Config
4
4
 
5
+ ## [1.125.8](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.8) (2025-07-10)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **config:** Remove org-specific `release` field from defaults
10
+ ([ea298fb47](https://github.com/storm-software/storm-ops/commit/ea298fb47))
11
+ - **monorepo:** Regenerate workspace artifacts
12
+ ([f45c14e5f](https://github.com/storm-software/storm-ops/commit/f45c14e5f))
13
+
14
+ ## [1.125.7](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.7) (2025-07-10)
15
+
16
+ ### Miscellaneous
17
+
18
+ - **monorepo:** Regenerate README markdown files
19
+ ([113ca7595](https://github.com/storm-software/storm-ops/commit/113ca7595))
20
+
5
21
  ## [1.125.6](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.6) (2025-07-10)
6
22
 
7
23
  ### 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
- [![Version](https://img.shields.io/badge/version-1.125.5-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-1.125.7-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
@@ -1,7 +1,5 @@
1
1
  import {
2
2
  STORM_DEFAULT_ERROR_CODES_FILE,
3
- STORM_DEFAULT_RELEASE_BANNER,
4
- STORM_DEFAULT_RELEASE_FOOTER,
5
3
  STORM_DEFAULT_SOCIAL_DISCORD,
6
4
  STORM_DEFAULT_SOCIAL_GITHUB,
7
5
  STORM_DEFAULT_SOCIAL_MEDIUM,
@@ -78,7 +76,7 @@ var SingleThemeColorConfigSchema = z.object({
78
76
  positive: PositiveColorSchema,
79
77
  negative: NegativeColorSchema
80
78
  });
81
- var RegistryUrlConfigSchema = z.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
79
+ var RegistryUrlConfigSchema = z.url().optional().describe("A remote registry URL used to publish distributable packages");
82
80
  var RegistryConfigSchema = z.object({
83
81
  github: RegistryUrlConfigSchema,
84
82
  npm: RegistryUrlConfigSchema,
@@ -105,18 +103,18 @@ var WorkspaceBotConfigSchema = z.object({
105
103
  name: z.string().trim().default("stormie-bot").describe(
106
104
  "The workspace bot user's name (this is the bot that will be used to perform various tasks)"
107
105
  ),
108
- email: z.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
106
+ email: z.email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
109
107
  }).describe(
110
108
  "The workspace's bot user's config used to automated various operations tasks"
111
109
  );
112
110
  var WorkspaceReleaseConfigSchema = z.object({
113
- banner: z.string().trim().default(STORM_DEFAULT_RELEASE_BANNER).describe(
111
+ banner: z.string().trim().optional().describe(
114
112
  "A URL to a banner image used to display the workspace's release"
115
113
  ),
116
114
  header: z.string().trim().optional().describe(
117
115
  "A header message appended to the start of the workspace's release notes"
118
116
  ),
119
- footer: z.string().trim().default(STORM_DEFAULT_RELEASE_FOOTER).describe(
117
+ footer: z.string().trim().optional().describe(
120
118
  "A footer message appended to the end of the workspace's release notes"
121
119
  )
122
120
  }).describe("The workspace's release config used during the release process");
@@ -148,19 +146,20 @@ var WorkspaceDirectoryConfigSchema = z.object({
148
146
  );
149
147
  var errorConfigSchema = z.object({
150
148
  codesFile: z.string().trim().default(STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
151
- url: z.string().trim().url().optional().describe(
149
+ url: z.url().optional().describe(
152
150
  "A URL to a page that looks up the workspace's error messages given a specific error code"
153
151
  )
154
152
  }).describe("The workspace's error config used during the error process");
155
153
  var organizationConfigSchema = z.object({
156
154
  name: z.string().trim().describe("The name of the organization"),
157
155
  description: z.string().trim().optional().describe("A description of the organization"),
158
- logo: z.string().trim().url().optional().describe("A URL to the organization's logo image"),
159
- icon: z.string().trim().url().optional().describe("A URL to the organization's icon image"),
160
- url: z.string().trim().url().optional().describe(
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(
161
159
  "A URL to a page that provides more information about the organization"
162
160
  )
163
161
  }).describe("The workspace's organization details");
162
+ var MODE_OPTIONS = ["development", "staging", "production"];
164
163
  var stormWorkspaceConfigSchema = z.object({
165
164
  $schema: z.string().trim().default(
166
165
  "https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
@@ -177,12 +176,12 @@ var stormWorkspaceConfigSchema = z.object({
177
176
  ),
178
177
  repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
179
178
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
180
- homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
181
- docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
182
- portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
183
- licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
184
- contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
185
- support: z.string().trim().url().optional().describe(
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(
186
185
  "The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
187
186
  ),
188
187
  branch: z.string().trim().default("main").describe("The branch of the workspace"),
@@ -192,7 +191,7 @@ var stormWorkspaceConfigSchema = z.object({
192
191
  release: WorkspaceReleaseConfigSchema,
193
192
  socials: WorkspaceSocialsConfigSchema,
194
193
  error: errorConfigSchema,
195
- mode: z.enum(["development", "staging", "production"]).default("production").describe("The current runtime environment mode for the package"),
194
+ mode: z.enum(MODE_OPTIONS).prefault("production").describe("The current runtime environment mode for the package"),
196
195
  workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
197
196
  skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
198
197
  directories: WorkspaceDirectoryConfigSchema,
@@ -6,8 +6,6 @@
6
6
 
7
7
 
8
8
 
9
-
10
-
11
9
  var _chunk63N4QQ4Fcjs = require('./chunk-63N4QQ4F.cjs');
12
10
 
13
11
  // src/schema.ts
@@ -78,7 +76,7 @@ var SingleThemeColorConfigSchema = z.object({
78
76
  positive: PositiveColorSchema,
79
77
  negative: NegativeColorSchema
80
78
  });
81
- var RegistryUrlConfigSchema = z.string().trim().toLowerCase().url().optional().describe("A remote registry URL used to publish distributable packages");
79
+ var RegistryUrlConfigSchema = z.url().optional().describe("A remote registry URL used to publish distributable packages");
82
80
  var RegistryConfigSchema = z.object({
83
81
  github: RegistryUrlConfigSchema,
84
82
  npm: RegistryUrlConfigSchema,
@@ -105,18 +103,18 @@ var WorkspaceBotConfigSchema = z.object({
105
103
  name: z.string().trim().default("stormie-bot").describe(
106
104
  "The workspace bot user's name (this is the bot that will be used to perform various tasks)"
107
105
  ),
108
- email: z.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
106
+ email: z.email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
109
107
  }).describe(
110
108
  "The workspace's bot user's config used to automated various operations tasks"
111
109
  );
112
110
  var WorkspaceReleaseConfigSchema = z.object({
113
- banner: z.string().trim().default(_chunk63N4QQ4Fcjs.STORM_DEFAULT_RELEASE_BANNER).describe(
111
+ banner: z.string().trim().optional().describe(
114
112
  "A URL to a banner image used to display the workspace's release"
115
113
  ),
116
114
  header: z.string().trim().optional().describe(
117
115
  "A header message appended to the start of the workspace's release notes"
118
116
  ),
119
- footer: z.string().trim().default(_chunk63N4QQ4Fcjs.STORM_DEFAULT_RELEASE_FOOTER).describe(
117
+ footer: z.string().trim().optional().describe(
120
118
  "A footer message appended to the end of the workspace's release notes"
121
119
  )
122
120
  }).describe("The workspace's release config used during the release process");
@@ -148,19 +146,20 @@ var WorkspaceDirectoryConfigSchema = z.object({
148
146
  );
149
147
  var errorConfigSchema = z.object({
150
148
  codesFile: z.string().trim().default(_chunk63N4QQ4Fcjs.STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
151
- url: z.string().trim().url().optional().describe(
149
+ url: z.url().optional().describe(
152
150
  "A URL to a page that looks up the workspace's error messages given a specific error code"
153
151
  )
154
152
  }).describe("The workspace's error config used during the error process");
155
153
  var organizationConfigSchema = z.object({
156
154
  name: z.string().trim().describe("The name of the organization"),
157
155
  description: z.string().trim().optional().describe("A description of the organization"),
158
- logo: z.string().trim().url().optional().describe("A URL to the organization's logo image"),
159
- icon: z.string().trim().url().optional().describe("A URL to the organization's icon image"),
160
- url: z.string().trim().url().optional().describe(
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(
161
159
  "A URL to a page that provides more information about the organization"
162
160
  )
163
161
  }).describe("The workspace's organization details");
162
+ var MODE_OPTIONS = ["development", "staging", "production"];
164
163
  var stormWorkspaceConfigSchema = z.object({
165
164
  $schema: z.string().trim().default(
166
165
  "https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
@@ -177,12 +176,12 @@ var stormWorkspaceConfigSchema = z.object({
177
176
  ),
178
177
  repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
179
178
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
180
- homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
181
- docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
182
- portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
183
- licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
184
- contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
185
- support: z.string().trim().url().optional().describe(
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(
186
185
  "The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
187
186
  ),
188
187
  branch: z.string().trim().default("main").describe("The branch of the workspace"),
@@ -192,7 +191,7 @@ var stormWorkspaceConfigSchema = z.object({
192
191
  release: WorkspaceReleaseConfigSchema,
193
192
  socials: WorkspaceSocialsConfigSchema,
194
193
  error: errorConfigSchema,
195
- mode: z.enum(["development", "staging", "production"]).default("production").describe("The current runtime environment mode for the package"),
194
+ mode: z.enum(MODE_OPTIONS).prefault("production").describe("The current runtime environment mode for the package"),
196
195
  workspaceRoot: z.string().trim().describe("The root directory of the workspace"),
197
196
  skipCache: z.boolean().default(false).describe("Should all known types of workspace caching be skipped?"),
198
197
  directories: WorkspaceDirectoryConfigSchema,
@@ -163,7 +163,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
163
163
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
164
164
  timezone?: string | undefined;
165
165
  locale?: string | undefined;
166
- logLevel?: "error" | "success" | "info" | "fatal" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
166
+ logLevel?: "success" | "info" | "fatal" | "error" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
167
167
  skipConfigLogging?: boolean | undefined;
168
168
  registry?: {
169
169
  github?: string | undefined;
@@ -163,7 +163,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
163
163
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
164
164
  timezone?: string | undefined;
165
165
  locale?: string | undefined;
166
- logLevel?: "error" | "success" | "info" | "fatal" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
166
+ logLevel?: "success" | "info" | "fatal" | "error" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
167
167
  skipConfigLogging?: boolean | undefined;
168
168
  registry?: {
169
169
  github?: string | undefined;
package/dist/index.cjs CHANGED
@@ -18,7 +18,7 @@ var _chunkH6PQ7FMQcjs = require('./chunk-H6PQ7FMQ.cjs');
18
18
 
19
19
 
20
20
 
21
- var _chunkC2KLOUYYcjs = require('./chunk-C2KLOUYY.cjs');
21
+ var _chunkY3XQJMSVcjs = require('./chunk-Y3XQJMSV.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 = _chunkC2KLOUYYcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkC2KLOUYYcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkC2KLOUYYcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkC2KLOUYYcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkC2KLOUYYcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkC2KLOUYYcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkC2KLOUYYcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkC2KLOUYYcjs.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 = _chunkC2KLOUYYcjs.SingleThemeColorConfigSchema; exports.WorkspaceBotConfigSchema = _chunkC2KLOUYYcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkC2KLOUYYcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkC2KLOUYYcjs.WorkspaceReleaseConfigSchema; exports.WorkspaceSocialsConfigSchema = _chunkC2KLOUYYcjs.WorkspaceSocialsConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkC2KLOUYYcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkC2KLOUYYcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkC2KLOUYYcjs.stormWorkspaceConfigSchema;
76
+ exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkY3XQJMSVcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkY3XQJMSVcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkY3XQJMSVcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkY3XQJMSVcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkY3XQJMSVcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkY3XQJMSVcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkY3XQJMSVcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkY3XQJMSVcjs.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 = _chunkY3XQJMSVcjs.SingleThemeColorConfigSchema; exports.WorkspaceBotConfigSchema = _chunkY3XQJMSVcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkY3XQJMSVcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkY3XQJMSVcjs.WorkspaceReleaseConfigSchema; exports.WorkspaceSocialsConfigSchema = _chunkY3XQJMSVcjs.WorkspaceSocialsConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkY3XQJMSVcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkY3XQJMSVcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkY3XQJMSVcjs.stormWorkspaceConfigSchema;
package/dist/index.js CHANGED
@@ -18,7 +18,7 @@ import {
18
18
  errorConfigSchema,
19
19
  organizationConfigSchema,
20
20
  stormWorkspaceConfigSchema
21
- } from "./chunk-ABGOB6LC.js";
21
+ } from "./chunk-7F4IBPQM.js";
22
22
  import {
23
23
  STORM_DEFAULT_CONTACT,
24
24
  STORM_DEFAULT_DOCS,
package/dist/schema.cjs CHANGED
@@ -15,7 +15,7 @@
15
15
 
16
16
 
17
17
 
18
- var _chunkC2KLOUYYcjs = require('./chunk-C2KLOUYY.cjs');
18
+ var _chunkY3XQJMSVcjs = require('./chunk-Y3XQJMSV.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 = _chunkC2KLOUYYcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkC2KLOUYYcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkC2KLOUYYcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkC2KLOUYYcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkC2KLOUYYcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkC2KLOUYYcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkC2KLOUYYcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkC2KLOUYYcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkC2KLOUYYcjs.SingleThemeColorConfigSchema; exports.WorkspaceBotConfigSchema = _chunkC2KLOUYYcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkC2KLOUYYcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkC2KLOUYYcjs.WorkspaceReleaseConfigSchema; exports.WorkspaceSocialsConfigSchema = _chunkC2KLOUYYcjs.WorkspaceSocialsConfigSchema; exports.errorConfigSchema = _chunkC2KLOUYYcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkC2KLOUYYcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkC2KLOUYYcjs.stormWorkspaceConfigSchema;
37
+ exports.ColorConfigMapSchema = _chunkY3XQJMSVcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkY3XQJMSVcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkY3XQJMSVcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkY3XQJMSVcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkY3XQJMSVcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkY3XQJMSVcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkY3XQJMSVcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkY3XQJMSVcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkY3XQJMSVcjs.SingleThemeColorConfigSchema; exports.WorkspaceBotConfigSchema = _chunkY3XQJMSVcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkY3XQJMSVcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkY3XQJMSVcjs.WorkspaceReleaseConfigSchema; exports.WorkspaceSocialsConfigSchema = _chunkY3XQJMSVcjs.WorkspaceSocialsConfigSchema; exports.errorConfigSchema = _chunkY3XQJMSVcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkY3XQJMSVcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkY3XQJMSVcjs.stormWorkspaceConfigSchema;
package/dist/schema.d.cts CHANGED
@@ -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.ZodString>;
85
+ declare const RegistryUrlConfigSchema: z.ZodOptional<z.ZodURL>;
86
86
  declare const RegistryConfigSchema: z.ZodDefault<z.ZodObject<{
87
- github: z.ZodOptional<z.ZodString>;
88
- npm: z.ZodOptional<z.ZodString>;
89
- cargo: z.ZodOptional<z.ZodString>;
90
- cyclone: z.ZodOptional<z.ZodString>;
91
- container: z.ZodOptional<z.ZodString>;
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,12 +194,12 @@ 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.ZodString>;
197
+ email: z.ZodDefault<z.ZodEmail>;
198
198
  }, z.core.$strip>;
199
199
  declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
200
- banner: z.ZodDefault<z.ZodString>;
200
+ banner: z.ZodOptional<z.ZodString>;
201
201
  header: z.ZodOptional<z.ZodString>;
202
- footer: z.ZodDefault<z.ZodString>;
202
+ footer: z.ZodOptional<z.ZodString>;
203
203
  }, z.core.$strip>;
204
204
  declare const WorkspaceSocialsConfigSchema: z.ZodObject<{
205
205
  twitter: z.ZodDefault<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.ZodString>;
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.ZodString>;
228
- icon: z.ZodOptional<z.ZodString>;
229
- url: z.ZodOptional<z.ZodString>;
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,29 +239,29 @@ 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.ZodString>;
243
- icon: z.ZodOptional<z.ZodString>;
244
- url: z.ZodOptional<z.ZodString>;
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.ZodString>;
249
- docs: z.ZodOptional<z.ZodString>;
250
- portal: z.ZodOptional<z.ZodString>;
251
- licensing: z.ZodOptional<z.ZodString>;
252
- contact: z.ZodOptional<z.ZodString>;
253
- support: z.ZodOptional<z.ZodString>;
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.ZodString>;
259
+ email: z.ZodDefault<z.ZodEmail>;
260
260
  }, z.core.$strip>;
261
261
  release: z.ZodObject<{
262
- banner: z.ZodDefault<z.ZodString>;
262
+ banner: z.ZodOptional<z.ZodString>;
263
263
  header: z.ZodOptional<z.ZodString>;
264
- footer: z.ZodDefault<z.ZodString>;
264
+ footer: z.ZodOptional<z.ZodString>;
265
265
  }, z.core.$strip>;
266
266
  socials: z.ZodObject<{
267
267
  twitter: z.ZodDefault<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.ZodString>;
276
+ url: z.ZodOptional<z.ZodURL>;
277
277
  }, z.core.$strip>;
278
- mode: z.ZodDefault<z.ZodEnum<{
278
+ mode: z.ZodPrefault<z.ZodEnum<{
279
279
  development: "development";
280
280
  staging: "staging";
281
281
  production: "production";
@@ -299,10 +299,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
299
299
  timezone: z.ZodDefault<z.ZodString>;
300
300
  locale: z.ZodDefault<z.ZodString>;
301
301
  logLevel: z.ZodDefault<z.ZodEnum<{
302
- error: "error";
303
302
  success: "success";
304
303
  info: "info";
305
304
  fatal: "fatal";
305
+ error: "error";
306
306
  silent: "silent";
307
307
  warn: "warn";
308
308
  debug: "debug";
@@ -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.ZodString>;
315
- npm: z.ZodOptional<z.ZodString>;
316
- cargo: z.ZodOptional<z.ZodString>;
317
- cyclone: z.ZodOptional<z.ZodString>;
318
- container: z.ZodOptional<z.ZodString>;
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
@@ -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.ZodString>;
85
+ declare const RegistryUrlConfigSchema: z.ZodOptional<z.ZodURL>;
86
86
  declare const RegistryConfigSchema: z.ZodDefault<z.ZodObject<{
87
- github: z.ZodOptional<z.ZodString>;
88
- npm: z.ZodOptional<z.ZodString>;
89
- cargo: z.ZodOptional<z.ZodString>;
90
- cyclone: z.ZodOptional<z.ZodString>;
91
- container: z.ZodOptional<z.ZodString>;
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,12 +194,12 @@ 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.ZodString>;
197
+ email: z.ZodDefault<z.ZodEmail>;
198
198
  }, z.core.$strip>;
199
199
  declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
200
- banner: z.ZodDefault<z.ZodString>;
200
+ banner: z.ZodOptional<z.ZodString>;
201
201
  header: z.ZodOptional<z.ZodString>;
202
- footer: z.ZodDefault<z.ZodString>;
202
+ footer: z.ZodOptional<z.ZodString>;
203
203
  }, z.core.$strip>;
204
204
  declare const WorkspaceSocialsConfigSchema: z.ZodObject<{
205
205
  twitter: z.ZodDefault<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.ZodString>;
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.ZodString>;
228
- icon: z.ZodOptional<z.ZodString>;
229
- url: z.ZodOptional<z.ZodString>;
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,29 +239,29 @@ 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.ZodString>;
243
- icon: z.ZodOptional<z.ZodString>;
244
- url: z.ZodOptional<z.ZodString>;
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.ZodString>;
249
- docs: z.ZodOptional<z.ZodString>;
250
- portal: z.ZodOptional<z.ZodString>;
251
- licensing: z.ZodOptional<z.ZodString>;
252
- contact: z.ZodOptional<z.ZodString>;
253
- support: z.ZodOptional<z.ZodString>;
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.ZodString>;
259
+ email: z.ZodDefault<z.ZodEmail>;
260
260
  }, z.core.$strip>;
261
261
  release: z.ZodObject<{
262
- banner: z.ZodDefault<z.ZodString>;
262
+ banner: z.ZodOptional<z.ZodString>;
263
263
  header: z.ZodOptional<z.ZodString>;
264
- footer: z.ZodDefault<z.ZodString>;
264
+ footer: z.ZodOptional<z.ZodString>;
265
265
  }, z.core.$strip>;
266
266
  socials: z.ZodObject<{
267
267
  twitter: z.ZodDefault<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.ZodString>;
276
+ url: z.ZodOptional<z.ZodURL>;
277
277
  }, z.core.$strip>;
278
- mode: z.ZodDefault<z.ZodEnum<{
278
+ mode: z.ZodPrefault<z.ZodEnum<{
279
279
  development: "development";
280
280
  staging: "staging";
281
281
  production: "production";
@@ -299,10 +299,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
299
299
  timezone: z.ZodDefault<z.ZodString>;
300
300
  locale: z.ZodDefault<z.ZodString>;
301
301
  logLevel: z.ZodDefault<z.ZodEnum<{
302
- error: "error";
303
302
  success: "success";
304
303
  info: "info";
305
304
  fatal: "fatal";
305
+ error: "error";
306
306
  silent: "silent";
307
307
  warn: "warn";
308
308
  debug: "debug";
@@ -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.ZodString>;
315
- npm: z.ZodOptional<z.ZodString>;
316
- cargo: z.ZodOptional<z.ZodString>;
317
- cyclone: z.ZodOptional<z.ZodString>;
318
- container: z.ZodOptional<z.ZodString>;
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
@@ -15,7 +15,7 @@ import {
15
15
  errorConfigSchema,
16
16
  organizationConfigSchema,
17
17
  stormWorkspaceConfigSchema
18
- } from "./chunk-ABGOB6LC.js";
18
+ } from "./chunk-7F4IBPQM.js";
19
19
  import "./chunk-KSQRDQGT.js";
20
20
  export {
21
21
  ColorConfigMapSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.125.7",
3
+ "version": "1.125.9",
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": "b0d8f489b75626777c4ba65ba127298f9cafa3f0"
90
+ "gitHead": "ceaae9b6ba69f4bca0927a4d2e3084ee5fc4e71a"
91
91
  }
@@ -43,6 +43,10 @@
43
43
  "cyclone": "https://registry.cyclone-ui.com/components",
44
44
  "container": "https://hub.docker.com"
45
45
  },
46
+ "release": {
47
+ "banner": "https://public.storm-cdn.com/brand-banner.png",
48
+ "footer": "Storm 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!"
49
+ },
46
50
  "colors": {
47
51
  "light": {
48
52
  "background": "#fafafa",
@@ -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
@@ -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.ZodString>;
84
+ export declare const RegistryUrlConfigSchema: z.ZodOptional<z.ZodURL>;
85
85
  export declare const RegistryConfigSchema: z.ZodDefault<z.ZodObject<{
86
- github: z.ZodOptional<z.ZodString>;
87
- npm: z.ZodOptional<z.ZodString>;
88
- cargo: z.ZodOptional<z.ZodString>;
89
- cyclone: z.ZodOptional<z.ZodString>;
90
- container: z.ZodOptional<z.ZodString>;
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,12 +193,12 @@ 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.ZodString>;
196
+ email: z.ZodDefault<z.ZodEmail>;
197
197
  }, z.core.$strip>;
198
198
  export declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
199
- banner: z.ZodDefault<z.ZodString>;
199
+ banner: z.ZodOptional<z.ZodString>;
200
200
  header: z.ZodOptional<z.ZodString>;
201
- footer: z.ZodDefault<z.ZodString>;
201
+ footer: z.ZodOptional<z.ZodString>;
202
202
  }, z.core.$strip>;
203
203
  export declare const WorkspaceSocialsConfigSchema: z.ZodObject<{
204
204
  twitter: z.ZodDefault<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.ZodString>;
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.ZodString>;
227
- icon: z.ZodOptional<z.ZodString>;
228
- url: z.ZodOptional<z.ZodString>;
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,29 +238,29 @@ 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.ZodString>;
242
- icon: z.ZodOptional<z.ZodString>;
243
- url: z.ZodOptional<z.ZodString>;
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.ZodString>;
248
- docs: z.ZodOptional<z.ZodString>;
249
- portal: z.ZodOptional<z.ZodString>;
250
- licensing: z.ZodOptional<z.ZodString>;
251
- contact: z.ZodOptional<z.ZodString>;
252
- support: z.ZodOptional<z.ZodString>;
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.ZodString>;
258
+ email: z.ZodDefault<z.ZodEmail>;
259
259
  }, z.core.$strip>;
260
260
  release: z.ZodObject<{
261
- banner: z.ZodDefault<z.ZodString>;
261
+ banner: z.ZodOptional<z.ZodString>;
262
262
  header: z.ZodOptional<z.ZodString>;
263
- footer: z.ZodDefault<z.ZodString>;
263
+ footer: z.ZodOptional<z.ZodString>;
264
264
  }, z.core.$strip>;
265
265
  socials: z.ZodObject<{
266
266
  twitter: z.ZodDefault<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.ZodString>;
275
+ url: z.ZodOptional<z.ZodURL>;
276
276
  }, z.core.$strip>;
277
- mode: z.ZodDefault<z.ZodEnum<{
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.ZodString>;
314
- npm: z.ZodOptional<z.ZodString>;
315
- cargo: z.ZodOptional<z.ZodString>;
316
- cyclone: z.ZodOptional<z.ZodString>;
317
- container: z.ZodOptional<z.ZodString>;
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<{