@storm-software/config 1.121.15 → 1.122.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/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.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": {
@@ -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;