@storm-software/config 1.119.7 → 1.120.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,12 @@
2
2
 
3
3
  # Changelog for Storm Ops - Config
4
4
 
5
+ ## [1.119.7](https://github.com/storm-software/storm-ops/releases/tag/config%401.119.7) (2025-05-13)
6
+
7
+ ### Miscellaneous
8
+
9
+ - **monorepo:** Regenerate README markdown files
10
+
5
11
  ## [1.119.6](https://github.com/storm-software/storm-ops/releases/tag/config%401.119.6) (2025-05-09)
6
12
 
7
13
  ### 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.119.6-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.119.7-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 -->
@@ -5,14 +5,10 @@ import {
5
5
  STORM_DEFAULT_ACCOUNT_SLACK,
6
6
  STORM_DEFAULT_ACCOUNT_TELEGRAM,
7
7
  STORM_DEFAULT_ACCOUNT_TWITTER,
8
- STORM_DEFAULT_CONTACT,
9
- STORM_DEFAULT_DOCS,
10
8
  STORM_DEFAULT_ERROR_CODES_FILE,
11
- STORM_DEFAULT_HOMEPAGE,
12
- STORM_DEFAULT_LICENSING,
13
9
  STORM_DEFAULT_RELEASE_BANNER,
14
10
  STORM_DEFAULT_RELEASE_FOOTER
15
- } from "./chunk-PQP7SKBB.js";
11
+ } from "./chunk-X3RNGA5B.js";
16
12
 
17
13
  // src/schema.ts
18
14
  import z from "zod";
@@ -170,10 +166,13 @@ var stormWorkspaceConfigSchema = z.object({
170
166
  organization: z.string().trim().default("storm-software").describe("The organization of the workspace"),
171
167
  repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
172
168
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
173
- homepage: z.string().trim().url().default(STORM_DEFAULT_HOMEPAGE).describe("The homepage of the workspace"),
174
- docs: z.string().trim().url().default(STORM_DEFAULT_DOCS).describe("The base documentation site for the workspace"),
175
- licensing: z.string().trim().url().default(STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
176
- contact: z.string().trim().url().default(STORM_DEFAULT_CONTACT).describe("The base contact site for the workspace"),
169
+ homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
170
+ docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
171
+ licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
172
+ contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
173
+ support: z.string().trim().url().optional().describe(
174
+ "The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
175
+ ),
177
176
  branch: z.string().trim().default("main").describe("The branch of the workspace"),
178
177
  preid: z.string().optional().describe("A tag specifying the version pre-release identifier"),
179
178
  owner: z.string().trim().default("@storm-software/admin").describe("The owner of the package"),
@@ -1,8 +1,9 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/constants.ts
2
- var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
2
+ var STORM_DEFAULT_DOCS = "https://stormsoftware.com/docs";
3
3
  var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
4
4
  var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
5
- var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
5
+ var STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
6
+ var STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
6
7
  var STORM_DEFAULT_LICENSE = "Apache-2.0";
7
8
  var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
8
9
  var STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
@@ -35,4 +36,5 @@ var STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
35
36
 
36
37
 
37
38
 
38
- exports.STORM_DEFAULT_DOCS = STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_CONTACT = STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_LICENSING = STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_LICENSE = STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_RELEASE_BANNER = STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_ACCOUNT_TWITTER = STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_ACCOUNT_DISCORD = STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_SLACK = STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_GITHUB = STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_RELEASE_FOOTER = STORM_DEFAULT_RELEASE_FOOTER; exports.STORM_DEFAULT_ERROR_CODES_FILE = STORM_DEFAULT_ERROR_CODES_FILE;
39
+
40
+ exports.STORM_DEFAULT_DOCS = STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_HOMEPAGE = STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_CONTACT = STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_SUPPORT = STORM_DEFAULT_SUPPORT; exports.STORM_DEFAULT_LICENSING = STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_LICENSE = STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_RELEASE_BANNER = STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_ACCOUNT_TWITTER = STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_ACCOUNT_DISCORD = STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_SLACK = STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_GITHUB = STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_RELEASE_FOOTER = STORM_DEFAULT_RELEASE_FOOTER; exports.STORM_DEFAULT_ERROR_CODES_FILE = STORM_DEFAULT_ERROR_CODES_FILE;
@@ -8,11 +8,7 @@
8
8
 
9
9
 
10
10
 
11
-
12
-
13
-
14
-
15
- var _chunkHAADVBHVcjs = require('./chunk-HAADVBHV.cjs');
11
+ var _chunkHPEJ52UXcjs = require('./chunk-HPEJ52UX.cjs');
16
12
 
17
13
  // src/schema.ts
18
14
  var _zod = require('zod'); var _zod2 = _interopRequireDefault(_zod);
@@ -114,23 +110,23 @@ var WorkspaceBotConfigSchema = _zod2.default.object({
114
110
  "The workspace's bot user's config used to automated various operations tasks"
115
111
  );
116
112
  var WorkspaceReleaseConfigSchema = _zod2.default.object({
117
- banner: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_BANNER).describe(
113
+ banner: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_BANNER).describe(
118
114
  "A URL to a banner image used to display the workspace's release"
119
115
  ),
120
116
  header: _zod2.default.string().trim().optional().describe(
121
117
  "A header message appended to the start of the workspace's release notes"
122
118
  ),
123
- footer: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_FOOTER).describe(
119
+ footer: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_RELEASE_FOOTER).describe(
124
120
  "A footer message appended to the end of the workspace's release notes"
125
121
  )
126
122
  }).describe("The workspace's release config used during the release process");
127
123
  var WorkspaceAccountConfigSchema = _zod2.default.object({
128
- twitter: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TWITTER).describe("A Twitter/X account associated with the organization/project"),
129
- discord: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_DISCORD).describe("A Discord account associated with the organization/project"),
130
- telegram: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM).describe("A Telegram account associated with the organization/project"),
131
- slack: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_SLACK).describe("A Slack account associated with the organization/project"),
132
- medium: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_MEDIUM).describe("A Medium account associated with the organization/project"),
133
- github: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_GITHUB).describe("A GitHub account associated with the organization/project")
124
+ twitter: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TWITTER).describe("A Twitter/X account associated with the organization/project"),
125
+ discord: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_DISCORD).describe("A Discord account associated with the organization/project"),
126
+ telegram: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM).describe("A Telegram account associated with the organization/project"),
127
+ slack: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_SLACK).describe("A Slack account associated with the organization/project"),
128
+ medium: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_MEDIUM).describe("A Medium account associated with the organization/project"),
129
+ github: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ACCOUNT_GITHUB).describe("A GitHub account associated with the organization/project")
134
130
  }).describe(
135
131
  "The workspace's account config used to store various social media links"
136
132
  );
