@storm-software/config 1.134.70 → 1.134.71

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,17 @@
2
2
 
3
3
  # Changelog for Storm Ops - Config
4
4
 
5
+ ## [1.134.70](https://github.com/storm-software/storm-ops/releases/tag/config%401.134.70) (12/17/2025)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update asset paths in workspace references
10
+ ([b6e71c5d4](https://github.com/storm-software/storm-ops/commit/b6e71c5d4))
11
+
12
+ ### Updated Dependencies
13
+
14
+ - Updated **testing-tools** to **v1.119.69**
15
+
5
16
  ## [1.134.69](https://github.com/storm-software/storm-ops/releases/tag/config%401.134.69) (12/17/2025)
6
17
 
7
18
  ### Updated Dependencies
@@ -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;
@@ -174,7 +174,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
174
174
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
175
175
  timezone?: string | undefined;
176
176
  locale?: string | undefined;
177
- logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
177
+ logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "debug" | "trace" | "all" | undefined;
178
178
  skipConfigLogging?: boolean | undefined;
179
179
  registry?: {
180
180
  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;
@@ -174,7 +174,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
174
174
  packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
175
175
  timezone?: string | undefined;
176
176
  locale?: string | undefined;
177
- logLevel?: "success" | "info" | "fatal" | "silent" | "error" | "warn" | "debug" | "trace" | "all" | undefined;
177
+ logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "debug" | "trace" | "all" | undefined;
178
178
  skipConfigLogging?: boolean | undefined;
179
179
  registry?: {
180
180
  github?: string | undefined;
package/dist/schema.d.cts CHANGED
@@ -319,12 +319,12 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
319
319
  declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
320
320
  declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
321
321
  declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
322
+ error: "error";
322
323
  success: "success";
323
- info: "info";
324
- fatal: "fatal";
325
324
  silent: "silent";
326
- error: "error";
325
+ fatal: "fatal";
327
326
  warn: "warn";
327
+ info: "info";
328
328
  debug: "debug";
329
329
  trace: "trace";
330
330
  all: "all";
@@ -410,12 +410,12 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
410
410
  timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
411
411
  locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
412
412
  logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
413
+ error: "error";
413
414
  success: "success";
414
- info: "info";
415
- fatal: "fatal";
416
415
  silent: "silent";
417
- error: "error";
416
+ fatal: "fatal";
418
417
  warn: "warn";
418
+ info: "info";
419
419
  debug: "debug";
420
420
  trace: "trace";
421
421
  all: "all";
package/dist/schema.d.ts CHANGED
@@ -319,12 +319,12 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
319
319
  declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
320
320
  declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
321
321
  declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
322
+ error: "error";
322
323
  success: "success";
323
- info: "info";
324
- fatal: "fatal";
325
324
  silent: "silent";
326
- error: "error";
325
+ fatal: "fatal";
327
326
  warn: "warn";
327
+ info: "info";
328
328
  debug: "debug";
329
329
  trace: "trace";
330
330
  all: "all";
@@ -410,12 +410,12 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
410
410
  timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
411
411
  locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
412
412
  logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
413
+ error: "error";
413
414
  success: "success";
414
- info: "info";
415
- fatal: "fatal";
416
415
  silent: "silent";
417
- error: "error";
416
+ fatal: "fatal";
418
417
  warn: "warn";
418
+ info: "info";
419
419
  debug: "debug";
420
420
  trace: "trace";
421
421
  all: "all";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.134.70",
3
+ "version": "1.134.71",
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.2.0" },
88
88
  "devDependencies": { "tsup": "8.4.0" },
89
89
  "publishConfig": { "access": "public" },
90
- "gitHead": "ae090c42b3fb6c2826b532016af90a62bfe57349"
90
+ "gitHead": "7f759c57f99e6cf104b110848fdf4d319e5886c1"
91
91
  }