@storm-software/config 1.121.15 → 1.122.1

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,18 @@
2
2
 
3
3
  # Changelog for Storm Ops - Config
4
4
 
5
+ ## [1.122.0](https://github.com/storm-software/storm-ops/releases/tag/config%401.122.0) (2025-06-07)
6
+
7
+ ### Features
8
+
9
+ - **config:** Added the `portal` website configuration parameter
10
+
11
+ ## [1.121.15](https://github.com/storm-software/storm-ops/releases/tag/config%401.121.15) (2025-06-06)
12
+
13
+ ### Miscellaneous
14
+
15
+ - **monorepo:** Regenerate README markdown files
16
+
5
17
  ## [1.121.14](https://github.com/storm-software/storm-ops/releases/tag/config%401.121.14) (2025-06-06)
6
18
 
7
19
  ### 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.121.14-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.121.15-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 -->
@@ -168,6 +168,7 @@ var stormWorkspaceConfigSchema = z.object({
168
168
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
169
169
  homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
170
170
  docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
171
+ portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
171
172
  licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
172
173
  contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
173
174
  support: z.string().trim().url().optional().describe(
@@ -168,6 +168,7 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
168
168
  license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
169
169
  homepage: _zod2.default.string().trim().url().optional().describe("The homepage of the workspace"),
170
170
  docs: _zod2.default.string().trim().url().optional().describe("The documentation site for the workspace"),
171
+ portal: _zod2.default.string().trim().url().optional().describe("The development portal site for the workspace"),
171
172
  licensing: _zod2.default.string().trim().url().optional().describe("The licensing site for the workspace"),
172
173
  contact: _zod2.default.string().trim().url().optional().describe("The contact site for the workspace"),
173
174
  support: _zod2.default.string().trim().url().optional().describe(
@@ -195,6 +195,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
195
195
  license?: string | undefined;
196
196
  homepage?: string | undefined;
197
197
  docs?: string | undefined;
198
+ portal?: string | undefined;
198
199
  licensing?: string | undefined;
199
200
  contact?: string | undefined;
200
201
  support?: string | undefined;
@@ -195,6 +195,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
195
195
  license?: string | undefined;
196
196
  homepage?: string | undefined;
197
197
  docs?: string | undefined;
198
+ portal?: string | undefined;
198
199
  licensing?: string | undefined;
199
200
  contact?: string | undefined;
200
201
  support?: string | undefined;
package/dist/index.cjs CHANGED
@@ -17,7 +17,7 @@ var _chunkH6PQ7FMQcjs = require('./chunk-H6PQ7FMQ.cjs');
17
17
 
18
18
 
19
19
 
20
- var _chunkVCBBW6S7cjs = require('./chunk-VCBBW6S7.cjs');
20
+ var _chunkYZ4LXHOBcjs = require('./chunk-YZ4LXHOB.cjs');
21
21
 
22
22
 
23
23
 
@@ -71,4 +71,4 @@ var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
71
71
 
72
72
 
73
73
 
74
- exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkVCBBW6S7cjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkVCBBW6S7cjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkVCBBW6S7cjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkVCBBW6S7cjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkVCBBW6S7cjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkVCBBW6S7cjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkVCBBW6S7cjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkVCBBW6S7cjs.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 = _chunkVCBBW6S7cjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkVCBBW6S7cjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkVCBBW6S7cjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkVCBBW6S7cjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkVCBBW6S7cjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkVCBBW6S7cjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkVCBBW6S7cjs.stormWorkspaceConfigSchema;
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;
package/dist/index.js CHANGED
@@ -17,7 +17,7 @@ import {
17
17
  WorkspaceReleaseConfigSchema,
18
18
  errorConfigSchema,
19
19
  stormWorkspaceConfigSchema
20
- } from "./chunk-6AI6N4A2.js";
20
+ } from "./chunk-RTIWPBE6.js";
21
21
  import {
22
22
  STORM_DEFAULT_ACCOUNT_DISCORD,
23
23
  STORM_DEFAULT_ACCOUNT_GITHUB,
package/dist/schema.cjs CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
 
16
16
 
17
- var _chunkVCBBW6S7cjs = require('./chunk-VCBBW6S7.cjs');
17
+ var _chunkYZ4LXHOBcjs = require('./chunk-YZ4LXHOB.cjs');
18
18
  require('./chunk-HPEJ52UX.cjs');
19
19
 
20
20
 
@@ -32,4 +32,4 @@ require('./chunk-HPEJ52UX.cjs');
32
32
 
33
33
 
34
34
 
35
- exports.ColorConfigMapSchema = _chunkVCBBW6S7cjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkVCBBW6S7cjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkVCBBW6S7cjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkVCBBW6S7cjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkVCBBW6S7cjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkVCBBW6S7cjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkVCBBW6S7cjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkVCBBW6S7cjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkVCBBW6S7cjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkVCBBW6S7cjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkVCBBW6S7cjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkVCBBW6S7cjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkVCBBW6S7cjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkVCBBW6S7cjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkVCBBW6S7cjs.stormWorkspaceConfigSchema;
35
+ 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.SingleThemeColorConfigSchema = _chunkYZ4LXHOBcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkYZ4LXHOBcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkYZ4LXHOBcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkYZ4LXHOBcjs.stormWorkspaceConfigSchema;
package/dist/schema.d.cts CHANGED
@@ -1128,6 +1128,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1128
1128
  license: z.ZodDefault<z.ZodString>;
1129
1129
  homepage: z.ZodOptional<z.ZodString>;
1130
1130
  docs: z.ZodOptional<z.ZodString>;
1131
+ portal: z.ZodOptional<z.ZodString>;
1131
1132
  licensing: z.ZodOptional<z.ZodString>;
1132
1133
  contact: z.ZodOptional<z.ZodString>;
1133
1134
  support: z.ZodOptional<z.ZodString>;
@@ -2161,6 +2162,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
2161
2162
  repository?: string | undefined;
2162
2163
  homepage?: string | undefined;
2163
2164
  docs?: string | undefined;
2165
+ portal?: string | undefined;
2164
2166
  licensing?: string | undefined;
2165
2167
  contact?: string | undefined;
2166
2168
  support?: string | undefined;
@@ -2353,6 +2355,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
2353
2355
  license?: string | undefined;
2354
2356
  homepage?: string | undefined;
2355
2357
  docs?: string | undefined;
2358
+ portal?: string | undefined;
2356
2359
  licensing?: string | undefined;
2357
2360
  contact?: string | undefined;
2358
2361
  support?: string | undefined;
package/dist/schema.d.ts CHANGED
@@ -1128,6 +1128,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1128
1128
  license: z.ZodDefault<z.ZodString>;
1129
1129
  homepage: z.ZodOptional<z.ZodString>;
1130
1130
  docs: z.ZodOptional<z.ZodString>;
1131
+ portal: z.ZodOptional<z.ZodString>;
1131
1132
  licensing: z.ZodOptional<z.ZodString>;
1132
1133
  contact: z.ZodOptional<z.ZodString>;
1133
1134
  support: z.ZodOptional<z.ZodString>;
@@ -2161,6 +2162,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
2161
2162
  repository?: string | undefined;
2162
2163
  homepage?: string | undefined;
2163
2164
  docs?: string | undefined;
2165
+ portal?: string | undefined;
2164
2166
  licensing?: string | undefined;
2165
2167
  contact?: string | undefined;
2166
2168
  support?: string | undefined;
@@ -2353,6 +2355,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
2353
2355
  license?: string | undefined;
2354
2356
  homepage?: string | undefined;
2355
2357
  docs?: string | undefined;
2358
+ portal?: string | undefined;
2356
2359
  licensing?: string | undefined;
2357
2360
  contact?: string | undefined;
2358
2361
  support?: string | undefined;
package/dist/schema.js CHANGED
@@ -14,7 +14,7 @@ import {
14
14
  WorkspaceReleaseConfigSchema,
15
15
  errorConfigSchema,
16
16
  stormWorkspaceConfigSchema
17
- } from "./chunk-6AI6N4A2.js";
17
+ } from "./chunk-RTIWPBE6.js";
18
18
  import "./chunk-X3RNGA5B.js";
19
19
  export {
20
20
  ColorConfigMapSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.121.15",
3
+ "version": "1.122.1",
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": {
@@ -11,6 +11,7 @@
11
11
  "skipCache": false,
12
12
  "homepage": "https://stormsoftware.com",
13
13
  "docs": "https://docs.stormsoftware.com",
14
+ "portal": "https://developer.stormsoftware.com",
14
15
  "licensing": "https://stormsoftware.com/license",
15
16
  "contact": "https://stormsoftware.com/contact",
16
17
  "support": "https://stormsoftware.com/support",
@@ -19,7 +20,7 @@
19
20
  },
20
21
  "error": {
21
22
  "codesFile": "tools/errors/codes.json",
22
- "url": "https://development.stormsoftware.com/static/errors"
23
+ "url": "https://developer.stormsoftware.com/static/errors"
23
24
  },
24
25
  "externalPackagePatterns": ["@storm-software/"],
25
26
  "registry": {
@@ -70,6 +70,11 @@
70
70
  "format": "uri",
71
71
  "description": "The documentation site for the workspace"
72
72
  },
73
+ "portal": {
74
+ "type": "string",
75
+ "format": "uri",
76
+ "description": "The development portal site for the workspace"
77
+ },
73
78
  "licensing": {
74
79
  "type": "string",
75
80
  "format": "uri",
@@ -192,6 +192,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
192
192
  license?: string | undefined;
193
193
  homepage?: string | undefined;
194
194
  docs?: string | undefined;
195
+ portal?: string | undefined;
195
196
  licensing?: string | undefined;
196
197
  contact?: string | undefined;
197
198
  support?: string | undefined;
package/src/schema.d.ts CHANGED
@@ -1127,6 +1127,7 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
1127
1127
  license: z.ZodDefault<z.ZodString>;
1128
1128
  homepage: z.ZodOptional<z.ZodString>;
1129
1129
  docs: z.ZodOptional<z.ZodString>;
1130
+ portal: z.ZodOptional<z.ZodString>;
1130
1131
  licensing: z.ZodOptional<z.ZodString>;
1131
1132
  contact: z.ZodOptional<z.ZodString>;
1132
1133
  support: z.ZodOptional<z.ZodString>;
@@ -2160,6 +2161,7 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
2160
2161
  repository?: string | undefined;
2161
2162
  homepage?: string | undefined;
2162
2163
  docs?: string | undefined;
2164
+ portal?: string | undefined;
2163
2165
  licensing?: string | undefined;
2164
2166
  contact?: string | undefined;
2165
2167
  support?: string | undefined;
@@ -2352,6 +2354,7 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
2352
2354
  license?: string | undefined;
2353
2355
  homepage?: string | undefined;
2354
2356
  docs?: string | undefined;
2357
+ portal?: string | undefined;
2355
2358
  licensing?: string | undefined;
2356
2359
  contact?: string | undefined;
2357
2360
  support?: string | undefined;