@storm-software/config 1.106.12 → 1.107.0

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
@@ -1,3 +1,11 @@
1
+
2
+
3
+ ## 1.106.13 (2025-03-16)
4
+
5
+ ### Miscellaneous
6
+
7
+ - **monorepo:** Regenerate README markdown files ([bc0c826a6](https://github.com/storm-software/storm-ops/commit/bc0c826a6))
8
+
1
9
  ## 1.106.12 (2025-03-12)
2
10
 
3
11
  ### 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.106.11-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.106.13-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 -->
@@ -2,7 +2,9 @@
2
2
 
3
3
 
4
4
 
5
- var _chunkAVMOBJJQcjs = require('./chunk-AVMOBJJQ.cjs');
5
+
6
+
7
+ var _chunkCPQUL4OScjs = require('./chunk-CPQUL4OS.cjs');
6
8
 
7
9
  // src/schema.ts
8
10
  var _zod = require('zod'); var _zod2 = _interopRequireDefault(_zod);
@@ -93,6 +95,11 @@ var WorkspaceBotConfigSchema = _zod2.default.object({
93
95
  name: _zod2.default.string().trim().default("stormie-bot").describe("The workspace bot user's name (this is the bot that will be used to perform various tasks)"),
94
96
  email: _zod2.default.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
95
97
  }).describe("The workspace's bot user's config used to automated various operations tasks");
98
+ var WorkspaceReleaseConfigSchema = _zod2.default.object({
99
+ banner: _zod2.default.string().trim().default(_chunkCPQUL4OScjs.STORM_DEFAULT_RELEASE_BANNER).describe("A URL to a banner image used to display the workspace's release"),
100
+ header: _zod2.default.string().trim().optional().describe("A header message appended to the start of the workspace's release notes"),
101
+ footer: _zod2.default.string().trim().default(_chunkCPQUL4OScjs.STORM_DEFAULT_RELEASE_FOOTER).describe("A footer message appended to the end of the workspace's release notes")
102
+ }).describe("The workspace's release config used during the release process");
96
103
  var WorkspaceDirectoryConfigSchema = _zod2.default.object({
97
104
  cache: _zod2.default.string().trim().optional().describe("The directory used to store the environment's cached file data"),
98
105
  data: _zod2.default.string().trim().optional().describe("The directory used to store the environment's data files"),
@@ -109,13 +116,14 @@ var StormConfigSchema = _zod2.default.object({
109
116
  organization: _zod2.default.string().trim().default("storm-software").describe("The organization of the workspace"),
110
117
  repository: _zod2.default.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
111
118
  license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
112
- homepage: _zod2.default.string().trim().url().default(_chunkAVMOBJJQcjs.STORM_DEFAULT_HOMEPAGE).describe("The homepage of the workspace"),
113
- docs: _zod2.default.string().trim().url().default(_chunkAVMOBJJQcjs.STORM_DEFAULT_DOCS).describe("The base documentation site for the workspace"),
114
- licensing: _zod2.default.string().trim().url().default(_chunkAVMOBJJQcjs.STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
119
+ homepage: _zod2.default.string().trim().url().default(_chunkCPQUL4OScjs.STORM_DEFAULT_HOMEPAGE).describe("The homepage of the workspace"),
120
+ docs: _zod2.default.string().trim().url().default(_chunkCPQUL4OScjs.STORM_DEFAULT_DOCS).describe("The base documentation site for the workspace"),
121
+ licensing: _zod2.default.string().trim().url().default(_chunkCPQUL4OScjs.STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
115
122
  branch: _zod2.default.string().trim().default("main").describe("The branch of the workspace"),
116
123
  preid: _zod2.default.string().optional().describe("A tag specifying the version pre-release identifier"),
117
124
  owner: _zod2.default.string().trim().default("@storm-software/admin").describe("The owner of the package"),
118
125
  bot: WorkspaceBotConfigSchema,
126
+ release: WorkspaceReleaseConfigSchema,
119
127
  mode: _zod2.default.enum([
120
128
  "development",
121
129
  "staging",
@@ -164,4 +172,5 @@ var StormConfigSchema = _zod2.default.object({
164
172
 
165
173
 
166
174
 
167
- exports.DarkThemeColorConfigSchema = DarkThemeColorConfigSchema; exports.LightThemeColorConfigSchema = LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = MultiThemeColorConfigSchema; exports.SingleThemeColorConfigSchema = SingleThemeColorConfigSchema; exports.RegistryUrlConfigSchema = RegistryUrlConfigSchema; exports.RegistryConfigSchema = RegistryConfigSchema; exports.ColorConfigSchema = ColorConfigSchema; exports.ColorConfigMapSchema = ColorConfigMapSchema; exports.ExtendsSchema = ExtendsSchema; exports.WorkspaceBotConfigSchema = WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = WorkspaceDirectoryConfigSchema; exports.StormConfigSchema = StormConfigSchema;
175
+
176
+ exports.DarkThemeColorConfigSchema = DarkThemeColorConfigSchema; exports.LightThemeColorConfigSchema = LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = MultiThemeColorConfigSchema; exports.SingleThemeColorConfigSchema = SingleThemeColorConfigSchema; exports.RegistryUrlConfigSchema = RegistryUrlConfigSchema; exports.RegistryConfigSchema = RegistryConfigSchema; exports.ColorConfigSchema = ColorConfigSchema; exports.ColorConfigMapSchema = ColorConfigMapSchema; exports.ExtendsSchema = ExtendsSchema; exports.WorkspaceBotConfigSchema = WorkspaceBotConfigSchema; exports.WorkspaceReleaseConfigSchema = WorkspaceReleaseConfigSchema; exports.WorkspaceDirectoryConfigSchema = WorkspaceDirectoryConfigSchema; exports.StormConfigSchema = StormConfigSchema;
@@ -0,0 +1,22 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/constants.ts
2
+ var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
3
+ var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
4
+ var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
5
+ var STORM_DEFAULT_LICENSE = "Apache-2.0";
6
+ var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
7
+ var STORM_DEFAULT_RELEASE_FOOTER = `
8
+ [Storm Software](https://stormsoftware.com) 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.
9
+
10
+ Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.
11
+
12
+ If 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!
13
+ `;
14
+
15
+
16
+
17
+
18
+
19
+
20
+
21
+
22
+ exports.STORM_DEFAULT_DOCS = STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSING = STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_LICENSE = STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_RELEASE_BANNER = STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = STORM_DEFAULT_RELEASE_FOOTER;
@@ -0,0 +1,22 @@
1
+ // src/constants.ts
2
+ var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
3
+ var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
4
+ var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
5
+ var STORM_DEFAULT_LICENSE = "Apache-2.0";
6
+ var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
7
+ var STORM_DEFAULT_RELEASE_FOOTER = `
8
+ [Storm Software](https://stormsoftware.com) 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.
9
+
10
+ Join us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.
11
+
12
+ If 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!
13
+ `;
14
+
15
+ export {
16
+ STORM_DEFAULT_DOCS,
17
+ STORM_DEFAULT_HOMEPAGE,
18
+ STORM_DEFAULT_LICENSING,
19
+ STORM_DEFAULT_LICENSE,
20
+ STORM_DEFAULT_RELEASE_BANNER,
21
+ STORM_DEFAULT_RELEASE_FOOTER
22
+ };
@@ -1,8 +1,10 @@
1
1
  import {
2
2
  STORM_DEFAULT_DOCS,
3
3
  STORM_DEFAULT_HOMEPAGE,
4
- STORM_DEFAULT_LICENSING
5
- } from "./chunk-PQYQEEST.js";
4
+ STORM_DEFAULT_LICENSING,
5
+ STORM_DEFAULT_RELEASE_BANNER,
6
+ STORM_DEFAULT_RELEASE_FOOTER
7
+ } from "./chunk-KO5ZCYSI.js";
6
8
 
7
9
  // src/schema.ts
8
10
  import z from "zod";
@@ -93,6 +95,11 @@ var WorkspaceBotConfigSchema = z.object({
93
95
  name: z.string().trim().default("stormie-bot").describe("The workspace bot user's name (this is the bot that will be used to perform various tasks)"),
94
96
  email: z.string().trim().email().default("bot@stormsoftware.com").describe("The email of the workspace bot")
95
97
  }).describe("The workspace's bot user's config used to automated various operations tasks");
98
+ var WorkspaceReleaseConfigSchema = z.object({
99
+ banner: z.string().trim().default(STORM_DEFAULT_RELEASE_BANNER).describe("A URL to a banner image used to display the workspace's release"),
100
+ header: z.string().trim().optional().describe("A header message appended to the start of the workspace's release notes"),
101
+ footer: z.string().trim().default(STORM_DEFAULT_RELEASE_FOOTER).describe("A footer message appended to the end of the workspace's release notes")
102
+ }).describe("The workspace's release config used during the release process");
96
103
  var WorkspaceDirectoryConfigSchema = z.object({
97
104
  cache: z.string().trim().optional().describe("The directory used to store the environment's cached file data"),
98
105
  data: z.string().trim().optional().describe("The directory used to store the environment's data files"),
@@ -116,6 +123,7 @@ var StormConfigSchema = z.object({
116
123
  preid: z.string().optional().describe("A tag specifying the version pre-release identifier"),
117
124
  owner: z.string().trim().default("@storm-software/admin").describe("The owner of the package"),
118
125
  bot: WorkspaceBotConfigSchema,
126
+ release: WorkspaceReleaseConfigSchema,
119
127
  mode: z.enum([
120
128
  "development",
121
129
  "staging",
@@ -162,6 +170,7 @@ export {
162
170
  ColorConfigMapSchema,
163
171
  ExtendsSchema,
164
172
  WorkspaceBotConfigSchema,
173
+ WorkspaceReleaseConfigSchema,
165
174
  WorkspaceDirectoryConfigSchema,
166
175
  StormConfigSchema
167
176
  };
@@ -3,11 +3,15 @@
3
3
 
4
4
 
5
5
 
6
- var _chunkAVMOBJJQcjs = require('./chunk-AVMOBJJQ.cjs');
6
+
7
+
8
+ var _chunkCPQUL4OScjs = require('./chunk-CPQUL4OS.cjs');
7
9
  require('./chunk-USNT2KNT.cjs');
8
10
 
9
11
 
10
12
 
11
13
 
12
14
 
13
- exports.STORM_DEFAULT_DOCS = _chunkAVMOBJJQcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = _chunkAVMOBJJQcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkAVMOBJJQcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkAVMOBJJQcjs.STORM_DEFAULT_LICENSING;
15
+
16
+
17
+ exports.STORM_DEFAULT_DOCS = _chunkCPQUL4OScjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = _chunkCPQUL4OScjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkCPQUL4OScjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkCPQUL4OScjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkCPQUL4OScjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkCPQUL4OScjs.STORM_DEFAULT_RELEASE_FOOTER;
@@ -2,5 +2,7 @@ declare const STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
2
2
  declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
3
3
  declare const STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
4
4
  declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
5
+ declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
6
+ declare const STORM_DEFAULT_RELEASE_FOOTER = "\n[Storm Software](https://stormsoftware.com) 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";
5
7
 
6
- export { STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING };
8
+ export { STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER };
@@ -2,5 +2,7 @@ declare const STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
2
2
  declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
3
3
  declare const STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
4
4
  declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
5
+ declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/logo-banner.png";
6
+ declare const STORM_DEFAULT_RELEASE_FOOTER = "\n[Storm Software](https://stormsoftware.com) 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";
5
7
 
6
- export { STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING };
8
+ export { STORM_DEFAULT_DOCS, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER };
package/dist/constants.js CHANGED
@@ -2,12 +2,16 @@ import {
2
2
  STORM_DEFAULT_DOCS,
3
3
  STORM_DEFAULT_HOMEPAGE,
4
4
  STORM_DEFAULT_LICENSE,
5
- STORM_DEFAULT_LICENSING
6
- } from "./chunk-PQYQEEST.js";
5
+ STORM_DEFAULT_LICENSING,
6
+ STORM_DEFAULT_RELEASE_BANNER,
7
+ STORM_DEFAULT_RELEASE_FOOTER
8
+ } from "./chunk-KO5ZCYSI.js";
7
9
  import "./chunk-SHUYVCID.js";
8
10
  export {
9
11
  STORM_DEFAULT_DOCS,
10
12
  STORM_DEFAULT_HOMEPAGE,
11
13
  STORM_DEFAULT_LICENSE,
12
- STORM_DEFAULT_LICENSING
14
+ STORM_DEFAULT_LICENSING,
15
+ STORM_DEFAULT_RELEASE_BANNER,
16
+ STORM_DEFAULT_RELEASE_FOOTER
13
17
  };
@@ -13,6 +13,11 @@ declare const defineConfig: (input: StormConfigInput) => {
13
13
  name?: string | undefined;
14
14
  email?: string | undefined;
15
15
  };
16
+ release: {
17
+ banner?: string | undefined;
18
+ header?: string | undefined;
19
+ footer?: string | undefined;
20
+ };
16
21
  directories: {
17
22
  cache?: string | undefined;
18
23
  data?: string | undefined;
@@ -22,155 +27,155 @@ declare const defineConfig: (input: StormConfigInput) => {
22
27
  build?: string | undefined;
23
28
  };
24
29
  colors: {
25
- fatal?: string | undefined;
26
- success?: string | undefined;
27
- info?: string | undefined;
28
- dark?: string | undefined;
29
- light?: string | undefined;
30
- brand?: string | undefined;
31
- alternate?: string | undefined;
32
- accent?: string | undefined;
33
- link?: string | undefined;
34
- help?: string | undefined;
35
- warning?: string | undefined;
36
- danger?: string | undefined;
37
- positive?: string | undefined;
38
- negative?: string | undefined;
39
- } | {
40
30
  dark: {
41
- fatal?: string | undefined;
42
- success?: string | undefined;
43
- info?: string | undefined;
31
+ foreground?: string | undefined;
32
+ background?: string | undefined;
44
33
  brand?: string | undefined;
45
34
  alternate?: string | undefined;
46
35
  accent?: string | undefined;
47
36
  link?: string | undefined;
48
37
  help?: string | undefined;
38
+ success?: string | undefined;
39
+ info?: string | undefined;
49
40
  warning?: string | undefined;
50
41
  danger?: string | undefined;
42
+ fatal?: string | undefined;
51
43
  positive?: string | undefined;
52
44
  negative?: string | undefined;
53
- foreground?: string | undefined;
54
- background?: string | undefined;
55
45
  };
56
46
  light: {
57
- fatal?: string | undefined;
58
- success?: string | undefined;
59
- info?: string | undefined;
47
+ foreground?: string | undefined;
48
+ background?: string | undefined;
60
49
  brand?: string | undefined;
61
50
  alternate?: string | undefined;
62
51
  accent?: string | undefined;
63
52
  link?: string | undefined;
64
53
  help?: string | undefined;
54
+ success?: string | undefined;
55
+ info?: string | undefined;
65
56
  warning?: string | undefined;
66
57
  danger?: string | undefined;
58
+ fatal?: string | undefined;
67
59
  positive?: string | undefined;
68
60
  negative?: string | undefined;
69
- foreground?: string | undefined;
70
- background?: string | undefined;
71
61
  };
62
+ } | {
63
+ brand?: string | undefined;
64
+ alternate?: string | undefined;
65
+ accent?: string | undefined;
66
+ link?: string | undefined;
67
+ help?: string | undefined;
68
+ success?: string | undefined;
69
+ info?: string | undefined;
70
+ warning?: string | undefined;
71
+ danger?: string | undefined;
72
+ fatal?: string | undefined;
73
+ positive?: string | undefined;
74
+ negative?: string | undefined;
75
+ dark?: string | undefined;
76
+ light?: string | undefined;
72
77
  } | {
73
78
  base: {
74
- fatal?: string | undefined;
75
- success?: string | undefined;
76
- info?: string | undefined;
77
- dark?: string | undefined;
78
- light?: string | undefined;
79
- brand?: string | undefined;
80
- alternate?: string | undefined;
81
- accent?: string | undefined;
82
- link?: string | undefined;
83
- help?: string | undefined;
84
- warning?: string | undefined;
85
- danger?: string | undefined;
86
- positive?: string | undefined;
87
- negative?: string | undefined;
88
- } | {
89
79
  dark: {
90
- fatal?: string | undefined;
91
- success?: string | undefined;
92
- info?: string | undefined;
80
+ foreground?: string | undefined;
81
+ background?: string | undefined;
93
82
  brand?: string | undefined;
94
83
  alternate?: string | undefined;
95
84
  accent?: string | undefined;
96
85
  link?: string | undefined;
97
86
  help?: string | undefined;
87
+ success?: string | undefined;
88
+ info?: string | undefined;
98
89
  warning?: string | undefined;
99
90
  danger?: string | undefined;
91
+ fatal?: string | undefined;
100
92
  positive?: string | undefined;
101
93
  negative?: string | undefined;
102
- foreground?: string | undefined;
103
- background?: string | undefined;
104
94
  };
105
95
  light: {
106
- fatal?: string | undefined;
107
- success?: string | undefined;
108
- info?: string | undefined;
96
+ foreground?: string | undefined;
97
+ background?: string | undefined;
109
98
  brand?: string | undefined;
110
99
  alternate?: string | undefined;
111
100
  accent?: string | undefined;
112
101
  link?: string | undefined;
113
102
  help?: string | undefined;
103
+ success?: string | undefined;
104
+ info?: string | undefined;
114
105
  warning?: string | undefined;
115
106
  danger?: string | undefined;
107
+ fatal?: string | undefined;
116
108
  positive?: string | undefined;
117
109
  negative?: string | undefined;
118
- foreground?: string | undefined;
119
- background?: string | undefined;
120
110
  };
111
+ } | {
112
+ brand?: string | undefined;
113
+ alternate?: string | undefined;
114
+ accent?: string | undefined;
115
+ link?: string | undefined;
116
+ help?: string | undefined;
117
+ success?: string | undefined;
118
+ info?: string | undefined;
119
+ warning?: string | undefined;
120
+ danger?: string | undefined;
121
+ fatal?: string | undefined;
122
+ positive?: string | undefined;
123
+ negative?: string | undefined;
124
+ dark?: string | undefined;
125
+ light?: string | undefined;
121
126
  };
122
127
  } | Record<string, {
123
- fatal?: string | undefined;
124
- success?: string | undefined;
125
- info?: string | undefined;
126
- dark?: string | undefined;
127
- light?: string | undefined;
128
- brand?: string | undefined;
129
- alternate?: string | undefined;
130
- accent?: string | undefined;
131
- link?: string | undefined;
132
- help?: string | undefined;
133
- warning?: string | undefined;
134
- danger?: string | undefined;
135
- positive?: string | undefined;
136
- negative?: string | undefined;
137
- } | {
138
128
  dark: {
139
- fatal?: string | undefined;
140
- success?: string | undefined;
141
- info?: string | undefined;
129
+ foreground?: string | undefined;
130
+ background?: string | undefined;
142
131
  brand?: string | undefined;
143
132
  alternate?: string | undefined;
144
133
  accent?: string | undefined;
145
134
  link?: string | undefined;
146
135
  help?: string | undefined;
136
+ success?: string | undefined;
137
+ info?: string | undefined;
147
138
  warning?: string | undefined;
148
139
  danger?: string | undefined;
140
+ fatal?: string | undefined;
149
141
  positive?: string | undefined;
150
142
  negative?: string | undefined;
151
- foreground?: string | undefined;
152
- background?: string | undefined;
153
143
  };
154
144
  light: {
155
- fatal?: string | undefined;
156
- success?: string | undefined;
157
- info?: string | undefined;
145
+ foreground?: string | undefined;
146
+ background?: string | undefined;
158
147
  brand?: string | undefined;
159
148
  alternate?: string | undefined;
160
149
  accent?: string | undefined;
161
150
  link?: string | undefined;
162
151
  help?: string | undefined;
152
+ success?: string | undefined;
153
+ info?: string | undefined;
163
154
  warning?: string | undefined;
164
155
  danger?: string | undefined;
156
+ fatal?: string | undefined;
165
157
  positive?: string | undefined;
166
158
  negative?: string | undefined;
167
- foreground?: string | undefined;
168
- background?: string | undefined;
169
159
  };
160
+ } | {
161
+ brand?: string | undefined;
162
+ alternate?: string | undefined;
163
+ accent?: string | undefined;
164
+ link?: string | undefined;
165
+ help?: string | undefined;
166
+ success?: string | undefined;
167
+ info?: string | undefined;
168
+ warning?: string | undefined;
169
+ danger?: string | undefined;
170
+ fatal?: string | undefined;
171
+ positive?: string | undefined;
172
+ negative?: string | undefined;
173
+ dark?: string | undefined;
174
+ light?: string | undefined;
170
175
  }>;
176
+ name?: string | undefined;
171
177
  $schema?: string | null | undefined;
172
178
  extends?: string | string[] | undefined;
173
- name?: string | undefined;
174
179
  namespace?: string | undefined;
175
180
  organization?: string | undefined;
176
181
  repository?: string | undefined;
@@ -188,11 +193,11 @@ declare const defineConfig: (input: StormConfigInput) => {
188
193
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
189
194
  timezone?: string | undefined;
190
195
  locale?: string | undefined;
191
- logLevel?: "silent" | "fatal" | "error" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
196
+ logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
192
197
  skipConfigLogging?: boolean | undefined;
193
198
  registry?: {
194
- npm?: string | undefined;
195
199
  github?: string | undefined;
200
+ npm?: string | undefined;
196
201
  cargo?: string | undefined;
197
202
  cyclone?: string | undefined;
198
203
  container?: string | undefined;