@storm-software/config 1.123.1 → 1.124.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,22 @@
2
2
 
3
3
  # Changelog for Storm Ops - Config
4
4
 
5
+ ## [1.123.2](https://github.com/storm-software/storm-ops/releases/tag/config%401.123.2) (2025-06-20)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Update README markdown files
10
+ ([90a90bfac](https://github.com/storm-software/storm-ops/commit/90a90bfac))
11
+
12
+ ## [1.123.1](https://github.com/storm-software/storm-ops/releases/tag/config%401.123.1) (2025-06-20)
13
+
14
+ ### Miscellaneous
15
+
16
+ - **config:** Upgrade JSON schema definition
17
+ ([aa375c8c1](https://github.com/storm-software/storm-ops/commit/aa375c8c1))
18
+ - **config:** Upgrade to `zod` v4 schema definition
19
+ ([54305f4b1](https://github.com/storm-software/storm-ops/commit/54305f4b1))
20
+
5
21
  ## [1.123.0](https://github.com/storm-software/storm-ops/releases/tag/config%401.123.0) (2025-06-20)
6
22
 
7
23
  ### Features
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.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)
24
+ [![Version](https://img.shields.io/badge/version-1.123.1-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 -->
@@ -163,9 +163,9 @@ var organizationConfigSchema = z.object({
163
163
  }).describe("The workspace's organization details");
164
164
  var stormWorkspaceConfigSchema = z.object({
165
165
  $schema: z.string().trim().default(
166
- "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json"
167
- ).optional().nullish().describe(
168
- "The URL to the JSON schema file that describes the Storm configuration file"
166
+ "https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
167
+ ).describe(
168
+ "The URL or file path to the JSON schema file that describes the Storm configuration file"
169
169
  ),
170
170
  extends: ExtendsSchema.optional(),
171
171
  name: z.string().trim().toLowerCase().optional().describe(
@@ -163,9 +163,9 @@ var organizationConfigSchema = z.object({
163
163
  }).describe("The workspace's organization details");
164
164
  var stormWorkspaceConfigSchema = z.object({
165
165
  $schema: z.string().trim().default(
166
- "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json"
167
- ).optional().nullish().describe(
168
- "The URL to the JSON schema file that describes the Storm configuration file"
166
+ "https://public.storm-cdn.com/schemas/storm-workspace.schema.json"
167
+ ).describe(
168
+ "The URL or file path to the JSON schema file that describes the Storm configuration file"
169
169
  ),
170
170
  extends: ExtendsSchema.optional(),
171
171
  name: z.string().trim().toLowerCase().optional().describe(
@@ -186,7 +186,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
186
186
  };
187
187
  };
188
188
  };
189
- $schema?: string | null | undefined;
189
+ $schema?: string | undefined;
190
190
  extends?: string | string[] | undefined;
191
191
  name?: string | undefined;
192
192
  namespace?: string | undefined;
@@ -186,7 +186,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
186
186
  };
187
187
  };
188
188
  };
189
- $schema?: string | null | undefined;
189
+ $schema?: string | undefined;
190
190
  extends?: string | string[] | undefined;
191
191
  name?: string | undefined;
192
192
  namespace?: string | undefined;
package/dist/index.cjs CHANGED
@@ -18,7 +18,7 @@ var _chunkH6PQ7FMQcjs = require('./chunk-H6PQ7FMQ.cjs');
18
18
 
19
19
 
20
20
 
21
- var _chunkSYFXBAOJcjs = require('./chunk-SYFXBAOJ.cjs');
21
+ var _chunk3SKAWAHWcjs = require('./chunk-3SKAWAHW.cjs');
22
22
 
23
23
 
24
24
 
@@ -73,4 +73,4 @@ var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
73
73
 
74
74
 
75
75
 
76
- exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkSYFXBAOJcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkSYFXBAOJcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkSYFXBAOJcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkSYFXBAOJcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkSYFXBAOJcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkSYFXBAOJcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkSYFXBAOJcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkSYFXBAOJcjs.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 = _chunkSYFXBAOJcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkSYFXBAOJcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkSYFXBAOJcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkSYFXBAOJcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkSYFXBAOJcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkSYFXBAOJcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkSYFXBAOJcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkSYFXBAOJcjs.stormWorkspaceConfigSchema;
76
+ exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunk3SKAWAHWcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunk3SKAWAHWcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunk3SKAWAHWcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunk3SKAWAHWcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunk3SKAWAHWcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunk3SKAWAHWcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunk3SKAWAHWcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunk3SKAWAHWcjs.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 = _chunk3SKAWAHWcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunk3SKAWAHWcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunk3SKAWAHWcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunk3SKAWAHWcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunk3SKAWAHWcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunk3SKAWAHWcjs.errorConfigSchema; exports.organizationConfigSchema = _chunk3SKAWAHWcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunk3SKAWAHWcjs.stormWorkspaceConfigSchema;
package/dist/index.js CHANGED
@@ -18,7 +18,7 @@ import {
18
18
  errorConfigSchema,
19
19
  organizationConfigSchema,
20
20
  stormWorkspaceConfigSchema
21
- } from "./chunk-CLVZKFJ2.js";
21
+ } from "./chunk-6CELHN4R.js";
22
22
  import {
23
23
  STORM_DEFAULT_ACCOUNT_DISCORD,
24
24
  STORM_DEFAULT_ACCOUNT_GITHUB,
package/dist/schema.cjs CHANGED
@@ -15,7 +15,7 @@
15
15
 
16
16
 
17
17
 
18
- var _chunkSYFXBAOJcjs = require('./chunk-SYFXBAOJ.cjs');
18
+ var _chunk3SKAWAHWcjs = require('./chunk-3SKAWAHW.cjs');
19
19
  require('./chunk-HPEJ52UX.cjs');
20
20
 
21
21
 
@@ -34,4 +34,4 @@ require('./chunk-HPEJ52UX.cjs');
34
34
 
35
35
 
36
36
 
37
- exports.ColorConfigMapSchema = _chunkSYFXBAOJcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkSYFXBAOJcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkSYFXBAOJcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkSYFXBAOJcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkSYFXBAOJcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkSYFXBAOJcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkSYFXBAOJcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkSYFXBAOJcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkSYFXBAOJcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkSYFXBAOJcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkSYFXBAOJcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkSYFXBAOJcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkSYFXBAOJcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkSYFXBAOJcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkSYFXBAOJcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkSYFXBAOJcjs.stormWorkspaceConfigSchema;
37
+ exports.ColorConfigMapSchema = _chunk3SKAWAHWcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunk3SKAWAHWcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunk3SKAWAHWcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunk3SKAWAHWcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunk3SKAWAHWcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunk3SKAWAHWcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunk3SKAWAHWcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunk3SKAWAHWcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunk3SKAWAHWcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunk3SKAWAHWcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunk3SKAWAHWcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunk3SKAWAHWcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunk3SKAWAHWcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunk3SKAWAHWcjs.errorConfigSchema; exports.organizationConfigSchema = _chunk3SKAWAHWcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunk3SKAWAHWcjs.stormWorkspaceConfigSchema;
package/dist/schema.d.cts CHANGED
@@ -282,7 +282,7 @@ declare const organizationConfigSchema: z.ZodObject<{
282
282
  * Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
283
283
  */
284
284
  declare const stormWorkspaceConfigSchema: z.ZodObject<{
285
- $schema: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodDefault<z.ZodString>>>>;
285
+ $schema: z.ZodDefault<z.ZodString>;
286
286
  extends: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>;
287
287
  name: z.ZodOptional<z.ZodString>;
288
288
  namespace: z.ZodOptional<z.ZodString>;
package/dist/schema.d.ts CHANGED
@@ -282,7 +282,7 @@ declare const organizationConfigSchema: z.ZodObject<{
282
282
  * Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
283
283
  */
284
284
  declare const stormWorkspaceConfigSchema: z.ZodObject<{
285
- $schema: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodDefault<z.ZodString>>>>;
285
+ $schema: z.ZodDefault<z.ZodString>;
286
286
  extends: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>;
287
287
  name: z.ZodOptional<z.ZodString>;
288
288
  namespace: z.ZodOptional<z.ZodString>;
package/dist/schema.js CHANGED
@@ -15,7 +15,7 @@ import {
15
15
  errorConfigSchema,
16
16
  organizationConfigSchema,
17
17
  stormWorkspaceConfigSchema
18
- } from "./chunk-CLVZKFJ2.js";
18
+ } from "./chunk-6CELHN4R.js";
19
19
  import "./chunk-X3RNGA5B.js";
20
20
  export {
21
21
  ColorConfigMapSchema,
package/dist/types.d.cts CHANGED
@@ -24,7 +24,7 @@ type StormWorkspaceConfigInput = z.input<typeof stormWorkspaceConfigSchema>;
24
24
  * This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
25
25
  *
26
26
  * @deprecated
27
- * This type is deprecated and will be removed in the next major version. Use `StormWorkspaceConfig` instead.
27
+ * This type is deprecated and will be removed in the next major version. Use {@link StormWorkspaceConfig} instead.
28
28
  */
29
29
  type StormConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = TStormWorkspaceConfig & {
30
30
  extensions: (TStormWorkspaceConfig["extensions"] & {
package/dist/types.d.ts CHANGED
@@ -24,7 +24,7 @@ type StormWorkspaceConfigInput = z.input<typeof stormWorkspaceConfigSchema>;
24
24
  * This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
25
25
  *
26
26
  * @deprecated
27
- * This type is deprecated and will be removed in the next major version. Use `StormWorkspaceConfig` instead.
27
+ * This type is deprecated and will be removed in the next major version. Use {@link StormWorkspaceConfig} instead.
28
28
  */
29
29
  type StormConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = TStormWorkspaceConfig & {
30
30
  extensions: (TStormWorkspaceConfig["extensions"] & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.123.1",
3
+ "version": "1.124.0",
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": {
package/presets/base.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json",
2
+ "$schema": "https://public.storm-cdn.com/schemas/storm-workspace.schema.json",
3
3
  "mode": "production",
4
4
  "timezone": "America/New_York",
5
5
  "locale": "en-US",
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json",
2
+ "$schema": "https://public.storm-cdn.com/schemas/storm-workspace.schema.json",
3
3
  "organization": {
4
4
  "name": "storm-software",
5
5
  "description": "An open source software development organization and the creator of the Stryke utilities, Storm Stack, Cyclone UI, Acidic, and Storm Cloud.",
@@ -183,7 +183,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
183
183
  negative?: string | undefined;
184
184
  };
185
185
  };
186
- $schema?: string | null | undefined;
186
+ $schema?: string | undefined;
187
187
  extends?: string | string[] | undefined;
188
188
  name?: string | undefined;
189
189
  namespace?: string | undefined;
package/src/schema.d.ts CHANGED
@@ -281,7 +281,7 @@ export declare const organizationConfigSchema: z.ZodObject<{
281
281
  * Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
282
282
  */
283
283
  export declare const stormWorkspaceConfigSchema: z.ZodObject<{
284
- $schema: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodDefault<z.ZodString>>>>;
284
+ $schema: z.ZodDefault<z.ZodString>;
285
285
  extends: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString>]>>;
286
286
  name: z.ZodOptional<z.ZodString>;
287
287
  namespace: z.ZodOptional<z.ZodString>;
package/src/types.d.ts CHANGED
@@ -23,7 +23,7 @@ export type StormWorkspaceConfigInput = z.input<typeof stormWorkspaceConfigSchem
23
23
  * This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
24
24
  *
25
25
  * @deprecated
26
- * This type is deprecated and will be removed in the next major version. Use `StormWorkspaceConfig` instead.
26
+ * This type is deprecated and will be removed in the next major version. Use {@link StormWorkspaceConfig} instead.
27
27
  */
28
28
  export type StormConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = TStormWorkspaceConfig & {
29
29
  extensions: (TStormWorkspaceConfig["extensions"] & {