@storm-software/config 1.122.8 → 1.123.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 +7 -0
- package/README.md +1 -1
- package/dist/{chunk-RTIWPBE6.js → chunk-2ZLWK5GA.js} +13 -1
- package/dist/{chunk-YZ4LXHOB.cjs → chunk-OSCIEGSV.cjs} +14 -2
- package/dist/define-config.d.cts +85 -79
- package/dist/define-config.d.ts +85 -79
- package/dist/index.cjs +4 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -1
- package/dist/schema.cjs +4 -2
- package/dist/schema.d.cts +684 -635
- package/dist/schema.d.ts +684 -635
- package/dist/schema.js +3 -1
- package/dist/types.d.cts +4 -2
- package/dist/types.d.ts +4 -2
- package/package.json +1 -1
- package/presets/storm-software.json +7 -1
- package/schemas/storm-workspace.schema.json +38 -3
- package/src/define-config.d.ts +7 -1
- package/src/schema.d.ts +52 -3
- package/src/types.d.ts +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.122.8](https://github.com/storm-software/storm-ops/releases/tag/config%401.122.8) (2025-06-18)
|
|
6
|
+
|
|
7
|
+
### Miscellaneous
|
|
8
|
+
|
|
9
|
+
- **monorepo:** Regenerate README markdown files
|
|
10
|
+
([0975b603d](https://github.com/storm-software/storm-ops/commit/0975b603d))
|
|
11
|
+
|
|
5
12
|
## [1.122.7](https://github.com/storm-software/storm-ops/releases/tag/config%401.122.7) (2025-06-18)
|
|
6
13
|
|
|
7
14
|
### 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
|
-
[](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 -->
|
|
@@ -152,6 +152,15 @@ var errorConfigSchema = z.object({
|
|
|
152
152
|
"A URL to a page that looks up the workspace's error messages given a specific error code"
|
|
153
153
|
)
|
|
154
154
|
}).describe("The workspace's error config used during the error process");
|
|
155
|
+
var organizationConfigSchema = z.object({
|
|
156
|
+
name: z.string().trim().describe("The name of the organization"),
|
|
157
|
+
description: z.string().trim().optional().describe("A description of the organization"),
|
|
158
|
+
logo: z.string().trim().url().optional().describe("A URL to the organization's logo image"),
|
|
159
|
+
icon: z.string().trim().url().optional().describe("A URL to the organization's icon image"),
|
|
160
|
+
url: z.string().trim().url().optional().describe(
|
|
161
|
+
"A URL to a page that provides more information about the organization"
|
|
162
|
+
)
|
|
163
|
+
}).describe("The workspace's organization details");
|
|
155
164
|
var stormWorkspaceConfigSchema = z.object({
|
|
156
165
|
$schema: z.string().trim().default(
|
|
157
166
|
"https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json"
|
|
@@ -163,7 +172,9 @@ var stormWorkspaceConfigSchema = z.object({
|
|
|
163
172
|
"The name of the service/package/scope using this configuration"
|
|
164
173
|
),
|
|
165
174
|
namespace: z.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
166
|
-
organization: z.string().trim().
|
|
175
|
+
organization: organizationConfigSchema.or(z.string().trim().describe("The organization of the workspace")).optional().describe(
|
|
176
|
+
"The organization of the workspace. This can be a string or an object containing the organization's details"
|
|
177
|
+
),
|
|
167
178
|
repository: z.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
168
179
|
license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
169
180
|
homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
|
|
@@ -236,5 +247,6 @@ export {
|
|
|
236
247
|
WorkspaceAccountConfigSchema,
|
|
237
248
|
WorkspaceDirectoryConfigSchema,
|
|
238
249
|
errorConfigSchema,
|
|
250
|
+
organizationConfigSchema,
|
|
239
251
|
stormWorkspaceConfigSchema
|
|
240
252
|
};
|
|
@@ -152,6 +152,15 @@ var errorConfigSchema = _zod2.default.object({
|
|
|
152
152
|
"A URL to a page that looks up the workspace's error messages given a specific error code"
|
|
153
153
|
)
|
|
154
154
|
}).describe("The workspace's error config used during the error process");
|
|
155
|
+
var organizationConfigSchema = _zod2.default.object({
|
|
156
|
+
name: _zod2.default.string().trim().describe("The name of the organization"),
|
|
157
|
+
description: _zod2.default.string().trim().optional().describe("A description of the organization"),
|
|
158
|
+
logo: _zod2.default.string().trim().url().optional().describe("A URL to the organization's logo image"),
|
|
159
|
+
icon: _zod2.default.string().trim().url().optional().describe("A URL to the organization's icon image"),
|
|
160
|
+
url: _zod2.default.string().trim().url().optional().describe(
|
|
161
|
+
"A URL to a page that provides more information about the organization"
|
|
162
|
+
)
|
|
163
|
+
}).describe("The workspace's organization details");
|
|
155
164
|
var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
156
165
|
$schema: _zod2.default.string().trim().default(
|
|
157
166
|
"https://cdn.jsdelivr.net/npm/@storm-software/config/schemas/storm-workspace.schema.json"
|
|
@@ -163,7 +172,9 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
|
163
172
|
"The name of the service/package/scope using this configuration"
|
|
164
173
|
),
|
|
165
174
|
namespace: _zod2.default.string().trim().toLowerCase().optional().describe("The namespace of the package"),
|
|
166
|
-
organization: _zod2.default.string().trim().
|
|
175
|
+
organization: organizationConfigSchema.or(_zod2.default.string().trim().describe("The organization of the workspace")).optional().describe(
|
|
176
|
+
"The organization of the workspace. This can be a string or an object containing the organization's details"
|
|
177
|
+
),
|
|
167
178
|
repository: _zod2.default.string().trim().optional().describe("The repo URL of the workspace (i.e. GitHub)"),
|
|
168
179
|
license: _zod2.default.string().trim().default("Apache-2.0").describe("The license type of the package"),
|
|
169
180
|
homepage: _zod2.default.string().trim().url().optional().describe("The homepage of the workspace"),
|
|
@@ -237,4 +248,5 @@ var stormWorkspaceConfigSchema = _zod2.default.object({
|
|
|
237
248
|
|
|
238
249
|
|
|
239
250
|
|
|
240
|
-
|
|
251
|
+
|
|
252
|
+
exports.DarkThemeColorConfigSchema = DarkThemeColorConfigSchema; exports.LightThemeColorConfigSchema = LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = MultiThemeColorConfigSchema; exports.SingleThemeColorConfigSchema = SingleThemeColorConfigSchema; exports.RegistryUrlConfigSchema = RegistryUrlConfigSchema; exports.RegistryConfigSchema = RegistryConfigSchema; exports.ColorConfigSchema = ColorConfigSchema; exports.ColorConfigMapSchema = ColorConfigMapSchema; exports.ExtendsSchema = ExtendsSchema; exports.WorkspaceBotConfigSchema = WorkspaceBotConfigSchema; exports.WorkspaceReleaseConfigSchema = WorkspaceReleaseConfigSchema; exports.WorkspaceAccountConfigSchema = WorkspaceAccountConfigSchema; exports.WorkspaceDirectoryConfigSchema = WorkspaceDirectoryConfigSchema; exports.errorConfigSchema = errorConfigSchema; exports.organizationConfigSchema = organizationConfigSchema; exports.stormWorkspaceConfigSchema = stormWorkspaceConfigSchema;
|
package/dist/define-config.d.cts
CHANGED
|
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
19
19
|
footer?: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
account: {
|
|
22
|
+
github?: string | undefined;
|
|
22
23
|
twitter?: string | undefined;
|
|
23
24
|
discord?: string | undefined;
|
|
24
25
|
telegram?: string | undefined;
|
|
25
26
|
slack?: string | undefined;
|
|
26
27
|
medium?: string | undefined;
|
|
27
|
-
github?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
error: {
|
|
30
30
|
codesFile?: string | undefined;
|
|
@@ -40,157 +40,163 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
40
40
|
build?: string | undefined;
|
|
41
41
|
};
|
|
42
42
|
colors: {
|
|
43
|
-
fatal?: string | undefined;
|
|
44
|
-
success?: string | undefined;
|
|
45
|
-
info?: string | undefined;
|
|
46
|
-
dark?: string | undefined;
|
|
47
|
-
light?: string | undefined;
|
|
48
|
-
brand?: string | undefined;
|
|
49
|
-
alternate?: string | undefined;
|
|
50
|
-
accent?: string | undefined;
|
|
51
|
-
link?: string | undefined;
|
|
52
|
-
help?: string | undefined;
|
|
53
|
-
warning?: string | undefined;
|
|
54
|
-
danger?: string | undefined;
|
|
55
|
-
positive?: string | undefined;
|
|
56
|
-
negative?: string | undefined;
|
|
57
|
-
} | {
|
|
58
43
|
dark: {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
info?: string | undefined;
|
|
44
|
+
foreground?: string | undefined;
|
|
45
|
+
background?: string | undefined;
|
|
62
46
|
brand?: string | undefined;
|
|
63
47
|
alternate?: string | undefined;
|
|
64
48
|
accent?: string | undefined;
|
|
65
49
|
link?: string | undefined;
|
|
66
50
|
help?: string | undefined;
|
|
51
|
+
success?: string | undefined;
|
|
52
|
+
info?: string | undefined;
|
|
67
53
|
warning?: string | undefined;
|
|
68
54
|
danger?: string | undefined;
|
|
55
|
+
fatal?: string | undefined;
|
|
69
56
|
positive?: string | undefined;
|
|
70
57
|
negative?: string | undefined;
|
|
71
|
-
foreground?: string | undefined;
|
|
72
|
-
background?: string | undefined;
|
|
73
58
|
};
|
|
74
59
|
light: {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
info?: string | undefined;
|
|
60
|
+
foreground?: string | undefined;
|
|
61
|
+
background?: string | undefined;
|
|
78
62
|
brand?: string | undefined;
|
|
79
63
|
alternate?: string | undefined;
|
|
80
64
|
accent?: string | undefined;
|
|
81
65
|
link?: string | undefined;
|
|
82
66
|
help?: string | undefined;
|
|
67
|
+
success?: string | undefined;
|
|
68
|
+
info?: string | undefined;
|
|
83
69
|
warning?: string | undefined;
|
|
84
70
|
danger?: string | undefined;
|
|
71
|
+
fatal?: string | undefined;
|
|
85
72
|
positive?: string | undefined;
|
|
86
73
|
negative?: string | undefined;
|
|
87
|
-
foreground?: string | undefined;
|
|
88
|
-
background?: string | undefined;
|
|
89
74
|
};
|
|
75
|
+
} | {
|
|
76
|
+
brand?: string | undefined;
|
|
77
|
+
alternate?: string | undefined;
|
|
78
|
+
accent?: string | undefined;
|
|
79
|
+
link?: string | undefined;
|
|
80
|
+
help?: string | undefined;
|
|
81
|
+
success?: string | undefined;
|
|
82
|
+
info?: string | undefined;
|
|
83
|
+
warning?: string | undefined;
|
|
84
|
+
danger?: string | undefined;
|
|
85
|
+
fatal?: string | undefined;
|
|
86
|
+
positive?: string | undefined;
|
|
87
|
+
negative?: string | undefined;
|
|
88
|
+
dark?: string | undefined;
|
|
89
|
+
light?: string | undefined;
|
|
90
90
|
} | {
|
|
91
91
|
base: {
|
|
92
|
-
fatal?: string | undefined;
|
|
93
|
-
success?: string | undefined;
|
|
94
|
-
info?: string | undefined;
|
|
95
|
-
dark?: string | undefined;
|
|
96
|
-
light?: string | undefined;
|
|
97
|
-
brand?: string | undefined;
|
|
98
|
-
alternate?: string | undefined;
|
|
99
|
-
accent?: string | undefined;
|
|
100
|
-
link?: string | undefined;
|
|
101
|
-
help?: string | undefined;
|
|
102
|
-
warning?: string | undefined;
|
|
103
|
-
danger?: string | undefined;
|
|
104
|
-
positive?: string | undefined;
|
|
105
|
-
negative?: string | undefined;
|
|
106
|
-
} | {
|
|
107
92
|
dark: {
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
info?: string | undefined;
|
|
93
|
+
foreground?: string | undefined;
|
|
94
|
+
background?: string | undefined;
|
|
111
95
|
brand?: string | undefined;
|
|
112
96
|
alternate?: string | undefined;
|
|
113
97
|
accent?: string | undefined;
|
|
114
98
|
link?: string | undefined;
|
|
115
99
|
help?: string | undefined;
|
|
100
|
+
success?: string | undefined;
|
|
101
|
+
info?: string | undefined;
|
|
116
102
|
warning?: string | undefined;
|
|
117
103
|
danger?: string | undefined;
|
|
104
|
+
fatal?: string | undefined;
|
|
118
105
|
positive?: string | undefined;
|
|
119
106
|
negative?: string | undefined;
|
|
120
|
-
foreground?: string | undefined;
|
|
121
|
-
background?: string | undefined;
|
|
122
107
|
};
|
|
123
108
|
light: {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
info?: string | undefined;
|
|
109
|
+
foreground?: string | undefined;
|
|
110
|
+
background?: string | undefined;
|
|
127
111
|
brand?: string | undefined;
|
|
128
112
|
alternate?: string | undefined;
|
|
129
113
|
accent?: string | undefined;
|
|
130
114
|
link?: string | undefined;
|
|
131
115
|
help?: string | undefined;
|
|
116
|
+
success?: string | undefined;
|
|
117
|
+
info?: string | undefined;
|
|
132
118
|
warning?: string | undefined;
|
|
133
119
|
danger?: string | undefined;
|
|
120
|
+
fatal?: string | undefined;
|
|
134
121
|
positive?: string | undefined;
|
|
135
122
|
negative?: string | undefined;
|
|
136
|
-
foreground?: string | undefined;
|
|
137
|
-
background?: string | undefined;
|
|
138
123
|
};
|
|
124
|
+
} | {
|
|
125
|
+
brand?: string | undefined;
|
|
126
|
+
alternate?: string | undefined;
|
|
127
|
+
accent?: string | undefined;
|
|
128
|
+
link?: string | undefined;
|
|
129
|
+
help?: string | undefined;
|
|
130
|
+
success?: string | undefined;
|
|
131
|
+
info?: string | undefined;
|
|
132
|
+
warning?: string | undefined;
|
|
133
|
+
danger?: string | undefined;
|
|
134
|
+
fatal?: string | undefined;
|
|
135
|
+
positive?: string | undefined;
|
|
136
|
+
negative?: string | undefined;
|
|
137
|
+
dark?: string | undefined;
|
|
138
|
+
light?: string | undefined;
|
|
139
139
|
};
|
|
140
140
|
} | Record<string, {
|
|
141
|
-
fatal?: string | undefined;
|
|
142
|
-
success?: string | undefined;
|
|
143
|
-
info?: string | undefined;
|
|
144
|
-
dark?: string | undefined;
|
|
145
|
-
light?: string | undefined;
|
|
146
|
-
brand?: string | undefined;
|
|
147
|
-
alternate?: string | undefined;
|
|
148
|
-
accent?: string | undefined;
|
|
149
|
-
link?: string | undefined;
|
|
150
|
-
help?: string | undefined;
|
|
151
|
-
warning?: string | undefined;
|
|
152
|
-
danger?: string | undefined;
|
|
153
|
-
positive?: string | undefined;
|
|
154
|
-
negative?: string | undefined;
|
|
155
|
-
} | {
|
|
156
141
|
dark: {
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
info?: string | undefined;
|
|
142
|
+
foreground?: string | undefined;
|
|
143
|
+
background?: string | undefined;
|
|
160
144
|
brand?: string | undefined;
|
|
161
145
|
alternate?: string | undefined;
|
|
162
146
|
accent?: string | undefined;
|
|
163
147
|
link?: string | undefined;
|
|
164
148
|
help?: string | undefined;
|
|
149
|
+
success?: string | undefined;
|
|
150
|
+
info?: string | undefined;
|
|
165
151
|
warning?: string | undefined;
|
|
166
152
|
danger?: string | undefined;
|
|
153
|
+
fatal?: string | undefined;
|
|
167
154
|
positive?: string | undefined;
|
|
168
155
|
negative?: string | undefined;
|
|
169
|
-
foreground?: string | undefined;
|
|
170
|
-
background?: string | undefined;
|
|
171
156
|
};
|
|
172
157
|
light: {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
info?: string | undefined;
|
|
158
|
+
foreground?: string | undefined;
|
|
159
|
+
background?: string | undefined;
|
|
176
160
|
brand?: string | undefined;
|
|
177
161
|
alternate?: string | undefined;
|
|
178
162
|
accent?: string | undefined;
|
|
179
163
|
link?: string | undefined;
|
|
180
164
|
help?: string | undefined;
|
|
165
|
+
success?: string | undefined;
|
|
166
|
+
info?: string | undefined;
|
|
181
167
|
warning?: string | undefined;
|
|
182
168
|
danger?: string | undefined;
|
|
169
|
+
fatal?: string | undefined;
|
|
183
170
|
positive?: string | undefined;
|
|
184
171
|
negative?: string | undefined;
|
|
185
|
-
foreground?: string | undefined;
|
|
186
|
-
background?: string | undefined;
|
|
187
172
|
};
|
|
173
|
+
} | {
|
|
174
|
+
brand?: string | undefined;
|
|
175
|
+
alternate?: string | undefined;
|
|
176
|
+
accent?: string | undefined;
|
|
177
|
+
link?: string | undefined;
|
|
178
|
+
help?: string | undefined;
|
|
179
|
+
success?: string | undefined;
|
|
180
|
+
info?: string | undefined;
|
|
181
|
+
warning?: string | undefined;
|
|
182
|
+
danger?: string | undefined;
|
|
183
|
+
fatal?: string | undefined;
|
|
184
|
+
positive?: string | undefined;
|
|
185
|
+
negative?: string | undefined;
|
|
186
|
+
dark?: string | undefined;
|
|
187
|
+
light?: string | undefined;
|
|
188
188
|
}>;
|
|
189
|
+
name?: string | undefined;
|
|
189
190
|
$schema?: string | null | undefined;
|
|
190
191
|
extends?: string | string[] | undefined;
|
|
191
|
-
name?: string | undefined;
|
|
192
192
|
namespace?: string | undefined;
|
|
193
|
-
organization?: string |
|
|
193
|
+
organization?: string | {
|
|
194
|
+
name: string;
|
|
195
|
+
url?: string | undefined;
|
|
196
|
+
description?: string | undefined;
|
|
197
|
+
logo?: string | undefined;
|
|
198
|
+
icon?: string | undefined;
|
|
199
|
+
} | undefined;
|
|
194
200
|
repository?: string | undefined;
|
|
195
201
|
license?: string | undefined;
|
|
196
202
|
homepage?: string | undefined;
|
|
@@ -208,7 +214,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
208
214
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
209
215
|
timezone?: string | undefined;
|
|
210
216
|
locale?: string | undefined;
|
|
211
|
-
logLevel?: "
|
|
217
|
+
logLevel?: "success" | "info" | "fatal" | "error" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
212
218
|
skipConfigLogging?: boolean | undefined;
|
|
213
219
|
registry?: {
|
|
214
220
|
github?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
19
19
|
footer?: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
account: {
|
|
22
|
+
github?: string | undefined;
|
|
22
23
|
twitter?: string | undefined;
|
|
23
24
|
discord?: string | undefined;
|
|
24
25
|
telegram?: string | undefined;
|
|
25
26
|
slack?: string | undefined;
|
|
26
27
|
medium?: string | undefined;
|
|
27
|
-
github?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
error: {
|
|
30
30
|
codesFile?: string | undefined;
|
|
@@ -40,157 +40,163 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
40
40
|
build?: string | undefined;
|
|
41
41
|
};
|
|
42
42
|
colors: {
|
|
43
|
-
fatal?: string | undefined;
|
|
44
|
-
success?: string | undefined;
|
|
45
|
-
info?: string | undefined;
|
|
46
|
-
dark?: string | undefined;
|
|
47
|
-
light?: string | undefined;
|
|
48
|
-
brand?: string | undefined;
|
|
49
|
-
alternate?: string | undefined;
|
|
50
|
-
accent?: string | undefined;
|
|
51
|
-
link?: string | undefined;
|
|
52
|
-
help?: string | undefined;
|
|
53
|
-
warning?: string | undefined;
|
|
54
|
-
danger?: string | undefined;
|
|
55
|
-
positive?: string | undefined;
|
|
56
|
-
negative?: string | undefined;
|
|
57
|
-
} | {
|
|
58
43
|
dark: {
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
info?: string | undefined;
|
|
44
|
+
foreground?: string | undefined;
|
|
45
|
+
background?: string | undefined;
|
|
62
46
|
brand?: string | undefined;
|
|
63
47
|
alternate?: string | undefined;
|
|
64
48
|
accent?: string | undefined;
|
|
65
49
|
link?: string | undefined;
|
|
66
50
|
help?: string | undefined;
|
|
51
|
+
success?: string | undefined;
|
|
52
|
+
info?: string | undefined;
|
|
67
53
|
warning?: string | undefined;
|
|
68
54
|
danger?: string | undefined;
|
|
55
|
+
fatal?: string | undefined;
|
|
69
56
|
positive?: string | undefined;
|
|
70
57
|
negative?: string | undefined;
|
|
71
|
-
foreground?: string | undefined;
|
|
72
|
-
background?: string | undefined;
|
|
73
58
|
};
|
|
74
59
|
light: {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
info?: string | undefined;
|
|
60
|
+
foreground?: string | undefined;
|
|
61
|
+
background?: string | undefined;
|
|
78
62
|
brand?: string | undefined;
|
|
79
63
|
alternate?: string | undefined;
|
|
80
64
|
accent?: string | undefined;
|
|
81
65
|
link?: string | undefined;
|
|
82
66
|
help?: string | undefined;
|
|
67
|
+
success?: string | undefined;
|
|
68
|
+
info?: string | undefined;
|
|
83
69
|
warning?: string | undefined;
|
|
84
70
|
danger?: string | undefined;
|
|
71
|
+
fatal?: string | undefined;
|
|
85
72
|
positive?: string | undefined;
|
|
86
73
|
negative?: string | undefined;
|
|
87
|
-
foreground?: string | undefined;
|
|
88
|
-
background?: string | undefined;
|
|
89
74
|
};
|
|
75
|
+
} | {
|
|
76
|
+
brand?: string | undefined;
|
|
77
|
+
alternate?: string | undefined;
|
|
78
|
+
accent?: string | undefined;
|
|
79
|
+
link?: string | undefined;
|
|
80
|
+
help?: string | undefined;
|
|
81
|
+
success?: string | undefined;
|
|
82
|
+
info?: string | undefined;
|
|
83
|
+
warning?: string | undefined;
|
|
84
|
+
danger?: string | undefined;
|
|
85
|
+
fatal?: string | undefined;
|
|
86
|
+
positive?: string | undefined;
|
|
87
|
+
negative?: string | undefined;
|
|
88
|
+
dark?: string | undefined;
|
|
89
|
+
light?: string | undefined;
|
|
90
90
|
} | {
|
|
91
91
|
base: {
|
|
92
|
-
fatal?: string | undefined;
|
|
93
|
-
success?: string | undefined;
|
|
94
|
-
info?: string | undefined;
|
|
95
|
-
dark?: string | undefined;
|
|
96
|
-
light?: string | undefined;
|
|
97
|
-
brand?: string | undefined;
|
|
98
|
-
alternate?: string | undefined;
|
|
99
|
-
accent?: string | undefined;
|
|
100
|
-
link?: string | undefined;
|
|
101
|
-
help?: string | undefined;
|
|
102
|
-
warning?: string | undefined;
|
|
103
|
-
danger?: string | undefined;
|
|
104
|
-
positive?: string | undefined;
|
|
105
|
-
negative?: string | undefined;
|
|
106
|
-
} | {
|
|
107
92
|
dark: {
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
info?: string | undefined;
|
|
93
|
+
foreground?: string | undefined;
|
|
94
|
+
background?: string | undefined;
|
|
111
95
|
brand?: string | undefined;
|
|
112
96
|
alternate?: string | undefined;
|
|
113
97
|
accent?: string | undefined;
|
|
114
98
|
link?: string | undefined;
|
|
115
99
|
help?: string | undefined;
|
|
100
|
+
success?: string | undefined;
|
|
101
|
+
info?: string | undefined;
|
|
116
102
|
warning?: string | undefined;
|
|
117
103
|
danger?: string | undefined;
|
|
104
|
+
fatal?: string | undefined;
|
|
118
105
|
positive?: string | undefined;
|
|
119
106
|
negative?: string | undefined;
|
|
120
|
-
foreground?: string | undefined;
|
|
121
|
-
background?: string | undefined;
|
|
122
107
|
};
|
|
123
108
|
light: {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
info?: string | undefined;
|
|
109
|
+
foreground?: string | undefined;
|
|
110
|
+
background?: string | undefined;
|
|
127
111
|
brand?: string | undefined;
|
|
128
112
|
alternate?: string | undefined;
|
|
129
113
|
accent?: string | undefined;
|
|
130
114
|
link?: string | undefined;
|
|
131
115
|
help?: string | undefined;
|
|
116
|
+
success?: string | undefined;
|
|
117
|
+
info?: string | undefined;
|
|
132
118
|
warning?: string | undefined;
|
|
133
119
|
danger?: string | undefined;
|
|
120
|
+
fatal?: string | undefined;
|
|
134
121
|
positive?: string | undefined;
|
|
135
122
|
negative?: string | undefined;
|
|
136
|
-
foreground?: string | undefined;
|
|
137
|
-
background?: string | undefined;
|
|
138
123
|
};
|
|
124
|
+
} | {
|
|
125
|
+
brand?: string | undefined;
|
|
126
|
+
alternate?: string | undefined;
|
|
127
|
+
accent?: string | undefined;
|
|
128
|
+
link?: string | undefined;
|
|
129
|
+
help?: string | undefined;
|
|
130
|
+
success?: string | undefined;
|
|
131
|
+
info?: string | undefined;
|
|
132
|
+
warning?: string | undefined;
|
|
133
|
+
danger?: string | undefined;
|
|
134
|
+
fatal?: string | undefined;
|
|
135
|
+
positive?: string | undefined;
|
|
136
|
+
negative?: string | undefined;
|
|
137
|
+
dark?: string | undefined;
|
|
138
|
+
light?: string | undefined;
|
|
139
139
|
};
|
|
140
140
|
} | Record<string, {
|
|
141
|
-
fatal?: string | undefined;
|
|
142
|
-
success?: string | undefined;
|
|
143
|
-
info?: string | undefined;
|
|
144
|
-
dark?: string | undefined;
|
|
145
|
-
light?: string | undefined;
|
|
146
|
-
brand?: string | undefined;
|
|
147
|
-
alternate?: string | undefined;
|
|
148
|
-
accent?: string | undefined;
|
|
149
|
-
link?: string | undefined;
|
|
150
|
-
help?: string | undefined;
|
|
151
|
-
warning?: string | undefined;
|
|
152
|
-
danger?: string | undefined;
|
|
153
|
-
positive?: string | undefined;
|
|
154
|
-
negative?: string | undefined;
|
|
155
|
-
} | {
|
|
156
141
|
dark: {
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
info?: string | undefined;
|
|
142
|
+
foreground?: string | undefined;
|
|
143
|
+
background?: string | undefined;
|
|
160
144
|
brand?: string | undefined;
|
|
161
145
|
alternate?: string | undefined;
|
|
162
146
|
accent?: string | undefined;
|
|
163
147
|
link?: string | undefined;
|
|
164
148
|
help?: string | undefined;
|
|
149
|
+
success?: string | undefined;
|
|
150
|
+
info?: string | undefined;
|
|
165
151
|
warning?: string | undefined;
|
|
166
152
|
danger?: string | undefined;
|
|
153
|
+
fatal?: string | undefined;
|
|
167
154
|
positive?: string | undefined;
|
|
168
155
|
negative?: string | undefined;
|
|
169
|
-
foreground?: string | undefined;
|
|
170
|
-
background?: string | undefined;
|
|
171
156
|
};
|
|
172
157
|
light: {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
info?: string | undefined;
|
|
158
|
+
foreground?: string | undefined;
|
|
159
|
+
background?: string | undefined;
|
|
176
160
|
brand?: string | undefined;
|
|
177
161
|
alternate?: string | undefined;
|
|
178
162
|
accent?: string | undefined;
|
|
179
163
|
link?: string | undefined;
|
|
180
164
|
help?: string | undefined;
|
|
165
|
+
success?: string | undefined;
|
|
166
|
+
info?: string | undefined;
|
|
181
167
|
warning?: string | undefined;
|
|
182
168
|
danger?: string | undefined;
|
|
169
|
+
fatal?: string | undefined;
|
|
183
170
|
positive?: string | undefined;
|
|
184
171
|
negative?: string | undefined;
|
|
185
|
-
foreground?: string | undefined;
|
|
186
|
-
background?: string | undefined;
|
|
187
172
|
};
|
|
173
|
+
} | {
|
|
174
|
+
brand?: string | undefined;
|
|
175
|
+
alternate?: string | undefined;
|
|
176
|
+
accent?: string | undefined;
|
|
177
|
+
link?: string | undefined;
|
|
178
|
+
help?: string | undefined;
|
|
179
|
+
success?: string | undefined;
|
|
180
|
+
info?: string | undefined;
|
|
181
|
+
warning?: string | undefined;
|
|
182
|
+
danger?: string | undefined;
|
|
183
|
+
fatal?: string | undefined;
|
|
184
|
+
positive?: string | undefined;
|
|
185
|
+
negative?: string | undefined;
|
|
186
|
+
dark?: string | undefined;
|
|
187
|
+
light?: string | undefined;
|
|
188
188
|
}>;
|
|
189
|
+
name?: string | undefined;
|
|
189
190
|
$schema?: string | null | undefined;
|
|
190
191
|
extends?: string | string[] | undefined;
|
|
191
|
-
name?: string | undefined;
|
|
192
192
|
namespace?: string | undefined;
|
|
193
|
-
organization?: string |
|
|
193
|
+
organization?: string | {
|
|
194
|
+
name: string;
|
|
195
|
+
url?: string | undefined;
|
|
196
|
+
description?: string | undefined;
|
|
197
|
+
logo?: string | undefined;
|
|
198
|
+
icon?: string | undefined;
|
|
199
|
+
} | undefined;
|
|
194
200
|
repository?: string | undefined;
|
|
195
201
|
license?: string | undefined;
|
|
196
202
|
homepage?: string | undefined;
|
|
@@ -208,7 +214,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
208
214
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
209
215
|
timezone?: string | undefined;
|
|
210
216
|
locale?: string | undefined;
|
|
211
|
-
logLevel?: "
|
|
217
|
+
logLevel?: "success" | "info" | "fatal" | "error" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
212
218
|
skipConfigLogging?: boolean | undefined;
|
|
213
219
|
registry?: {
|
|
214
220
|
github?: string | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -17,7 +17,8 @@ var _chunkH6PQ7FMQcjs = require('./chunk-H6PQ7FMQ.cjs');
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
|
|
21
|
+
var _chunkOSCIEGSVcjs = require('./chunk-OSCIEGSV.cjs');
|
|
21
22
|
|
|
22
23
|
|
|
23
24
|
|
|
@@ -71,4 +72,5 @@ var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
|
|
|
71
72
|
|
|
72
73
|
|
|
73
74
|
|
|
74
|
-
|
|
75
|
+
|
|
76
|
+
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkOSCIEGSVcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkOSCIEGSVcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkOSCIEGSVcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkOSCIEGSVcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkOSCIEGSVcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkOSCIEGSVcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkOSCIEGSVcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkOSCIEGSVcjs.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 = _chunkOSCIEGSVcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkOSCIEGSVcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkOSCIEGSVcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkOSCIEGSVcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkOSCIEGSVcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkOSCIEGSVcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkOSCIEGSVcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkOSCIEGSVcjs.stormWorkspaceConfigSchema;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
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
|
-
export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, WorkspaceAccountConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema, errorConfigSchema, stormWorkspaceConfigSchema } from './schema.cjs';
|
|
4
|
-
export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.cjs';
|
|
3
|
+
export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, WorkspaceAccountConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema, errorConfigSchema, organizationConfigSchema, stormWorkspaceConfigSchema } from './schema.cjs';
|
|
4
|
+
export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, OrganizationConfig, OrganizationConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.cjs';
|
|
5
5
|
import 'zod';
|