@storm-software/config 1.137.19 → 1.137.20

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,16 @@
2
2
 
3
3
  # Changelog for Storm Ops - Config
4
4
 
5
+ ## [1.137.19](https://github.com/storm-software/storm-ops/releases/tag/config%401.137.19) (04/01/2026)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate `README.md` files ([cf5149751](https://github.com/storm-software/storm-ops/commit/cf5149751))
10
+
11
+ ### Updated Dependencies
12
+
13
+ - Updated **testing-tools** to **v1.119.140**
14
+
5
15
  ## [1.137.18](https://github.com/storm-software/storm-ops/releases/tag/config%401.137.18) (03/31/2026)
6
16
 
7
17
  ### Miscellaneous
package/README.md CHANGED
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
27
27
 
28
28
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
29
29
 
30
- [![Version](https://img.shields.io/badge/version-1.137.17-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)
30
+ [![Version](https://img.shields.io/badge/version-1.137.18-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)
31
31
 
32
32
  <!-- prettier-ignore-start -->
33
33
  <!-- markdownlint-disable -->
@@ -54,6 +54,24 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
54
54
  build?: string | undefined;
55
55
  };
56
56
  colors: {
57
+ dark?: string | undefined;
58
+ light?: string | undefined;
59
+ brand?: string | undefined;
60
+ alternate?: string | undefined;
61
+ accent?: string | undefined;
62
+ link?: string | undefined;
63
+ help?: string | undefined;
64
+ success?: string | undefined;
65
+ info?: string | undefined;
66
+ debug?: string | undefined;
67
+ warning?: string | undefined;
68
+ danger?: string | undefined;
69
+ fatal?: string | undefined;
70
+ performance?: string | undefined;
71
+ positive?: string | undefined;
72
+ negative?: string | undefined;
73
+ gradient?: string[] | undefined;
74
+ } | {
57
75
  dark: {
58
76
  foreground?: string | undefined;
59
77
  background?: string | undefined;
@@ -92,7 +110,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
92
110
  negative?: string | undefined;
93
111
  gradient?: string[] | undefined;
94
112
  };
95
- } | {
113
+ } | Record<string, {
96
114
  dark?: string | undefined;
97
115
  light?: string | undefined;
98
116
  brand?: string | undefined;
@@ -110,7 +128,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
110
128
  positive?: string | undefined;
111
129
  negative?: string | undefined;
112
130
  gradient?: string[] | undefined;
113
- } | Record<string, {
131
+ } | {
114
132
  dark: {
115
133
  foreground?: string | undefined;
116
134
  background?: string | undefined;
@@ -149,24 +167,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
149
167
  negative?: string | undefined;
150
168
  gradient?: string[] | undefined;
151
169
  };
152
- } | {
153
- dark?: string | undefined;
154
- light?: string | undefined;
155
- brand?: string | undefined;
156
- alternate?: string | undefined;
157
- accent?: string | undefined;
158
- link?: string | undefined;
159
- help?: string | undefined;
160
- success?: string | undefined;
161
- info?: string | undefined;
162
- debug?: string | undefined;
163
- warning?: string | undefined;
164
- danger?: string | undefined;
165
- fatal?: string | undefined;
166
- performance?: string | undefined;
167
- positive?: string | undefined;
168
- negative?: string | undefined;
169
- gradient?: string[] | undefined;
170
170
  }>;
171
171
  $schema?: string | undefined;
172
172
  extends?: string | string[] | undefined;
@@ -186,7 +186,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
186
186
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
187
187
  timezone?: string | undefined;
188
188
  locale?: string | undefined;
189
- logLevel?: "success" | "info" | "debug" | "fatal" | "performance" | "silent" | "error" | "warn" | "trace" | "all" | undefined;
189
+ logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "performance" | "debug" | "trace" | "all" | undefined;
190
190
  skipConfigLogging?: boolean | undefined;
191
191
  registry?: {
192
192
  github?: string | undefined;
@@ -54,6 +54,24 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
54
54
  build?: string | undefined;
55
55
  };
56
56
  colors: {
57
+ dark?: string | undefined;
58
+ light?: string | undefined;
59
+ brand?: string | undefined;
60
+ alternate?: string | undefined;
61
+ accent?: string | undefined;
62
+ link?: string | undefined;
63
+ help?: string | undefined;
64
+ success?: string | undefined;
65
+ info?: string | undefined;
66
+ debug?: string | undefined;
67
+ warning?: string | undefined;
68
+ danger?: string | undefined;
69
+ fatal?: string | undefined;
70
+ performance?: string | undefined;
71
+ positive?: string | undefined;
72
+ negative?: string | undefined;
73
+ gradient?: string[] | undefined;
74
+ } | {
57
75
  dark: {
58
76
  foreground?: string | undefined;
59
77
  background?: string | undefined;
@@ -92,7 +110,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
92
110
  negative?: string | undefined;
93
111
  gradient?: string[] | undefined;
94
112
  };
95
- } | {
113
+ } | Record<string, {
96
114
  dark?: string | undefined;
97
115
  light?: string | undefined;
98
116
  brand?: string | undefined;
@@ -110,7 +128,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
110
128
  positive?: string | undefined;
111
129
  negative?: string | undefined;
112
130
  gradient?: string[] | undefined;
113
- } | Record<string, {
131
+ } | {
114
132
  dark: {
115
133
  foreground?: string | undefined;
116
134
  background?: string | undefined;
@@ -149,24 +167,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
149
167
  negative?: string | undefined;
150
168
  gradient?: string[] | undefined;
151
169
  };
152
- } | {
153
- dark?: string | undefined;
154
- light?: string | undefined;
155
- brand?: string | undefined;
156
- alternate?: string | undefined;
157
- accent?: string | undefined;
158
- link?: string | undefined;
159
- help?: string | undefined;
160
- success?: string | undefined;
161
- info?: string | undefined;
162
- debug?: string | undefined;
163
- warning?: string | undefined;
164
- danger?: string | undefined;
165
- fatal?: string | undefined;
166
- performance?: string | undefined;
167
- positive?: string | undefined;
168
- negative?: string | undefined;
169
- gradient?: string[] | undefined;
170
170
  }>;
171
171
  $schema?: string | undefined;
172
172
  extends?: string | string[] | undefined;
@@ -186,7 +186,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
186
186
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
187
187
  timezone?: string | undefined;
188
188
  locale?: string | undefined;
189
- logLevel?: "success" | "info" | "debug" | "fatal" | "performance" | "silent" | "error" | "warn" | "trace" | "all" | undefined;
189
+ logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "performance" | "debug" | "trace" | "all" | undefined;
190
190
  skipConfigLogging?: boolean | undefined;
191
191
  registry?: {
192
192
  github?: string | undefined;
package/dist/schema.d.cts CHANGED
@@ -343,14 +343,14 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
343
343
  declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
344
344
  declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
345
345
  declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
346
+ error: "error";
346
347
  success: "success";
347
- info: "info";
348
- debug: "debug";
349
- fatal: "fatal";
350
- performance: "performance";
351
348
  silent: "silent";
352
- error: "error";
349
+ fatal: "fatal";
353
350
  warn: "warn";
351
+ info: "info";
352
+ performance: "performance";
353
+ debug: "debug";
354
354
  trace: "trace";
355
355
  all: "all";
356
356
  }>>;
@@ -435,14 +435,14 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
435
435
  timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
436
436
  locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
437
437
  logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
438
+ error: "error";
438
439
  success: "success";
439
- info: "info";
440
- debug: "debug";
441
- fatal: "fatal";
442
- performance: "performance";
443
440
  silent: "silent";
444
- error: "error";
441
+ fatal: "fatal";
445
442
  warn: "warn";
443
+ info: "info";
444
+ performance: "performance";
445
+ debug: "debug";
446
446
  trace: "trace";
447
447
  all: "all";
448
448
  }>>;
package/dist/schema.d.ts CHANGED
@@ -343,14 +343,14 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
343
343
  declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
344
344
  declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
345
345
  declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
346
+ error: "error";
346
347
  success: "success";
347
- info: "info";
348
- debug: "debug";
349
- fatal: "fatal";
350
- performance: "performance";
351
348
  silent: "silent";
352
- error: "error";
349
+ fatal: "fatal";
353
350
  warn: "warn";
351
+ info: "info";
352
+ performance: "performance";
353
+ debug: "debug";
354
354
  trace: "trace";
355
355
  all: "all";
356
356
  }>>;
@@ -435,14 +435,14 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
435
435
  timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
436
436
  locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
437
437
  logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
438
+ error: "error";
438
439
  success: "success";
439
- info: "info";
440
- debug: "debug";
441
- fatal: "fatal";
442
- performance: "performance";
443
440
  silent: "silent";
444
- error: "error";
441
+ fatal: "fatal";
445
442
  warn: "warn";
443
+ info: "info";
444
+ performance: "performance";
445
+ debug: "debug";
446
446
  trace: "trace";
447
447
  all: "all";
448
448
  }>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.137.19",
3
+ "version": "1.137.20",
4
4
  "private": false,
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
  "devDependencies": { "tsup": "8.4.0", "zod": "^4.3.6" },
88
88
  "peerDependencies": { "zod": "^3.25.0 || ^4.0.0" },
89
89
  "publishConfig": { "access": "public" },
90
- "gitHead": "173f33ce4aae095b7bb0afda3e8cf5b25ba6bc2a"
90
+ "gitHead": "c42d6c0ae19c100006234c16e077e9a189ffcbec"
91
91
  }