@storm-software/config 1.119.7 → 1.121.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,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.121.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,11 +9,17 @@
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
  },
15
20
  "error": {
16
- "codesFile": "tools/errors/codes.json"
21
+ "codesFile": "tools/errors/codes.json",
22
+ "url": "https://stormsoftware.com/api/errors"
17
23
  },
18
24
  "externalPackagePatterns": ["@storm-software/"],
19
25
  "registry": {
@@ -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;