@storm-software/config 1.128.12 → 1.128.13

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.128.12](https://github.com/storm-software/storm-ops/releases/tag/config%401.128.12) (2025-08-28)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate README markdown files
10
+ ([b25aa8830](https://github.com/storm-software/storm-ops/commit/b25aa8830))
11
+
5
12
  ## [1.128.11](https://github.com/storm-software/storm-ops/releases/tag/config%401.128.11) (2025-08-28)
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.128.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.128.12-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 -->
@@ -54,6 +54,22 @@ 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
+ warning?: string | undefined;
67
+ danger?: string | undefined;
68
+ fatal?: string | undefined;
69
+ positive?: string | undefined;
70
+ negative?: string | undefined;
71
+ gradient?: string[] | undefined;
72
+ } | {
57
73
  dark: {
58
74
  foreground?: string | undefined;
59
75
  background?: string | undefined;
@@ -88,7 +104,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
88
104
  negative?: string | undefined;
89
105
  gradient?: string[] | undefined;
90
106
  };
91
- } | {
107
+ } | Record<string, {
92
108
  dark?: string | undefined;
93
109
  light?: string | undefined;
94
110
  brand?: string | undefined;
@@ -104,7 +120,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
104
120
  positive?: string | undefined;
105
121
  negative?: string | undefined;
106
122
  gradient?: string[] | undefined;
107
- } | Record<string, {
123
+ } | {
108
124
  dark: {
109
125
  foreground?: string | undefined;
110
126
  background?: string | undefined;
@@ -139,22 +155,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
139
155
  negative?: string | undefined;
140
156
  gradient?: string[] | undefined;
141
157
  };
142
- } | {
143
- dark?: string | undefined;
144
- light?: string | undefined;
145
- brand?: string | undefined;
146
- alternate?: string | undefined;
147
- accent?: string | undefined;
148
- link?: string | undefined;
149
- help?: string | undefined;
150
- success?: string | undefined;
151
- info?: string | undefined;
152
- warning?: string | undefined;
153
- danger?: string | undefined;
154
- fatal?: string | undefined;
155
- positive?: string | undefined;
156
- negative?: string | undefined;
157
- gradient?: string[] | undefined;
158
158
  }>;
159
159
  $schema?: string | undefined;
160
160
  extends?: string | string[] | undefined;
@@ -173,7 +173,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
173
173
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
174
174
  timezone?: string | undefined;
175
175
  locale?: string | undefined;
176
- logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
176
+ logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "debug" | "trace" | "all" | undefined;
177
177
  skipConfigLogging?: boolean | undefined;
178
178
  registry?: {
179
179
  github?: string | undefined;
@@ -54,6 +54,22 @@ 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
+ warning?: string | undefined;
67
+ danger?: string | undefined;
68
+ fatal?: string | undefined;
69
+ positive?: string | undefined;
70
+ negative?: string | undefined;
71
+ gradient?: string[] | undefined;
72
+ } | {
57
73
  dark: {
58
74
  foreground?: string | undefined;
59
75
  background?: string | undefined;
@@ -88,7 +104,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
88
104
  negative?: string | undefined;
89
105
  gradient?: string[] | undefined;
90
106
  };
91
- } | {
107
+ } | Record<string, {
92
108
  dark?: string | undefined;
93
109
  light?: string | undefined;
94
110
  brand?: string | undefined;
@@ -104,7 +120,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
104
120
  positive?: string | undefined;
105
121
  negative?: string | undefined;
106
122
  gradient?: string[] | undefined;
107
- } | Record<string, {
123
+ } | {
108
124
  dark: {
109
125
  foreground?: string | undefined;
110
126
  background?: string | undefined;
@@ -139,22 +155,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
139
155
  negative?: string | undefined;
140
156
  gradient?: string[] | undefined;
141
157
  };
142
- } | {
143
- dark?: string | undefined;
144
- light?: string | undefined;
145
- brand?: string | undefined;
146
- alternate?: string | undefined;
147
- accent?: string | undefined;
148
- link?: string | undefined;
149
- help?: string | undefined;
150
- success?: string | undefined;
151
- info?: string | undefined;
152
- warning?: string | undefined;
153
- danger?: string | undefined;
154
- fatal?: string | undefined;
155
- positive?: string | undefined;
156
- negative?: string | undefined;
157
- gradient?: string[] | undefined;
158
158
  }>;
159
159
  $schema?: string | undefined;
160
160
  extends?: string | string[] | undefined;
@@ -173,7 +173,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
173
173
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
174
174
  timezone?: string | undefined;
175
175
  locale?: string | undefined;
176
- logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
176
+ logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "debug" | "trace" | "all" | undefined;
177
177
  skipConfigLogging?: boolean | undefined;
178
178
  registry?: {
179
179
  github?: string | undefined;
package/dist/schema.d.cts CHANGED
@@ -315,12 +315,12 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
315
315
  declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
316
316
  declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
317
317
  declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
318
+ error: "error";
318
319
  success: "success";
319
- info: "info";
320
- fatal: "fatal";
321
320
  silent: "silent";
322
- error: "error";
321
+ fatal: "fatal";
323
322
  warn: "warn";
323
+ info: "info";
324
324
  debug: "debug";
325
325
  trace: "trace";
326
326
  all: "all";
@@ -402,12 +402,12 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
402
402
  timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
403
403
  locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
404
404
  logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
405
+ error: "error";
405
406
  success: "success";
406
- info: "info";
407
- fatal: "fatal";
408
407
  silent: "silent";
409
- error: "error";
408
+ fatal: "fatal";
410
409
  warn: "warn";
410
+ info: "info";
411
411
  debug: "debug";
412
412
  trace: "trace";
413
413
  all: "all";
package/dist/schema.d.ts CHANGED
@@ -315,12 +315,12 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
315
315
  declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
316
316
  declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
317
317
  declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
318
+ error: "error";
318
319
  success: "success";
319
- info: "info";
320
- fatal: "fatal";
321
320
  silent: "silent";
322
- error: "error";
321
+ fatal: "fatal";
323
322
  warn: "warn";
323
+ info: "info";
324
324
  debug: "debug";
325
325
  trace: "trace";
326
326
  all: "all";
@@ -402,12 +402,12 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
402
402
  timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
403
403
  locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
404
404
  logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
405
+ error: "error";
405
406
  success: "success";
406
- info: "info";
407
- fatal: "fatal";
408
407
  silent: "silent";
409
- error: "error";
408
+ fatal: "fatal";
410
409
  warn: "warn";
410
+ info: "info";
411
411
  debug: "debug";
412
412
  trace: "trace";
413
413
  all: "all";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.128.12",
3
+ "version": "1.128.13",
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": {
@@ -86,5 +86,5 @@
86
86
  "types": "./dist/index.d.ts",
87
87
  "devDependencies": { "tsup": "8.4.0", "zod": "^4.0.2" },
88
88
  "publishConfig": { "access": "public" },
89
- "gitHead": "99ce6b979dc4fb39d2c34edbebfb26b20dc3ba9d"
89
+ "gitHead": "ead820214c8c4cf25d5311c154819f2c2f8f7356"
90
90
  }