@storm-software/config 1.125.7 → 1.125.8

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,13 @@
2
2
 
3
3
  # Changelog for Storm Ops - Config
4
4
 
5
+ ## [1.125.7](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.7) (2025-07-10)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate README markdown files
10
+ ([113ca7595](https://github.com/storm-software/storm-ops/commit/113ca7595))
11
+
5
12
  ## [1.125.6](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.6) (2025-07-10)
6
13
 
7
14
  ### 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.6-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 -->
@@ -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
@@ -110,13 +108,13 @@ var WorkspaceBotConfigSchema = z.object({
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");
@@ -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,
@@ -110,13 +108,13 @@ var WorkspaceBotConfigSchema = z.object({
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");
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 _chunkAT6TQLTDcjs = require('./chunk-AT6TQLTD.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 = _chunkAT6TQLTDcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkAT6TQLTDcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkAT6TQLTDcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkAT6TQLTDcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkAT6TQLTDcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkAT6TQLTDcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkAT6TQLTDcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkAT6TQLTDcjs.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 = _chunkAT6TQLTDcjs.SingleThemeColorConfigSchema; exports.WorkspaceBotConfigSchema = _chunkAT6TQLTDcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkAT6TQLTDcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkAT6TQLTDcjs.WorkspaceReleaseConfigSchema; exports.WorkspaceSocialsConfigSchema = _chunkAT6TQLTDcjs.WorkspaceSocialsConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkAT6TQLTDcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkAT6TQLTDcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkAT6TQLTDcjs.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-HIMNLC45.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 _chunkAT6TQLTDcjs = require('./chunk-AT6TQLTD.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 = _chunkAT6TQLTDcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkAT6TQLTDcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkAT6TQLTDcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkAT6TQLTDcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkAT6TQLTDcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkAT6TQLTDcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkAT6TQLTDcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkAT6TQLTDcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkAT6TQLTDcjs.SingleThemeColorConfigSchema; exports.WorkspaceBotConfigSchema = _chunkAT6TQLTDcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkAT6TQLTDcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkAT6TQLTDcjs.WorkspaceReleaseConfigSchema; exports.WorkspaceSocialsConfigSchema = _chunkAT6TQLTDcjs.WorkspaceSocialsConfigSchema; exports.errorConfigSchema = _chunkAT6TQLTDcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkAT6TQLTDcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkAT6TQLTDcjs.stormWorkspaceConfigSchema;
package/dist/schema.d.cts CHANGED
@@ -197,9 +197,9 @@ declare const WorkspaceBotConfigSchema: z.ZodObject<{
197
197
  email: z.ZodDefault<z.ZodString>;
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>;
@@ -259,9 +259,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
259
259
  email: z.ZodDefault<z.ZodString>;
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>;
package/dist/schema.d.ts CHANGED
@@ -197,9 +197,9 @@ declare const WorkspaceBotConfigSchema: z.ZodObject<{
197
197
  email: z.ZodDefault<z.ZodString>;
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>;
@@ -259,9 +259,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
259
259
  email: z.ZodDefault<z.ZodString>;
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>;
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-HIMNLC45.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.8",
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": "a8ed9927e278fdcef751286a496cea6a4727208a"
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",
package/src/schema.d.ts CHANGED
@@ -196,9 +196,9 @@ export declare const WorkspaceBotConfigSchema: z.ZodObject<{
196
196
  email: z.ZodDefault<z.ZodString>;
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>;
@@ -258,9 +258,9 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
258
258
  email: z.ZodDefault<z.ZodString>;
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>;