@storm-software/config 1.122.8 → 1.123.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
@@ -2,6 +2,13 @@
2
2
 
3
3
  # Changelog for Storm Ops - Config
4
4
 
5
+ ## [1.122.8](https://github.com/storm-software/storm-ops/releases/tag/config%401.122.8) (2025-06-18)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate README markdown files
10
+ ([0975b603d](https://github.com/storm-software/storm-ops/commit/0975b603d))
11
+
5
12
  ## [1.122.7](https://github.com/storm-software/storm-ops/releases/tag/config%401.122.7) (2025-06-18)
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.122.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)
24
+ [![Version](https://img.shields.io/badge/version-1.122.8-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 -->
@@ -152,6 +152,15 @@ var errorConfigSchema = z.object({
152
152
  "A URL to a page that looks up the workspace's error messages given a specific error code"
153
153
  )
154
154
  }).describe("The workspace's error config used during the error process");
155
+ var organizationConfigSchema = z.object({
156
+ name: z.string().trim().describe("The name of the organization"),
157
+ 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(
161
+ "A URL to a page that provides more information about the organization"
162
+ )
163
+ }).describe("The workspace's organization details");
155
164
  var stormWorkspaceConfigSchema = z.object({
156
165
  $schema: z.string().trim().default(
157
166
  "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json"
@@ -163,7 +172,9 @@ var stormWorkspaceConfigSchema = z.object({
163
172
  "The name of the service/package/scope using this configuration"
164
173
  ),
165
174
  namespace: z.string().trim().toLowerCase().optional().describe("The namespace of the package"),
166
- organization: z.string().trim().default("storm-software").describe("The organization of the workspace"),
175
+ organization: organizationConfigSchema.or(z.string().trim().describe("The organization of the workspace")).optional().describe(
176
+ "The organization of the workspace. This can be a string or an object containing the organization's details"
177
+ ),
167
178
  repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
168
179
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
169
180
  homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
@@ -236,5 +247,6 @@ export {
236
247
  WorkspaceAccountConfigSchema,
237
248
  WorkspaceDirectoryConfigSchema,
238
249
  errorConfigSchema,
250
+ organizationConfigSchema,
239
251
  stormWorkspaceConfigSchema
240
252
  };
@@ -152,6 +152,15 @@ var errorConfigSchema = _zod2.default.object({
152
152
  "A URL to a page that looks up the workspace's error messages given a specific error code"
153
153
  )
154
154
  }).describe("The workspace's error config used during the error process");
155
+ var organizationConfigSchema = _zod2.default.object({
156
+ name: _zod2.default.string().trim().describe("The name of the organization"),
157
+ description: _zod2.default.string().trim().optional().describe("A description of the organization"),
158
+ logo: _zod2.default.string().trim().url().optional().describe("A URL to the organization's logo image"),
159
+ icon: _zod2.default.string().trim().url().optional().describe("A URL to the organization's icon image"),
160
+ url: _zod2.default.string().trim().url().optional().describe(
161
+ "A URL to a page that provides more information about the organization"
162
+ )
163
+ }).describe("The workspace's organization details");
155
164
  var stormWorkspaceConfigSchema = _zod2.default.object({
156
165
  $schema: _zod2.default.string().trim().default(
157
166
  "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json"
@@ -163,7 +172,9 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
163
172
  "The name of the service/package/scope using this configuration"
164
173
  ),
165
174
  namespace: _zod2.default.string().trim().toLowerCase().optional().describe("The namespace of the package"),
166
- organization: _zod2.default.string().trim().default("storm-software").describe("The organization of the workspace"),
175
+ organization: organizationConfigSchema.or(_zod2.default.string().trim().describe("The organization of the workspace")).optional().describe(
176
+ "The organization of the workspace. This can be a string or an object containing the organization's details"
177
+ ),
167
178
  repository: _zod2.default.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
168
179
  license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
169
180
  homepage: _zod2.default.string().trim().url().optional().describe("The homepage of the workspace"),
@@ -237,4 +248,5 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
237
248
 
238
249
 
239
250
 
240
- 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.WorkspaceAccountConfigSchema = WorkspaceAccountConfigSchema; exports.WorkspaceDirectoryConfigSchema = WorkspaceDirectoryConfigSchema; exports.errorConfigSchema = errorConfigSchema; exports.stormWorkspaceConfigSchema = stormWorkspaceConfigSchema;
251
+
252
+ 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.WorkspaceAccountConfigSchema = WorkspaceAccountConfigSchema; exports.WorkspaceDirectoryConfigSchema = WorkspaceDirectoryConfigSchema; exports.errorConfigSchema = errorConfigSchema; exports.organizationConfigSchema = organizationConfigSchema; exports.stormWorkspaceConfigSchema = stormWorkspaceConfigSchema;
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
19
19
  footer?: string | undefined;
20
20
  };
21
21
  account: {
22
+ github?: string | undefined;
22
23
  twitter?: string | undefined;
23
24
  discord?: string | undefined;
24
25
  telegram?: string | undefined;
25
26
  slack?: string | undefined;
26
27
  medium?: string | undefined;
27
- github?: string | undefined;
28
28
  };
29
29
  error: {
30
30
  codesFile?: string | undefined;
@@ -40,157 +40,163 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
40
40
  build?: string | undefined;
41
41
  };
42
42
  colors: {
43
- fatal?: string | undefined;
44
- success?: string | undefined;
45
- info?: string | undefined;
46
- dark?: string | undefined;
47
- light?: string | undefined;
48
- brand?: string | undefined;
49
- alternate?: string | undefined;
50
- accent?: string | undefined;
51
- link?: string | undefined;
52
- help?: string | undefined;
53
- warning?: string | undefined;
54
- danger?: string | undefined;
55
- positive?: string | undefined;
56
- negative?: string | undefined;
57
- } | {
58
43
  dark: {
59
- fatal?: string | undefined;
60
- success?: string | undefined;
61
- info?: string | undefined;
44
+ foreground?: string | undefined;
45
+ background?: string | undefined;
62
46
  brand?: string | undefined;
63
47
  alternate?: string | undefined;
64
48
  accent?: string | undefined;
65
49
  link?: string | undefined;
66
50
  help?: string | undefined;
51
+ success?: string | undefined;
52
+ info?: string | undefined;
67
53
  warning?: string | undefined;
68
54
  danger?: string | undefined;
55
+ fatal?: string | undefined;
69
56
  positive?: string | undefined;
70
57
  negative?: string | undefined;
71
- foreground?: string | undefined;
72
- background?: string | undefined;
73
58
  };
74
59
  light: {
75
- fatal?: string | undefined;
76
- success?: string | undefined;
77
- info?: string | undefined;
60
+ foreground?: string | undefined;
61
+ background?: string | undefined;
78
62
  brand?: string | undefined;
79
63
  alternate?: string | undefined;
80
64
  accent?: string | undefined;
81
65
  link?: string | undefined;
82
66
  help?: string | undefined;
67
+ success?: string | undefined;
68
+ info?: string | undefined;
83
69
  warning?: string | undefined;
84
70
  danger?: string | undefined;
71
+ fatal?: string | undefined;
85
72
  positive?: string | undefined;
86
73
  negative?: string | undefined;
87
- foreground?: string | undefined;
88
- background?: string | undefined;
89
74
  };
75
+ } | {
76
+ brand?: string | undefined;
77
+ alternate?: string | undefined;
78
+ accent?: string | undefined;
79
+ link?: string | undefined;
80
+ help?: string | undefined;
81
+ success?: string | undefined;
82
+ info?: string | undefined;
83
+ warning?: string | undefined;
84
+ danger?: string | undefined;
85
+ fatal?: string | undefined;
86
+ positive?: string | undefined;
87
+ negative?: string | undefined;
88
+ dark?: string | undefined;
89
+ light?: string | undefined;
90
90
  } | {
91
91
  base: {
92
- fatal?: string | undefined;
93
- success?: string | undefined;
94
- info?: string | undefined;
95
- dark?: string | undefined;
96
- light?: string | undefined;
97
- brand?: string | undefined;
98
- alternate?: string | undefined;
99
- accent?: string | undefined;
100
- link?: string | undefined;
101
- help?: string | undefined;
102
- warning?: string | undefined;
103
- danger?: string | undefined;
104
- positive?: string | undefined;
105
- negative?: string | undefined;
106
- } | {
107
92
  dark: {
108
- fatal?: string | undefined;
109
- success?: string | undefined;
110
- info?: string | undefined;
93
+ foreground?: string | undefined;
94
+ background?: string | undefined;
111
95
  brand?: string | undefined;
112
96
  alternate?: string | undefined;
113
97
  accent?: string | undefined;
114
98
  link?: string | undefined;
115
99
  help?: string | undefined;
100
+ success?: string | undefined;
101
+ info?: string | undefined;
116
102
  warning?: string | undefined;
117
103
  danger?: string | undefined;
104
+ fatal?: string | undefined;
118
105
  positive?: string | undefined;
119
106
  negative?: string | undefined;
120
- foreground?: string | undefined;
121
- background?: string | undefined;
122
107
  };
123
108
  light: {
124
- fatal?: string | undefined;
125
- success?: string | undefined;
126
- info?: string | undefined;
109
+ foreground?: string | undefined;
110
+ background?: string | undefined;
127
111
  brand?: string | undefined;
128
112
  alternate?: string | undefined;
129
113
  accent?: string | undefined;
130
114
  link?: string | undefined;
131
115
  help?: string | undefined;
116
+ success?: string | undefined;
117
+ info?: string | undefined;
132
118
  warning?: string | undefined;
133
119
  danger?: string | undefined;
120
+ fatal?: string | undefined;
134
121
  positive?: string | undefined;
135
122
  negative?: string | undefined;
136
- foreground?: string | undefined;
137
- background?: string | undefined;
138
123
  };
124
+ } | {
125
+ brand?: string | undefined;
126
+ alternate?: string | undefined;
127
+ accent?: string | undefined;
128
+ link?: string | undefined;
129
+ help?: string | undefined;
130
+ success?: string | undefined;
131
+ info?: string | undefined;
132
+ warning?: string | undefined;
133
+ danger?: string | undefined;
134
+ fatal?: string | undefined;
135
+ positive?: string | undefined;
136
+ negative?: string | undefined;
137
+ dark?: string | undefined;
138
+ light?: string | undefined;
139
139
  };
140
140
  } | Record<string, {
141
- fatal?: string | undefined;
142
- success?: string | undefined;
143
- info?: string | undefined;
144
- dark?: string | undefined;
145
- light?: string | undefined;
146
- brand?: string | undefined;
147
- alternate?: string | undefined;
148
- accent?: string | undefined;
149
- link?: string | undefined;
150
- help?: string | undefined;
151
- warning?: string | undefined;
152
- danger?: string | undefined;
153
- positive?: string | undefined;
154
- negative?: string | undefined;
155
- } | {
156
141
  dark: {
157
- fatal?: string | undefined;
158
- success?: string | undefined;
159
- info?: string | undefined;
142
+ foreground?: string | undefined;
143
+ background?: string | undefined;
160
144
  brand?: string | undefined;
161
145
  alternate?: string | undefined;
162
146
  accent?: string | undefined;
163
147
  link?: string | undefined;
164
148
  help?: string | undefined;
149
+ success?: string | undefined;
150
+ info?: string | undefined;
165
151
  warning?: string | undefined;
166
152
  danger?: string | undefined;
153
+ fatal?: string | undefined;
167
154
  positive?: string | undefined;
168
155
  negative?: string | undefined;
169
- foreground?: string | undefined;
170
- background?: string | undefined;
171
156
  };
172
157
  light: {
173
- fatal?: string | undefined;
174
- success?: string | undefined;
175
- info?: string | undefined;
158
+ foreground?: string | undefined;
159
+ background?: string | undefined;
176
160
  brand?: string | undefined;
177
161
  alternate?: string | undefined;
178
162
  accent?: string | undefined;
179
163
  link?: string | undefined;
180
164
  help?: string | undefined;
165
+ success?: string | undefined;
166
+ info?: string | undefined;
181
167
  warning?: string | undefined;
182
168
  danger?: string | undefined;
169
+ fatal?: string | undefined;
183
170
  positive?: string | undefined;
184
171
  negative?: string | undefined;
185
- foreground?: string | undefined;
186
- background?: string | undefined;
187
172
  };
173
+ } | {
174
+ brand?: string | undefined;
175
+ alternate?: string | undefined;
176
+ accent?: string | undefined;
177
+ link?: string | undefined;
178
+ help?: string | undefined;
179
+ success?: string | undefined;
180
+ info?: string | undefined;
181
+ warning?: string | undefined;
182
+ danger?: string | undefined;
183
+ fatal?: string | undefined;
184
+ positive?: string | undefined;
185
+ negative?: string | undefined;
186
+ dark?: string | undefined;
187
+ light?: string | undefined;
188
188
  }>;
189
+ name?: string | undefined;
189
190
  $schema?: string | null | undefined;
190
191
  extends?: string | string[] | undefined;
191
- name?: string | undefined;
192
192
  namespace?: string | undefined;
193
- organization?: string | undefined;
193
+ organization?: string | {
194
+ name: string;
195
+ url?: string | undefined;
196
+ description?: string | undefined;
197
+ logo?: string | undefined;
198
+ icon?: string | undefined;
199
+ } | undefined;
194
200
  repository?: string | undefined;
195
201
  license?: string | undefined;
196
202
  homepage?: string | undefined;
@@ -208,7 +214,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
208
214
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
209
215
  timezone?: string | undefined;
210
216
  locale?: string | undefined;
211
- logLevel?: "error" | "silent" | "fatal" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
217
+ logLevel?: "success" | "info" | "fatal" | "error" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
212
218
  skipConfigLogging?: boolean | undefined;
213
219
  registry?: {
214
220
  github?: string | undefined;
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
19
19
  footer?: string | undefined;
20
20
  };
21
21
  account: {
22
+ github?: string | undefined;
22
23
  twitter?: string | undefined;
23
24
  discord?: string | undefined;
24
25
  telegram?: string | undefined;
25
26
  slack?: string | undefined;
26
27
  medium?: string | undefined;
27
- github?: string | undefined;
28
28
  };
29
29
  error: {
30
30
  codesFile?: string | undefined;
@@ -40,157 +40,163 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
40
40
  build?: string | undefined;
41
41
  };
42
42
  colors: {
43
- fatal?: string | undefined;
44
- success?: string | undefined;
45
- info?: string | undefined;
46
- dark?: string | undefined;
47
- light?: string | undefined;
48
- brand?: string | undefined;
49
- alternate?: string | undefined;
50
- accent?: string | undefined;
51
- link?: string | undefined;
52
- help?: string | undefined;
53
- warning?: string | undefined;
54
- danger?: string | undefined;
55
- positive?: string | undefined;
56
- negative?: string | undefined;
57
- } | {
58
43
  dark: {
59
- fatal?: string | undefined;
60
- success?: string | undefined;
61
- info?: string | undefined;
44
+ foreground?: string | undefined;
45
+ background?: string | undefined;
62
46
  brand?: string | undefined;
63
47
  alternate?: string | undefined;
64
48
  accent?: string | undefined;
65
49
  link?: string | undefined;
66
50
  help?: string | undefined;
51
+ success?: string | undefined;
52
+ info?: string | undefined;
67
53
  warning?: string | undefined;
68
54
  danger?: string | undefined;
55
+ fatal?: string | undefined;
69
56
  positive?: string | undefined;
70
57
  negative?: string | undefined;
71
- foreground?: string | undefined;
72
- background?: string | undefined;
73
58
  };
74
59
  light: {
75
- fatal?: string | undefined;
76
- success?: string | undefined;
77
- info?: string | undefined;
60
+ foreground?: string | undefined;
61
+ background?: string | undefined;
78
62
  brand?: string | undefined;
79
63
  alternate?: string | undefined;
80
64
  accent?: string | undefined;
81
65
  link?: string | undefined;
82
66
  help?: string | undefined;
67
+ success?: string | undefined;
68
+ info?: string | undefined;
83
69
  warning?: string | undefined;
84
70
  danger?: string | undefined;
71
+ fatal?: string | undefined;
85
72
  positive?: string | undefined;
86
73
  negative?: string | undefined;
87
- foreground?: string | undefined;
88
- background?: string | undefined;
89
74
  };
75
+ } | {
76
+ brand?: string | undefined;
77
+ alternate?: string | undefined;
78
+ accent?: string | undefined;
79
+ link?: string | undefined;
80
+ help?: string | undefined;
81
+ success?: string | undefined;
82
+ info?: string | undefined;
83
+ warning?: string | undefined;
84
+ danger?: string | undefined;
85
+ fatal?: string | undefined;
86
+ positive?: string | undefined;
87
+ negative?: string | undefined;
88
+ dark?: string | undefined;
89
+ light?: string | undefined;
90
90
  } | {
91
91
  base: {
92
- fatal?: string | undefined;
93
- success?: string | undefined;
94
- info?: string | undefined;
95
- dark?: string | undefined;
96
- light?: string | undefined;
97
- brand?: string | undefined;
98
- alternate?: string | undefined;
99
- accent?: string | undefined;
100
- link?: string | undefined;
101
- help?: string | undefined;
102
- warning?: string | undefined;
103
- danger?: string | undefined;
104
- positive?: string | undefined;
105
- negative?: string | undefined;
106
- } | {
107
92
  dark: {
108
- fatal?: string | undefined;
109
- success?: string | undefined;
110
- info?: string | undefined;
93
+ foreground?: string | undefined;
94
+ background?: string | undefined;
111
95
  brand?: string | undefined;
112
96
  alternate?: string | undefined;
113
97
  accent?: string | undefined;
114
98
  link?: string | undefined;
115
99
  help?: string | undefined;
100
+ success?: string | undefined;
101
+ info?: string | undefined;
116
102
  warning?: string | undefined;
117
103
  danger?: string | undefined;
104
+ fatal?: string | undefined;
118
105
  positive?: string | undefined;
119
106
  negative?: string | undefined;
120
- foreground?: string | undefined;
121
- background?: string | undefined;
122
107
  };
123
108
  light: {
124
- fatal?: string | undefined;
125
- success?: string | undefined;
126
- info?: string | undefined;
109
+ foreground?: string | undefined;
110
+ background?: string | undefined;
127
111
  brand?: string | undefined;
128
112
  alternate?: string | undefined;
129
113
  accent?: string | undefined;
130
114
  link?: string | undefined;
131
115
  help?: string | undefined;
116
+ success?: string | undefined;
117
+ info?: string | undefined;
132
118
  warning?: string | undefined;
133
119
  danger?: string | undefined;
120
+ fatal?: string | undefined;
134
121
  positive?: string | undefined;
135
122
  negative?: string | undefined;
136
- foreground?: string | undefined;
137
- background?: string | undefined;
138
123
  };
124
+ } | {
125
+ brand?: string | undefined;
126
+ alternate?: string | undefined;
127
+ accent?: string | undefined;
128
+ link?: string | undefined;
129
+ help?: string | undefined;
130
+ success?: string | undefined;
131
+ info?: string | undefined;
132
+ warning?: string | undefined;
133
+ danger?: string | undefined;
134
+ fatal?: string | undefined;
135
+ positive?: string | undefined;
136
+ negative?: string | undefined;
137
+ dark?: string | undefined;
138
+ light?: string | undefined;
139
139
  };
140
140
  } | Record<string, {
141
- fatal?: string | undefined;
142
- success?: string | undefined;
143
- info?: string | undefined;
144
- dark?: string | undefined;
145
- light?: string | undefined;
146
- brand?: string | undefined;
147
- alternate?: string | undefined;
148
- accent?: string | undefined;
149
- link?: string | undefined;
150
- help?: string | undefined;
151
- warning?: string | undefined;
152
- danger?: string | undefined;
153
- positive?: string | undefined;
154
- negative?: string | undefined;
155
- } | {
156
141
  dark: {
157
- fatal?: string | undefined;
158
- success?: string | undefined;
159
- info?: string | undefined;
142
+ foreground?: string | undefined;
143
+ background?: string | undefined;
160
144
  brand?: string | undefined;
161
145
  alternate?: string | undefined;
162
146
  accent?: string | undefined;
163
147
  link?: string | undefined;
164
148
  help?: string | undefined;
149
+ success?: string | undefined;
150
+ info?: string | undefined;
165
151
  warning?: string | undefined;
166
152
  danger?: string | undefined;
153
+ fatal?: string | undefined;
167
154
  positive?: string | undefined;
168
155
  negative?: string | undefined;
169
- foreground?: string | undefined;
170
- background?: string | undefined;
171
156
  };
172
157
  light: {
173
- fatal?: string | undefined;
174
- success?: string | undefined;
175
- info?: string | undefined;
158
+ foreground?: string | undefined;
159
+ background?: string | undefined;
176
160
  brand?: string | undefined;
177
161
  alternate?: string | undefined;
178
162
  accent?: string | undefined;
179
163
  link?: string | undefined;
180
164
  help?: string | undefined;
165
+ success?: string | undefined;
166
+ info?: string | undefined;
181
167
  warning?: string | undefined;
182
168
  danger?: string | undefined;
169
+ fatal?: string | undefined;
183
170
  positive?: string | undefined;
184
171
  negative?: string | undefined;
185
- foreground?: string | undefined;
186
- background?: string | undefined;
187
172
  };
173
+ } | {
174
+ brand?: string | undefined;
175
+ alternate?: string | undefined;
176
+ accent?: string | undefined;
177
+ link?: string | undefined;
178
+ help?: string | undefined;
179
+ success?: string | undefined;
180
+ info?: string | undefined;
181
+ warning?: string | undefined;
182
+ danger?: string | undefined;
183
+ fatal?: string | undefined;
184
+ positive?: string | undefined;
185
+ negative?: string | undefined;
186
+ dark?: string | undefined;
187
+ light?: string | undefined;
188
188
  }>;
189
+ name?: string | undefined;
189
190
  $schema?: string | null | undefined;
190
191
  extends?: string | string[] | undefined;
191
- name?: string | undefined;
192
192
  namespace?: string | undefined;
193
- organization?: string | undefined;
193
+ organization?: string | {
194
+ name: string;
195
+ url?: string | undefined;
196
+ description?: string | undefined;
197
+ logo?: string | undefined;
198
+ icon?: string | undefined;
199
+ } | undefined;
194
200
  repository?: string | undefined;
195
201
  license?: string | undefined;
196
202
  homepage?: string | undefined;
@@ -208,7 +214,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
208
214
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
209
215
  timezone?: string | undefined;
210
216
  locale?: string | undefined;
211
- logLevel?: "error" | "silent" | "fatal" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
217
+ logLevel?: "success" | "info" | "fatal" | "error" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
212
218
  skipConfigLogging?: boolean | undefined;
213
219
  registry?: {
214
220
  github?: string | undefined;
package/dist/index.cjs CHANGED
@@ -17,7 +17,8 @@ var _chunkH6PQ7FMQcjs = require('./chunk-H6PQ7FMQ.cjs');
17
17
 
18
18
 
19
19
 
20
- var _chunkYZ4LXHOBcjs = require('./chunk-YZ4LXHOB.cjs');
20
+
21
+ var _chunkOSCIEGSVcjs = require('./chunk-OSCIEGSV.cjs');
21
22
 
22
23
 
23
24
 
@@ -71,4 +72,5 @@ var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
71
72
 
72
73
 
73
74
 
74
- exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkYZ4LXHOBcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkYZ4LXHOBcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkYZ4LXHOBcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkYZ4LXHOBcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkYZ4LXHOBcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkYZ4LXHOBcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkYZ4LXHOBcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkYZ4LXHOBcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkHPEJ52UXcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkHPEJ52UXcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkHPEJ52UXcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkHPEJ52UXcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkHPEJ52UXcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkHPEJ52UXcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.STORM_DEFAULT_SUPPORT = _chunkHPEJ52UXcjs.STORM_DEFAULT_SUPPORT; exports.SingleThemeColorConfigSchema = _chunkYZ4LXHOBcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkYZ4LXHOBcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkYZ4LXHOBcjs.stormWorkspaceConfigSchema;
75
+
76
+ exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkOSCIEGSVcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkOSCIEGSVcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkOSCIEGSVcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkOSCIEGSVcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkOSCIEGSVcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkOSCIEGSVcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkOSCIEGSVcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkOSCIEGSVcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkHPEJ52UXcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkHPEJ52UXcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkHPEJ52UXcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkHPEJ52UXcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkHPEJ52UXcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkHPEJ52UXcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.STORM_DEFAULT_SUPPORT = _chunkHPEJ52UXcjs.STORM_DEFAULT_SUPPORT; exports.SingleThemeColorConfigSchema = _chunkOSCIEGSVcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkOSCIEGSVcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkOSCIEGSVcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkOSCIEGSVcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkOSCIEGSVcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkOSCIEGSVcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkOSCIEGSVcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkOSCIEGSVcjs.stormWorkspaceConfigSchema;
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
1
  export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER, STORM_DEFAULT_SUPPORT } from './constants.cjs';
2
2
  export { defineConfig } from './define-config.cjs';
3
- export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, WorkspaceAccountConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema, errorConfigSchema, stormWorkspaceConfigSchema } from './schema.cjs';
4
- export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.cjs';
3
+ export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, WorkspaceAccountConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema, errorConfigSchema, organizationConfigSchema, stormWorkspaceConfigSchema } from './schema.cjs';
4
+ export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, OrganizationConfig, OrganizationConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.cjs';
5
5
  import 'zod';