@storm-software/config 1.123.0 → 1.123.2
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 +23 -0
- package/README.md +1 -1
- package/dist/{chunk-2ZLWK5GA.js → chunk-CLVZKFJ2.js} +2 -2
- package/dist/chunk-SYFXBAOJ.cjs +252 -0
- package/dist/define-config.d.cts +65 -65
- package/dist/define-config.d.ts +65 -65
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/schema.cjs +2 -2
- package/dist/schema.d.cts +74 -1985
- package/dist/schema.d.ts +74 -1985
- package/dist/schema.js +1 -1
- package/dist/types.d.cts +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +2 -2
- package/schemas/storm-workspace.schema.json +1440 -469
- package/src/define-config.d.ts +54 -54
- package/src/schema.d.ts +74 -1985
- package/src/types.d.ts +1 -1
- package/dist/chunk-OSCIEGSV.cjs +0 -252
package/dist/define-config.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { StormWorkspaceConfigInput } from './types.js';
|
|
2
|
-
import 'zod';
|
|
2
|
+
import 'zod/v4';
|
|
3
3
|
import './schema.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -19,12 +19,12 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
19
19
|
footer?: string | undefined;
|
|
20
20
|
};
|
|
21
21
|
account: {
|
|
22
|
-
github?: string | undefined;
|
|
23
22
|
twitter?: string | undefined;
|
|
24
23
|
discord?: string | undefined;
|
|
25
24
|
telegram?: string | undefined;
|
|
26
25
|
slack?: string | undefined;
|
|
27
26
|
medium?: string | undefined;
|
|
27
|
+
github?: string | undefined;
|
|
28
28
|
};
|
|
29
29
|
error: {
|
|
30
30
|
codesFile?: string | undefined;
|
|
@@ -40,6 +40,21 @@ 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
|
+
} | {
|
|
43
58
|
dark: {
|
|
44
59
|
foreground?: string | undefined;
|
|
45
60
|
background?: string | undefined;
|
|
@@ -72,7 +87,9 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
72
87
|
positive?: string | undefined;
|
|
73
88
|
negative?: string | undefined;
|
|
74
89
|
};
|
|
75
|
-
} | {
|
|
90
|
+
} | Record<string, {
|
|
91
|
+
dark?: string | undefined;
|
|
92
|
+
light?: string | undefined;
|
|
76
93
|
brand?: string | undefined;
|
|
77
94
|
alternate?: string | undefined;
|
|
78
95
|
accent?: string | undefined;
|
|
@@ -85,43 +102,10 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
85
102
|
fatal?: string | undefined;
|
|
86
103
|
positive?: string | undefined;
|
|
87
104
|
negative?: string | undefined;
|
|
88
|
-
dark?: string | undefined;
|
|
89
|
-
light?: string | undefined;
|
|
90
105
|
} | {
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
background?: string | undefined;
|
|
95
|
-
brand?: string | undefined;
|
|
96
|
-
alternate?: string | undefined;
|
|
97
|
-
accent?: string | undefined;
|
|
98
|
-
link?: string | undefined;
|
|
99
|
-
help?: string | undefined;
|
|
100
|
-
success?: string | undefined;
|
|
101
|
-
info?: string | undefined;
|
|
102
|
-
warning?: string | undefined;
|
|
103
|
-
danger?: string | undefined;
|
|
104
|
-
fatal?: string | undefined;
|
|
105
|
-
positive?: string | undefined;
|
|
106
|
-
negative?: string | undefined;
|
|
107
|
-
};
|
|
108
|
-
light: {
|
|
109
|
-
foreground?: string | undefined;
|
|
110
|
-
background?: string | undefined;
|
|
111
|
-
brand?: string | undefined;
|
|
112
|
-
alternate?: string | undefined;
|
|
113
|
-
accent?: string | undefined;
|
|
114
|
-
link?: string | undefined;
|
|
115
|
-
help?: string | undefined;
|
|
116
|
-
success?: string | undefined;
|
|
117
|
-
info?: string | undefined;
|
|
118
|
-
warning?: string | undefined;
|
|
119
|
-
danger?: string | undefined;
|
|
120
|
-
fatal?: string | undefined;
|
|
121
|
-
positive?: string | undefined;
|
|
122
|
-
negative?: string | undefined;
|
|
123
|
-
};
|
|
124
|
-
} | {
|
|
106
|
+
dark: {
|
|
107
|
+
foreground?: string | undefined;
|
|
108
|
+
background?: string | undefined;
|
|
125
109
|
brand?: string | undefined;
|
|
126
110
|
alternate?: string | undefined;
|
|
127
111
|
accent?: string | undefined;
|
|
@@ -134,11 +118,8 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
134
118
|
fatal?: string | undefined;
|
|
135
119
|
positive?: string | undefined;
|
|
136
120
|
negative?: string | undefined;
|
|
137
|
-
dark?: string | undefined;
|
|
138
|
-
light?: string | undefined;
|
|
139
121
|
};
|
|
140
|
-
|
|
141
|
-
dark: {
|
|
122
|
+
light: {
|
|
142
123
|
foreground?: string | undefined;
|
|
143
124
|
background?: string | undefined;
|
|
144
125
|
brand?: string | undefined;
|
|
@@ -154,9 +135,10 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
154
135
|
positive?: string | undefined;
|
|
155
136
|
negative?: string | undefined;
|
|
156
137
|
};
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
138
|
+
}> | {
|
|
139
|
+
base: {
|
|
140
|
+
dark?: string | undefined;
|
|
141
|
+
light?: string | undefined;
|
|
160
142
|
brand?: string | undefined;
|
|
161
143
|
alternate?: string | undefined;
|
|
162
144
|
accent?: string | undefined;
|
|
@@ -169,33 +151,51 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
169
151
|
fatal?: string | undefined;
|
|
170
152
|
positive?: string | undefined;
|
|
171
153
|
negative?: string | undefined;
|
|
154
|
+
} | {
|
|
155
|
+
dark: {
|
|
156
|
+
foreground?: string | undefined;
|
|
157
|
+
background?: string | undefined;
|
|
158
|
+
brand?: string | undefined;
|
|
159
|
+
alternate?: string | undefined;
|
|
160
|
+
accent?: string | undefined;
|
|
161
|
+
link?: string | undefined;
|
|
162
|
+
help?: string | undefined;
|
|
163
|
+
success?: string | undefined;
|
|
164
|
+
info?: string | undefined;
|
|
165
|
+
warning?: string | undefined;
|
|
166
|
+
danger?: string | undefined;
|
|
167
|
+
fatal?: string | undefined;
|
|
168
|
+
positive?: string | undefined;
|
|
169
|
+
negative?: string | undefined;
|
|
170
|
+
};
|
|
171
|
+
light: {
|
|
172
|
+
foreground?: string | undefined;
|
|
173
|
+
background?: string | undefined;
|
|
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
|
+
};
|
|
172
187
|
};
|
|
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
|
-
}>;
|
|
189
|
-
name?: string | undefined;
|
|
188
|
+
};
|
|
190
189
|
$schema?: string | null | undefined;
|
|
191
190
|
extends?: string | string[] | undefined;
|
|
191
|
+
name?: string | undefined;
|
|
192
192
|
namespace?: string | undefined;
|
|
193
193
|
organization?: string | {
|
|
194
194
|
name: string;
|
|
195
|
-
url?: string | undefined;
|
|
196
195
|
description?: string | undefined;
|
|
197
196
|
logo?: string | undefined;
|
|
198
197
|
icon?: string | undefined;
|
|
198
|
+
url?: string | undefined;
|
|
199
199
|
} | undefined;
|
|
200
200
|
repository?: string | undefined;
|
|
201
201
|
license?: string | undefined;
|
|
@@ -214,7 +214,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
214
214
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
215
215
|
timezone?: string | undefined;
|
|
216
216
|
locale?: string | undefined;
|
|
217
|
-
logLevel?: "
|
|
217
|
+
logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "debug" | "trace" | "all" | undefined;
|
|
218
218
|
skipConfigLogging?: boolean | undefined;
|
|
219
219
|
registry?: {
|
|
220
220
|
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 _chunkSYFXBAOJcjs = require('./chunk-SYFXBAOJ.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 = _chunkSYFXBAOJcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkSYFXBAOJcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkSYFXBAOJcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkSYFXBAOJcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkSYFXBAOJcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkSYFXBAOJcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkSYFXBAOJcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkSYFXBAOJcjs.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 = _chunkSYFXBAOJcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkSYFXBAOJcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkSYFXBAOJcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkSYFXBAOJcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkSYFXBAOJcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkH6PQ7FMQcjs.defineConfig; exports.errorConfigSchema = _chunkSYFXBAOJcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkSYFXBAOJcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkSYFXBAOJcjs.stormWorkspaceConfigSchema;
|
package/dist/index.d.cts
CHANGED
|
@@ -2,4 +2,4 @@ export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFA
|
|
|
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, organizationConfigSchema, stormWorkspaceConfigSchema } from './schema.cjs';
|
|
4
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
|
-
import 'zod';
|
|
5
|
+
import 'zod/v4';
|
package/dist/index.d.ts
CHANGED
|
@@ -2,4 +2,4 @@ export { STORM_DEFAULT_ACCOUNT_DISCORD, STORM_DEFAULT_ACCOUNT_GITHUB, STORM_DEFA
|
|
|
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, organizationConfigSchema, stormWorkspaceConfigSchema } from './schema.js';
|
|
4
4
|
export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, OrganizationConfig, OrganizationConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.js';
|
|
5
|
-
import 'zod';
|
|
5
|
+
import 'zod/v4';
|
package/dist/index.js
CHANGED
package/dist/schema.cjs
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _chunkSYFXBAOJcjs = require('./chunk-SYFXBAOJ.cjs');
|
|
19
19
|
require('./chunk-HPEJ52UX.cjs');
|
|
20
20
|
|
|
21
21
|
|
|
@@ -34,4 +34,4 @@ require('./chunk-HPEJ52UX.cjs');
|
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
|
|
37
|
-
exports.ColorConfigMapSchema =
|
|
37
|
+
exports.ColorConfigMapSchema = _chunkSYFXBAOJcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkSYFXBAOJcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkSYFXBAOJcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkSYFXBAOJcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkSYFXBAOJcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkSYFXBAOJcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkSYFXBAOJcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkSYFXBAOJcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkSYFXBAOJcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkSYFXBAOJcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkSYFXBAOJcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkSYFXBAOJcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkSYFXBAOJcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkSYFXBAOJcjs.errorConfigSchema; exports.organizationConfigSchema = _chunkSYFXBAOJcjs.organizationConfigSchema; exports.stormWorkspaceConfigSchema = _chunkSYFXBAOJcjs.stormWorkspaceConfigSchema;
|