@storm-software/config 1.125.6 → 1.125.8
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 +14 -0
- package/README.md +1 -1
- package/dist/{chunk-C2KLOUYY.cjs → chunk-AT6TQLTD.cjs} +2 -4
- package/dist/{chunk-ABGOB6LC.js → chunk-HIMNLC45.js} +2 -4
- package/dist/define-config.d.cts +18 -18
- package/dist/define-config.d.ts +18 -18
- package/dist/index.cjs +2 -2
- package/dist/index.js +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +6 -6
- package/dist/schema.d.ts +6 -6
- package/dist/schema.js +1 -1
- package/package.json +3 -3
- package/presets/storm-software.json +4 -0
- package/src/schema.d.ts +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.125.7](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.7) (2025-07-10)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([113ca7595](https://github.com/storm-software/storm-ops/commit/113ca7595))
|
|
11
|
+
|
|
12
|
+
## [1.125.6](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.6) (2025-07-10)
|
|
13
|
+
|
|
14
|
+
### Miscellaneous
|
|
15
|
+
|
|
16
|
+
- **monorepo:** Regenerate README markdown files
|
|
17
|
+
([98723860a](https://github.com/storm-software/storm-ops/commit/98723860a))
|
|
18
|
+
|
|
5
19
|
## [1.125.5](https://github.com/storm-software/storm-ops/releases/tag/config%401.125.5) (2025-07-09)
|
|
6
20
|
|
|
7
21
|
### Bug Fixes
|
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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
|
@@ -6,8 +6,6 @@
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
9
|
var _chunk63N4QQ4Fcjs = require('./chunk-63N4QQ4F.cjs');
|
|
12
10
|
|
|
13
11
|
// src/schema.ts
|
|
@@ -110,13 +108,13 @@ var WorkspaceBotConfigSchema = z.object({
|
|
|
110
108
|
"The workspace's bot user's config used to automated various operations tasks"
|
|
111
109
|
);
|
|
112
110
|
var WorkspaceReleaseConfigSchema = z.object({
|
|
113
|
-
banner: z.string().trim().
|
|
111
|
+
banner: z.string().trim().optional().describe(
|
|
114
112
|
"A URL to a banner image used to display the workspace's release"
|
|
115
113
|
),
|
|
116
114
|
header: z.string().trim().optional().describe(
|
|
117
115
|
"A header message appended to the start of the workspace's release notes"
|
|
118
116
|
),
|
|
119
|
-
footer: z.string().trim().
|
|
117
|
+
footer: z.string().trim().optional().describe(
|
|
120
118
|
"A footer message appended to the end of the workspace's release notes"
|
|
121
119
|
)
|
|
122
120
|
}).describe("The workspace's release config used during the release process");
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import {
|
|
2
2
|
STORM_DEFAULT_ERROR_CODES_FILE,
|
|
3
|
-
STORM_DEFAULT_RELEASE_BANNER,
|
|
4
|
-
STORM_DEFAULT_RELEASE_FOOTER,
|
|
5
3
|
STORM_DEFAULT_SOCIAL_DISCORD,
|
|
6
4
|
STORM_DEFAULT_SOCIAL_GITHUB,
|
|
7
5
|
STORM_DEFAULT_SOCIAL_MEDIUM,
|
|
@@ -110,13 +108,13 @@ var WorkspaceBotConfigSchema = z.object({
|
|
|
110
108
|
"The workspace's bot user's config used to automated various operations tasks"
|
|
111
109
|
);
|
|
112
110
|
var WorkspaceReleaseConfigSchema = z.object({
|
|
113
|
-
banner: z.string().trim().
|
|
111
|
+
banner: z.string().trim().optional().describe(
|
|
114
112
|
"A URL to a banner image used to display the workspace's release"
|
|
115
113
|
),
|
|
116
114
|
header: z.string().trim().optional().describe(
|
|
117
115
|
"A header message appended to the start of the workspace's release notes"
|
|
118
116
|
),
|
|
119
|
-
footer: z.string().trim().
|
|
117
|
+
footer: z.string().trim().optional().describe(
|
|
120
118
|
"A footer message appended to the end of the workspace's release notes"
|
|
121
119
|
)
|
|
122
120
|
}).describe("The workspace's release config used during the release process");
|
package/dist/define-config.d.cts
CHANGED
|
@@ -40,21 +40,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
40
40
|
build?: string | undefined;
|
|
41
41
|
};
|
|
42
42
|
colors: {
|
|
43
|
-
dark?: string | undefined;
|
|
44
|
-
light?: string | undefined;
|
|
45
|
-
brand?: string | undefined;
|
|
46
|
-
alternate?: string | undefined;
|
|
47
|
-
accent?: string | undefined;
|
|
48
|
-
link?: string | undefined;
|
|
49
|
-
help?: string | undefined;
|
|
50
|
-
success?: string | undefined;
|
|
51
|
-
info?: string | undefined;
|
|
52
|
-
warning?: string | undefined;
|
|
53
|
-
danger?: string | undefined;
|
|
54
|
-
fatal?: string | undefined;
|
|
55
|
-
positive?: string | undefined;
|
|
56
|
-
negative?: string | undefined;
|
|
57
|
-
} | {
|
|
58
43
|
dark: {
|
|
59
44
|
foreground?: string | undefined;
|
|
60
45
|
background?: string | undefined;
|
|
@@ -87,7 +72,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
87
72
|
positive?: string | undefined;
|
|
88
73
|
negative?: string | undefined;
|
|
89
74
|
};
|
|
90
|
-
} |
|
|
75
|
+
} | {
|
|
91
76
|
dark?: string | undefined;
|
|
92
77
|
light?: string | undefined;
|
|
93
78
|
brand?: string | undefined;
|
|
@@ -102,7 +87,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
102
87
|
fatal?: string | undefined;
|
|
103
88
|
positive?: string | undefined;
|
|
104
89
|
negative?: string | undefined;
|
|
105
|
-
} | {
|
|
90
|
+
} | Record<string, {
|
|
106
91
|
dark: {
|
|
107
92
|
foreground?: string | undefined;
|
|
108
93
|
background?: string | undefined;
|
|
@@ -135,6 +120,21 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
135
120
|
positive?: string | undefined;
|
|
136
121
|
negative?: string | undefined;
|
|
137
122
|
};
|
|
123
|
+
} | {
|
|
124
|
+
dark?: string | undefined;
|
|
125
|
+
light?: string | undefined;
|
|
126
|
+
brand?: string | undefined;
|
|
127
|
+
alternate?: string | undefined;
|
|
128
|
+
accent?: string | undefined;
|
|
129
|
+
link?: string | undefined;
|
|
130
|
+
help?: string | undefined;
|
|
131
|
+
success?: string | undefined;
|
|
132
|
+
info?: string | undefined;
|
|
133
|
+
warning?: string | undefined;
|
|
134
|
+
danger?: string | undefined;
|
|
135
|
+
fatal?: string | undefined;
|
|
136
|
+
positive?: string | undefined;
|
|
137
|
+
negative?: string | undefined;
|
|
138
138
|
}>;
|
|
139
139
|
$schema?: string | undefined;
|
|
140
140
|
extends?: string | string[] | undefined;
|
|
@@ -163,7 +163,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
163
163
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
164
164
|
timezone?: string | undefined;
|
|
165
165
|
locale?: string | undefined;
|
|
166
|
-
logLevel?: "error" | "success" | "
|
|
166
|
+
logLevel?: "error" | "success" | "info" | "fatal" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
167
167
|
skipConfigLogging?: boolean | undefined;
|
|
168
168
|
registry?: {
|
|
169
169
|
github?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -40,21 +40,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
40
40
|
build?: string | undefined;
|
|
41
41
|
};
|
|
42
42
|
colors: {
|
|
43
|
-
dark?: string | undefined;
|
|
44
|
-
light?: string | undefined;
|
|
45
|
-
brand?: string | undefined;
|
|
46
|
-
alternate?: string | undefined;
|
|
47
|
-
accent?: string | undefined;
|
|
48
|
-
link?: string | undefined;
|
|
49
|
-
help?: string | undefined;
|
|
50
|
-
success?: string | undefined;
|
|
51
|
-
info?: string | undefined;
|
|
52
|
-
warning?: string | undefined;
|
|
53
|
-
danger?: string | undefined;
|
|
54
|
-
fatal?: string | undefined;
|
|
55
|
-
positive?: string | undefined;
|
|
56
|
-
negative?: string | undefined;
|
|
57
|
-
} | {
|
|
58
43
|
dark: {
|
|
59
44
|
foreground?: string | undefined;
|
|
60
45
|
background?: string | undefined;
|
|
@@ -87,7 +72,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
87
72
|
positive?: string | undefined;
|
|
88
73
|
negative?: string | undefined;
|
|
89
74
|
};
|
|
90
|
-
} |
|
|
75
|
+
} | {
|
|
91
76
|
dark?: string | undefined;
|
|
92
77
|
light?: string | undefined;
|
|
93
78
|
brand?: string | undefined;
|
|
@@ -102,7 +87,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
102
87
|
fatal?: string | undefined;
|
|
103
88
|
positive?: string | undefined;
|
|
104
89
|
negative?: string | undefined;
|
|
105
|
-
} | {
|
|
90
|
+
} | Record<string, {
|
|
106
91
|
dark: {
|
|
107
92
|
foreground?: string | undefined;
|
|
108
93
|
background?: string | undefined;
|
|
@@ -135,6 +120,21 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
135
120
|
positive?: string | undefined;
|
|
136
121
|
negative?: string | undefined;
|
|
137
122
|
};
|
|
123
|
+
} | {
|
|
124
|
+
dark?: string | undefined;
|
|
125
|
+
light?: string | undefined;
|
|
126
|
+
brand?: string | undefined;
|
|
127
|
+
alternate?: string | undefined;
|
|
128
|
+
accent?: string | undefined;
|
|
129
|
+
link?: string | undefined;
|
|
130
|
+
help?: string | undefined;
|
|
131
|
+
success?: string | undefined;
|
|
132
|
+
info?: string | undefined;
|
|
133
|
+
warning?: string | undefined;
|
|
134
|
+
danger?: string | undefined;
|
|
135
|
+
fatal?: string | undefined;
|
|
136
|
+
positive?: string | undefined;
|
|
137
|
+
negative?: string | undefined;
|
|
138
138
|
}>;
|
|
139
139
|
$schema?: string | undefined;
|
|
140
140
|
extends?: string | string[] | undefined;
|
|
@@ -163,7 +163,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
163
163
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
164
164
|
timezone?: string | undefined;
|
|
165
165
|
locale?: string | undefined;
|
|
166
|
-
logLevel?: "error" | "success" | "
|
|
166
|
+
logLevel?: "error" | "success" | "info" | "fatal" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
167
167
|
skipConfigLogging?: boolean | undefined;
|
|
168
168
|
registry?: {
|
|
169
169
|
github?: 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
|
|
21
|
+
var _chunkAT6TQLTDcjs = require('./chunk-AT6TQLTD.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 =
|
|
76
|
+
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkAT6TQLTDcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkAT6TQLTDcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkAT6TQLTDcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkAT6TQLTDcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkAT6TQLTDcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkAT6TQLTDcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkAT6TQLTDcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkAT6TQLTDcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_CONTACT = _chunk63N4QQ4Fcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunk63N4QQ4Fcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunk63N4QQ4Fcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunk63N4QQ4Fcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunk63N4QQ4Fcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunk63N4QQ4Fcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunk63N4QQ4Fcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunk63N4QQ4Fcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.STORM_DEFAULT_SOCIAL_DISCORD = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SOCIAL_DISCORD; exports.STORM_DEFAULT_SOCIAL_GITHUB = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SOCIAL_GITHUB; exports.STORM_DEFAULT_SOCIAL_MEDIUM = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SOCIAL_MEDIUM; exports.STORM_DEFAULT_SOCIAL_SLACK = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SOCIAL_SLACK; exports.STORM_DEFAULT_SOCIAL_TELEGRAM = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SOCIAL_TELEGRAM; exports.STORM_DEFAULT_SOCIAL_TWITTER = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SOCIAL_TWITTER; exports.STORM_DEFAULT_SUPPORT = _chunk63N4QQ4Fcjs.STORM_DEFAULT_SUPPORT; exports.SingleThemeColorConfigSchema = _chunkAT6TQLTDcjs.SingleThemeColorConfigSchema; exports.WorkspaceBotConfigSchema = _chunkAT6TQLTDcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkAT6TQLTDcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkAT6TQLTDcjs.WorkspaceReleaseConfigSchema; exports.WorkspaceSocialsConfigSchema = _chunkAT6TQLTDcjs.WorkspaceSocialsConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkAT6TQLTDcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkAT6TQLTDcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkAT6TQLTDcjs.stormWorkspaceConfigSchema;
|
package/dist/index.js
CHANGED
package/dist/schema.cjs
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkAT6TQLTDcjs = require('./chunk-AT6TQLTD.cjs');
|
|
19
19
|
require('./chunk-63N4QQ4F.cjs');
|
|
20
20
|
|
|
21
21
|
|
|
@@ -34,4 +34,4 @@ require('./chunk-63N4QQ4F.cjs');
|
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
exports.ColorConfigMapSchema =
|
|
37
|
+
exports.ColorConfigMapSchema = _chunkAT6TQLTDcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkAT6TQLTDcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkAT6TQLTDcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkAT6TQLTDcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkAT6TQLTDcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkAT6TQLTDcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkAT6TQLTDcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkAT6TQLTDcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkAT6TQLTDcjs.SingleThemeColorConfigSchema; exports.WorkspaceBotConfigSchema = _chunkAT6TQLTDcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkAT6TQLTDcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkAT6TQLTDcjs.WorkspaceReleaseConfigSchema; exports.WorkspaceSocialsConfigSchema = _chunkAT6TQLTDcjs.WorkspaceSocialsConfigSchema; exports.errorConfigSchema = _chunkAT6TQLTDcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkAT6TQLTDcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkAT6TQLTDcjs.stormWorkspaceConfigSchema;
|
package/dist/schema.d.cts
CHANGED
|
@@ -197,9 +197,9 @@ declare const WorkspaceBotConfigSchema: z.ZodObject<{
|
|
|
197
197
|
email: z.ZodDefault<z.ZodString>;
|
|
198
198
|
}, z.core.$strip>;
|
|
199
199
|
declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
|
|
200
|
-
banner: z.
|
|
200
|
+
banner: z.ZodOptional<z.ZodString>;
|
|
201
201
|
header: z.ZodOptional<z.ZodString>;
|
|
202
|
-
footer: z.
|
|
202
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
203
203
|
}, z.core.$strip>;
|
|
204
204
|
declare const WorkspaceSocialsConfigSchema: z.ZodObject<{
|
|
205
205
|
twitter: z.ZodDefault<z.ZodString>;
|
|
@@ -259,9 +259,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
259
259
|
email: z.ZodDefault<z.ZodString>;
|
|
260
260
|
}, z.core.$strip>;
|
|
261
261
|
release: z.ZodObject<{
|
|
262
|
-
banner: z.
|
|
262
|
+
banner: z.ZodOptional<z.ZodString>;
|
|
263
263
|
header: z.ZodOptional<z.ZodString>;
|
|
264
|
-
footer: z.
|
|
264
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
265
265
|
}, z.core.$strip>;
|
|
266
266
|
socials: z.ZodObject<{
|
|
267
267
|
twitter: z.ZodDefault<z.ZodString>;
|
|
@@ -301,10 +301,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
301
301
|
logLevel: z.ZodDefault<z.ZodEnum<{
|
|
302
302
|
error: "error";
|
|
303
303
|
success: "success";
|
|
304
|
-
|
|
304
|
+
info: "info";
|
|
305
305
|
fatal: "fatal";
|
|
306
|
+
silent: "silent";
|
|
306
307
|
warn: "warn";
|
|
307
|
-
info: "info";
|
|
308
308
|
debug: "debug";
|
|
309
309
|
trace: "trace";
|
|
310
310
|
all: "all";
|
package/dist/schema.d.ts
CHANGED
|
@@ -197,9 +197,9 @@ declare const WorkspaceBotConfigSchema: z.ZodObject<{
|
|
|
197
197
|
email: z.ZodDefault<z.ZodString>;
|
|
198
198
|
}, z.core.$strip>;
|
|
199
199
|
declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
|
|
200
|
-
banner: z.
|
|
200
|
+
banner: z.ZodOptional<z.ZodString>;
|
|
201
201
|
header: z.ZodOptional<z.ZodString>;
|
|
202
|
-
footer: z.
|
|
202
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
203
203
|
}, z.core.$strip>;
|
|
204
204
|
declare const WorkspaceSocialsConfigSchema: z.ZodObject<{
|
|
205
205
|
twitter: z.ZodDefault<z.ZodString>;
|
|
@@ -259,9 +259,9 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
259
259
|
email: z.ZodDefault<z.ZodString>;
|
|
260
260
|
}, z.core.$strip>;
|
|
261
261
|
release: z.ZodObject<{
|
|
262
|
-
banner: z.
|
|
262
|
+
banner: z.ZodOptional<z.ZodString>;
|
|
263
263
|
header: z.ZodOptional<z.ZodString>;
|
|
264
|
-
footer: z.
|
|
264
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
265
265
|
}, z.core.$strip>;
|
|
266
266
|
socials: z.ZodObject<{
|
|
267
267
|
twitter: z.ZodDefault<z.ZodString>;
|
|
@@ -301,10 +301,10 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
301
301
|
logLevel: z.ZodDefault<z.ZodEnum<{
|
|
302
302
|
error: "error";
|
|
303
303
|
success: "success";
|
|
304
|
-
|
|
304
|
+
info: "info";
|
|
305
305
|
fatal: "fatal";
|
|
306
|
+
silent: "silent";
|
|
306
307
|
warn: "warn";
|
|
307
|
-
info: "info";
|
|
308
308
|
debug: "debug";
|
|
309
309
|
trace: "trace";
|
|
310
310
|
all: "all";
|
package/dist/schema.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.125.
|
|
3
|
+
"version": "1.125.8",
|
|
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": {
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
86
|
"types": "./dist/index.d.ts",
|
|
87
|
-
"dependencies": { "zod": "^
|
|
87
|
+
"dependencies": { "zod": "^4.0.2" },
|
|
88
88
|
"devDependencies": { "tsup": "8.4.0" },
|
|
89
89
|
"publishConfig": { "access": "public" },
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "a8ed9927e278fdcef751286a496cea6a4727208a"
|
|
91
91
|
}
|
|
@@ -43,6 +43,10 @@
|
|
|
43
43
|
"cyclone": "https://registry.cyclone-ui.com/components",
|
|
44
44
|
"container": "https://hub.docker.com"
|
|
45
45
|
},
|
|
46
|
+
"release": {
|
|
47
|
+
"banner": "https://public.storm-cdn.com/brand-banner.png",
|
|
48
|
+
"footer": "Storm 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!"
|
|
49
|
+
},
|
|
46
50
|
"colors": {
|
|
47
51
|
"light": {
|
|
48
52
|
"background": "#fafafa",
|
package/src/schema.d.ts
CHANGED
|
@@ -196,9 +196,9 @@ export declare const WorkspaceBotConfigSchema: z.ZodObject<{
|
|
|
196
196
|
email: z.ZodDefault<z.ZodString>;
|
|
197
197
|
}, z.core.$strip>;
|
|
198
198
|
export declare const WorkspaceReleaseConfigSchema: z.ZodObject<{
|
|
199
|
-
banner: z.
|
|
199
|
+
banner: z.ZodOptional<z.ZodString>;
|
|
200
200
|
header: z.ZodOptional<z.ZodString>;
|
|
201
|
-
footer: z.
|
|
201
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
202
202
|
}, z.core.$strip>;
|
|
203
203
|
export declare const WorkspaceSocialsConfigSchema: z.ZodObject<{
|
|
204
204
|
twitter: z.ZodDefault<z.ZodString>;
|
|
@@ -258,9 +258,9 @@ export declare const stormWorkspaceConfigSchema: z.ZodObject<{
|
|
|
258
258
|
email: z.ZodDefault<z.ZodString>;
|
|
259
259
|
}, z.core.$strip>;
|
|
260
260
|
release: z.ZodObject<{
|
|
261
|
-
banner: z.
|
|
261
|
+
banner: z.ZodOptional<z.ZodString>;
|
|
262
262
|
header: z.ZodOptional<z.ZodString>;
|
|
263
|
-
footer: z.
|
|
263
|
+
footer: z.ZodOptional<z.ZodString>;
|
|
264
264
|
}, z.core.$strip>;
|
|
265
265
|
socials: z.ZodObject<{
|
|
266
266
|
twitter: z.ZodDefault<z.ZodString>;
|