@@ -151,7 +147,7 @@ var WorkspaceDirectoryConfigSchema = _zod2.default.object({
151
147
  "Various directories used by the workspace to store data, cache, and configuration files"
152
148
  );
153
149
  var errorConfigSchema = _zod2.default.object({
154
- codesFile: _zod2.default.string().trim().default(_chunkHAADVBHVcjs.STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
150
+ codesFile: _zod2.default.string().trim().default(_chunkHPEJ52UXcjs.STORM_DEFAULT_ERROR_CODES_FILE).describe("The path to the workspace's error codes JSON file"),
155
151
  url: _zod2.default.string().trim().url().optional().describe(
156
152
  "A URL to a page that looks up the workspace's error messages given a specific error code"
157
153
  )
@@ -170,10 +166,13 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
170
166
  organization: _zod2.default.string().trim().default("storm-software").describe("The organization of the workspace"),
171
167
  repository: _zod2.default.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
172
168
  license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
173
- homepage: _zod2.default.string().trim().url().default(_chunkHAADVBHVcjs.STORM_DEFAULT_HOMEPAGE).describe("The homepage of the workspace"),
174
- docs: _zod2.default.string().trim().url().default(_chunkHAADVBHVcjs.STORM_DEFAULT_DOCS).describe("The base documentation site for the workspace"),
175
- licensing: _zod2.default.string().trim().url().default(_chunkHAADVBHVcjs.STORM_DEFAULT_LICENSING).describe("The base licensing site for the workspace"),
176
- contact: _zod2.default.string().trim().url().default(_chunkHAADVBHVcjs.STORM_DEFAULT_CONTACT).describe("The base contact site for the workspace"),
169
+ homepage: _zod2.default.string().trim().url().optional().describe("The homepage of the workspace"),
170
+ docs: _zod2.default.string().trim().url().optional().describe("The documentation site for the workspace"),
171
+ licensing: _zod2.default.string().trim().url().optional().describe("The licensing site for the workspace"),
172
+ contact: _zod2.default.string().trim().url().optional().describe("The contact site for the workspace"),
173
+ support: _zod2.default.string().trim().url().optional().describe(
174
+ "The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
175
+ ),
177
176
  branch: _zod2.default.string().trim().default("main").describe("The branch of the workspace"),
178
177
  preid: _zod2.default.string().optional().describe("A tag specifying the version pre-release identifier"),
179
178
  owner: _zod2.default.string().trim().default("@storm-software/admin").describe("The owner of the package"),
@@ -1,8 +1,9 @@
1
1
  // src/constants.ts
2
- var STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
2
+ var STORM_DEFAULT_DOCS = "https://stormsoftware.com/docs";
3
3
  var STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
4
4
  var STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
5
- var STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
5
+ var STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
6
+ var STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
6
7
  var STORM_DEFAULT_LICENSE = "Apache-2.0";
7
8
  var STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
8
9
  var STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
@@ -24,6 +25,7 @@ export {
24
25
  STORM_DEFAULT_DOCS,
25
26
  STORM_DEFAULT_HOMEPAGE,
26
27
  STORM_DEFAULT_CONTACT,
28
+ STORM_DEFAULT_SUPPORT,
27
29
  STORM_DEFAULT_LICENSING,
28
30
  STORM_DEFAULT_LICENSE,
29
31
  STORM_DEFAULT_RELEASE_BANNER,
@@ -13,8 +13,8 @@
13
13
 
14
14
 
15
15
 
16
- var _chunkHAADVBHVcjs = require('./chunk-HAADVBHV.cjs');
17
16
 
17
+ var _chunkHPEJ52UXcjs = require('./chunk-HPEJ52UX.cjs');
18
18
 
19
19
 
20
20
 
@@ -29,4 +29,6 @@ var _chunkHAADVBHVcjs = require('./chunk-HAADVBHV.cjs');
29
29
 
30
30
 
31
31
 
32
- exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkHAADVBHVcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkHAADVBHVcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkHAADVBHVcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkHAADVBHVcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkHAADVBHVcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkHAADVBHVcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_FOOTER;
32
+
33
+
34
+ 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;
@@ -1,7 +1,8 @@
1
- declare const STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
1
+ declare const STORM_DEFAULT_DOCS = "https://stormsoftware.com/docs";
2
2
  declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
3
3
  declare const STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
4
- declare const STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
4
+ declare const STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
5
+ declare const STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
5
6
  declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
6
7
  declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
7
8
  declare const STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
@@ -13,4 +14,4 @@ declare const STORM_DEFAULT_ACCOUNT_GITHUB = "https://github.com/storm-software"
13
14
  declare const STORM_DEFAULT_RELEASE_FOOTER = "\nStorm Software is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.\n\nJoin us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.\n\nIf this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!\n";
14
15
  declare const STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
15
16
 
16
- export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER };
17
+ export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER, STORM_DEFAULT_SUPPORT };
@@ -1,7 +1,8 @@
1
- declare const STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
1
+ declare const STORM_DEFAULT_DOCS = "https://stormsoftware.com/docs";
2
2
  declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
3
3
  declare const STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
4
- declare const STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
4
+ declare const STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
5
+ declare const STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
5
6
  declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
6
7
  declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
7
8
  declare const STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
@@ -13,4 +14,4 @@ declare const STORM_DEFAULT_ACCOUNT_GITHUB = "https://github.com/storm-software"
13
14
  declare const STORM_DEFAULT_RELEASE_FOOTER = "\nStorm Software is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.\n\nJoin us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.\n\nIf this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!\n";
14
15
  declare const STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
15
16
 
16
- export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER };
17
+ export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER, STORM_DEFAULT_SUPPORT };
package/dist/constants.js CHANGED
@@ -12,8 +12,9 @@ import {
12
12
  STORM_DEFAULT_LICENSE,
13
13
  STORM_DEFAULT_LICENSING,
14
14
  STORM_DEFAULT_RELEASE_BANNER,
15
- STORM_DEFAULT_RELEASE_FOOTER
16
- } from "./chunk-PQP7SKBB.js";
15
+ STORM_DEFAULT_RELEASE_FOOTER,
16
+ STORM_DEFAULT_SUPPORT
17
+ } from "./chunk-X3RNGA5B.js";
17
18
  export {
18
19
  STORM_DEFAULT_ACCOUNT_DISCORD,
19
20
  STORM_DEFAULT_ACCOUNT_GITHUB,
@@ -28,5 +29,6 @@ export {
28
29
  STORM_DEFAULT_LICENSE,
29
30
  STORM_DEFAULT_LICENSING,
30
31
  STORM_DEFAULT_RELEASE_BANNER,
31
- STORM_DEFAULT_RELEASE_FOOTER
32
+ STORM_DEFAULT_RELEASE_FOOTER,
33
+ STORM_DEFAULT_SUPPORT
32
34
  };
@@ -197,6 +197,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
197
197
  docs?: string | undefined;
198
198
  licensing?: string | undefined;
199
199
  contact?: string | undefined;
200
+ support?: string | undefined;
200
201
  branch?: string | undefined;
201
202
  preid?: string | undefined;
202
203
  owner?: string | undefined;
@@ -197,6 +197,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
197
197
  docs?: string | undefined;
198
198
  licensing?: string | undefined;
199
199
  contact?: string | undefined;
200
+ support?: string | undefined;
200
201
  branch?: string | undefined;
201
202
  preid?: string | undefined;
202
203
  owner?: 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 _chunkLBKZPA5Dcjs = require('./chunk-LBKZPA5D.cjs');
20
+ var _chunkVCBBW6S7cjs = require('./chunk-VCBBW6S7.cjs');
21
21
 
22
22
 
23
23
 
@@ -33,7 +33,8 @@ var _chunkLBKZPA5Dcjs = require('./chunk-LBKZPA5D.cjs');
33
33
 
34
34
 
35
35
 
36
- var _chunkHAADVBHVcjs = require('./chunk-HAADVBHV.cjs');
36
+
37
+ var _chunkHPEJ52UXcjs = require('./chunk-HPEJ52UX.cjs');
37
38
 
38
39
 
39
40
  var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
@@ -69,4 +70,5 @@ var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
69
70
 
70
71
 
71
72
 
72
- exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkLBKZPA5Dcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkLBKZPA5Dcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkLBKZPA5Dcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkLBKZPA5Dcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkLBKZPA5Dcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkLBKZPA5Dcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkLBKZPA5Dcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkLBKZPA5Dcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkHAADVBHVcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkHAADVBHVcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkHAADVBHVcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkHAADVBHVcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkHAADVBHVcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkHAADVBHVcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkHAADVBHVcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkHAADVBHVcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.SingleThemeColorConfigSchema = _chunkLBKZPA5Dcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkLBKZPA5Dcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkLBKZPA5Dcjs.stormWorkspaceConfigSchema;
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;
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER } from './constants.cjs';
1
+ export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER, STORM_DEFAULT_SUPPORT } from './constants.cjs';
2
2
  export { defineConfig } from './define-config.cjs';
3
3
  export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, WorkspaceAccountConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema, errorConfigSchema, stormWorkspaceConfigSchema } from './schema.cjs';
4
4
  export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.cjs';
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER } from './constants.js';
1
+ export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFAULT_ACCOUNT_MEDIUM, STORM_DEFAULT_ACCOUNT_SLACK, STORM_DEFAULT_ACCOUNT_TELEGRAM, STORM_DEFAULT_ACCOUNT_TWITTER, STORM_DEFAULT_CONTACT, STORM_DEFAULT_DOCS, STORM_DEFAULT_ERROR_CODES_FILE, STORM_DEFAULT_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER, STORM_DEFAULT_SUPPORT } from './constants.js';
2
2
  export { defineConfig } from './define-config.js';
3
3
  export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, WorkspaceAccountConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema, errorConfigSchema, stormWorkspaceConfigSchema } from './schema.js';
4
4
  export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.js';
package/dist/index.js CHANGED
@@ -17,7 +17,7 @@ import {
17
17
  WorkspaceReleaseConfigSchema,
18
18
  errorConfigSchema,
19
19
  stormWorkspaceConfigSchema
20
- } from "./chunk-6TJI3DKA.js";
20
+ } from "./chunk-6AI6N4A2.js";
21
21
  import {
22
22
  STORM_DEFAULT_ACCOUNT_DISCORD,
23
23
  STORM_DEFAULT_ACCOUNT_GITHUB,
@@ -32,8 +32,9 @@ import {
32
32
  STORM_DEFAULT_LICENSE,
33
33
  STORM_DEFAULT_LICENSING,
34
34
  STORM_DEFAULT_RELEASE_BANNER,
35
- STORM_DEFAULT_RELEASE_FOOTER
36
- } from "./chunk-PQP7SKBB.js";
35
+ STORM_DEFAULT_RELEASE_FOOTER,
36
+ STORM_DEFAULT_SUPPORT
37
+ } from "./chunk-X3RNGA5B.js";
37
38
  import {
38
39
  COLOR_KEYS
39
40
  } from "./chunk-HFZRRAQB.js";
@@ -61,6 +62,7 @@ export {
61
62
  STORM_DEFAULT_LICENSING,
62
63
  STORM_DEFAULT_RELEASE_BANNER,
63
64
  STORM_DEFAULT_RELEASE_FOOTER,
65
+ STORM_DEFAULT_SUPPORT,
64
66
  SingleThemeColorConfigSchema,
65
67
  WorkspaceAccountConfigSchema,
66
68
  WorkspaceBotConfigSchema,
package/dist/schema.cjs CHANGED
@@ -14,8 +14,8 @@
14
14
 
15
15
 
16
16
 
17
- var _chunkLBKZPA5Dcjs = require('./chunk-LBKZPA5D.cjs');
18
- require('./chunk-HAADVBHV.cjs');
17
+ var _chunkVCBBW6S7cjs = require('./chunk-VCBBW6S7.cjs');
18
+ require('./chunk-HPEJ52UX.cjs');
19
19
 
20
20
 
21
21
 
@@ -32,4 +32,4 @@ require('./chunk-HAADVBHV.cjs');
32
32
 
33
33
 
34
34
 
35
- exports.ColorConfigMapSchema = _chunkLBKZPA5Dcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkLBKZPA5Dcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkLBKZPA5Dcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkLBKZPA5Dcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkLBKZPA5Dcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkLBKZPA5Dcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkLBKZPA5Dcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkLBKZPA5Dcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkLBKZPA5Dcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkLBKZPA5Dcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkLBKZPA5Dcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkLBKZPA5Dcjs.stormWorkspaceConfigSchema;
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;
package/dist/schema.d.cts CHANGED
@@ -1126,10 +1126,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1126
1126
  organization: z.ZodDefault<z.ZodString>;
1127
1127
  repository: z.ZodOptional<z.ZodString>;
1128
1128
  license: z.ZodDefault<z.ZodString>;
1129
- homepage: z.ZodDefault<z.ZodString>;
1130
- docs: z.ZodDefault<z.ZodString>;
1131
- licensing: z.ZodDefault<z.ZodString>;
1132
- contact: z.ZodDefault<z.ZodString>;
1129
+ homepage: z.ZodOptional<z.ZodString>;
1130
+ docs: z.ZodOptional<z.ZodString>;
1131
+ licensing: z.ZodOptional<z.ZodString>;
1132
+ contact: z.ZodOptional<z.ZodString>;
1133
+ support: z.ZodOptional<z.ZodString>;
1133
1134
  branch: z.ZodDefault<z.ZodString>;
1134
1135
  preid: z.ZodOptional<z.ZodString>;
1135
1136
  owner: z.ZodDefault<z.ZodString>;
@@ -1958,10 +1959,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1958
1959
  }, "strip", z.ZodTypeAny, {
1959
1960
  organization: string;
1960
1961
  license: string;
1961
- homepage: string;
1962
- docs: string;
1963
- licensing: string;
1964
- contact: string;
1965
1962
  branch: string;
1966
1963
  owner: string;
1967
1964
  bot: {
@@ -2162,6 +2159,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
2162
2159
  extends?: string | string[] | undefined;
2163
2160
  namespace?: string | undefined;
2164
2161
  repository?: string | undefined;
2162
+ homepage?: string | undefined;
2163
+ docs?: string | undefined;
2164
+ licensing?: string | undefined;
2165
+ contact?: string | undefined;
2166
+ support?: string | undefined;
2165
2167
  preid?: string | undefined;
2166
2168
  skipConfigLogging?: boolean | undefined;
2167
2169
  }, {
@@ -2353,6 +2355,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
2353
2355
  docs?: string | undefined;
2354
2356
  licensing?: string | undefined;
2355
2357
  contact?: string | undefined;
2358
+ support?: string | undefined;
2356
2359
  branch?: string | undefined;
2357
2360
  preid?: string | undefined;
2358
2361
  owner?: string | undefined;
package/dist/schema.d.ts CHANGED
@@ -1126,10 +1126,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1126
1126
  organization: z.ZodDefault<z.ZodString>;
1127
1127
  repository: z.ZodOptional<z.ZodString>;
1128
1128
  license: z.ZodDefault<z.ZodString>;
1129
- homepage: z.ZodDefault<z.ZodString>;
1130
- docs: z.ZodDefault<z.ZodString>;
1131
- licensing: z.ZodDefault<z.ZodString>;
1132
- contact: z.ZodDefault<z.ZodString>;
1129
+ homepage: z.ZodOptional<z.ZodString>;
1130
+ docs: z.ZodOptional<z.ZodString>;
1131
+ licensing: z.ZodOptional<z.ZodString>;
1132
+ contact: z.ZodOptional<z.ZodString>;
1133
+ support: z.ZodOptional<z.ZodString>;
1133
1134
  branch: z.ZodDefault<z.ZodString>;
1134
1135
  preid: z.ZodOptional<z.ZodString>;
1135
1136
  owner: z.ZodDefault<z.ZodString>;
@@ -1958,10 +1959,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1958
1959
  }, "strip", z.ZodTypeAny, {
1959
1960
  organization: string;
1960
1961
  license: string;
1961
- homepage: string;
1962
- docs: string;
1963
- licensing: string;
1964
- contact: string;
1965
1962
  branch: string;
1966
1963
  owner: string;
1967
1964
  bot: {
@@ -2162,6 +2159,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
2162
2159
  extends?: string | string[] | undefined;
2163
2160
  namespace?: string | undefined;
2164
2161
  repository?: string | undefined;
2162
+ homepage?: string | undefined;
2163
+ docs?: string | undefined;
2164
+ licensing?: string | undefined;
2165
+ contact?: string | undefined;
2166
+ support?: string | undefined;
2165
2167
  preid?: string | undefined;
2166
2168
  skipConfigLogging?: boolean | undefined;
2167
2169
  }, {
@@ -2353,6 +2355,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
2353
2355
  docs?: string | undefined;
2354
2356
  licensing?: string | undefined;
2355
2357
  contact?: string | undefined;
2358
+ support?: string | undefined;
2356
2359
  branch?: string | undefined;
2357
2360
  preid?: string | undefined;
2358
2361
  owner?: string | undefined;
package/dist/schema.js CHANGED
@@ -14,8 +14,8 @@ import {
14
14
  WorkspaceReleaseConfigSchema,
15
15
  errorConfigSchema,
16
16
  stormWorkspaceConfigSchema
17
- } from "./chunk-6TJI3DKA.js";
18
- import "./chunk-PQP7SKBB.js";
17
+ } from "./chunk-6AI6N4A2.js";
18
+ import "./chunk-X3RNGA5B.js";
19
19
  export {
20
20
  ColorConfigMapSchema,
21
21
  ColorConfigSchema,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/config",
3
- "version": "1.119.7",
3
+ "version": "1.120.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": {
@@ -9,6 +9,11 @@
9
9
  "logLevel": "info",
10
10
  "skipConfigLogging": true,
11
11
  "skipCache": false,
12
+ "homepage": "https://stormsoftware.com",
13
+ "docs": "https://stormsoftware.com/docs",
14
+ "licensing": "https://stormsoftware.com/license",
15
+ "contact": "https://stormsoftware.com/contact",
16
+ "support": "https://stormsoftware.com/support",
12
17
  "directories": {
13
18
  "build": "dist"
14
19
  },
@@ -63,26 +63,27 @@
63
63
  "homepage": {
64
64
  "type": "string",
65
65
  "format": "uri",
66
- "default": "https://stormsoftware.com",
67
66
  "description": "The homepage of the workspace"
68
67
  },
69
68
  "docs": {
70
69
  "type": "string",
71
70
  "format": "uri",
72
- "default": "https://docs.stormsoftware.com",
73
- "description": "The base documentation site for the workspace"
71
+ "description": "The documentation site for the workspace"
74
72
  },
75
73
  "licensing": {
76
74
  "type": "string",
77
75
  "format": "uri",
78
- "default": "https://license.stormsoftware.com",
79
- "description": "The base licensing site for the workspace"
76
+ "description": "The licensing site for the workspace"
80
77
  },
81
78
  "contact": {
82
79
  "type": "string",
83
80
  "format": "uri",
84
- "default": "https://stormsoftware.com/contact",
85
- "description": "The base contact site for the workspace"
81
+ "description": "The contact site for the workspace"
82
+ },
83
+ "support": {
84
+ "type": "string",
85
+ "format": "uri",
86
+ "description": "The support site for the workspace. If not provided, this is defaulted to the `contact` config value"
86
87
  },
87
88
  "branch": {
88
89
  "type": "string",
@@ -1,7 +1,8 @@
1
- export declare const STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
1
+ export declare const STORM_DEFAULT_DOCS = "https://stormsoftware.com/docs";
2
2
  export declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
3
3
  export declare const STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
4
- export declare const STORM_DEFAULT_LICENSING = "https://license.stormsoftware.com";
4
+ export declare const STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
5
+ export declare const STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
5
6
  export declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
6
7
  export declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
7
8
  export declare const STORM_DEFAULT_ACCOUNT_TWITTER = "StormSoftwareHQ";
@@ -194,6 +194,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
194
194
  docs?: string | undefined;
195
195
  licensing?: string | undefined;
196
196
  contact?: string | undefined;
197
+ support?: string | undefined;
197
198
  branch?: string | undefined;
198
199
  preid?: string | undefined;
199
200
  owner?: string | undefined;
package/src/schema.d.ts CHANGED
@@ -1125,10 +1125,11 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
1125
1125
  organization: z.ZodDefault<z.ZodString>;
1126
1126
  repository: z.ZodOptional<z.ZodString>;
1127
1127
  license: z.ZodDefault<z.ZodString>;
1128
- homepage: z.ZodDefault<z.ZodString>;
1129
- docs: z.ZodDefault<z.ZodString>;
1130
- licensing: z.ZodDefault<z.ZodString>;
1131
- contact: z.ZodDefault<z.ZodString>;
1128
+ homepage: z.ZodOptional<z.ZodString>;
1129
+ docs: z.ZodOptional<z.ZodString>;
1130
+ licensing: z.ZodOptional<z.ZodString>;
1131
+ contact: z.ZodOptional<z.ZodString>;
1132
+ support: z.ZodOptional<z.ZodString>;
1132
1133
  branch: z.ZodDefault<z.ZodString>;
1133
1134
  preid: z.ZodOptional<z.ZodString>;
1134
1135
  owner: z.ZodDefault<z.ZodString>;
@@ -1957,10 +1958,6 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
1957
1958
  }, "strip", z.ZodTypeAny, {
1958
1959
  organization: string;
1959
1960
  license: string;
1960
- homepage: string;
1961
- docs: string;
1962
- licensing: string;
1963
- contact: string;
1964
1961
  branch: string;
1965
1962
  owner: string;
1966
1963
  bot: {
@@ -2161,6 +2158,11 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
2161
2158
  extends?: string | string[] | undefined;
2162
2159
  namespace?: string | undefined;
2163
2160
  repository?: string | undefined;
2161
+ homepage?: string | undefined;
2162
+ docs?: string | undefined;
2163
+ licensing?: string | undefined;
2164
+ contact?: string | undefined;
2165
+ support?: string | undefined;
2164
2166
  preid?: string | undefined;
2165
2167
  skipConfigLogging?: boolean | undefined;
2166
2168
  }, {
@@ -2352,6 +2354,7 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
2352
2354
  docs?: string | undefined;
2353
2355
  licensing?: string | undefined;
2354
2356
  contact?: string | undefined;
2357
+ support?: string | undefined;
2355
2358
  branch?: string | undefined;
2356
2359
  preid?: string | undefined;
2357
2360
  owner?: string | undefined;