@storm-software/config 1.110.6 → 1.112.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 +20 -0
- package/dist/{chunk-FWJ7T4PW.js → chunk-CIOGSYBE.js} +9 -3
- package/dist/{chunk-4SJ57WRV.cjs → chunk-ITLP7RTF.cjs} +21 -15
- package/dist/{chunk-HODJMVAD.js → chunk-JXP4TNRB.js} +3 -1
- package/dist/{chunk-OLYJTH7R.cjs → chunk-VFB443BH.cjs} +3 -1
- package/dist/constants.cjs +4 -2
- package/dist/constants.d.cts +2 -1
- package/dist/constants.d.ts +2 -1
- package/dist/constants.js +3 -1
- package/dist/define-config.d.cts +84 -80
- package/dist/define-config.d.ts +84 -80
- package/dist/index.cjs +7 -3
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +10 -6
- package/dist/schema.cjs +5 -3
- package/dist/schema.d.cts +669 -641
- package/dist/schema.d.ts +669 -641
- package/dist/schema.js +8 -6
- package/dist/types.d.cts +22 -6
- package/dist/types.d.ts +22 -6
- package/package.json +1 -1
- package/presets/base.json +3 -0
- package/schemas/storm-workspace.schema.json +25 -1
- package/src/constants.d.ts +1 -0
- package/src/define-config.d.ts +7 -3
- package/src/schema.d.ts +31 -3
- package/src/types.d.ts +21 -5
package/dist/define-config.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { StormWorkspaceConfigInput } from './types.js';
|
|
2
2
|
import 'zod';
|
|
3
3
|
import './schema.js';
|
|
4
4
|
|
|
@@ -8,7 +8,7 @@ import './schema.js';
|
|
|
8
8
|
* @param input - The config values for the current Storm workspace
|
|
9
9
|
* @returns The config values for the current Storm workspace
|
|
10
10
|
*/
|
|
11
|
-
declare const defineConfig: (input:
|
|
11
|
+
declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
12
12
|
bot: {
|
|
13
13
|
name?: string | undefined;
|
|
14
14
|
email?: string | undefined;
|
|
@@ -19,12 +19,16 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
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
|
+
};
|
|
29
|
+
error: {
|
|
30
|
+
codesFile?: string | undefined;
|
|
31
|
+
url?: string | undefined;
|
|
28
32
|
};
|
|
29
33
|
directories: {
|
|
30
34
|
cache?: string | undefined;
|
|
@@ -35,155 +39,155 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
35
39
|
build?: string | undefined;
|
|
36
40
|
};
|
|
37
41
|
colors: {
|
|
42
|
+
fatal?: string | undefined;
|
|
43
|
+
success?: string | undefined;
|
|
44
|
+
info?: string | undefined;
|
|
45
|
+
dark?: string | undefined;
|
|
46
|
+
light?: string | undefined;
|
|
47
|
+
brand?: string | undefined;
|
|
48
|
+
alternate?: string | undefined;
|
|
49
|
+
accent?: string | undefined;
|
|
50
|
+
link?: string | undefined;
|
|
51
|
+
help?: string | undefined;
|
|
52
|
+
warning?: string | undefined;
|
|
53
|
+
danger?: string | undefined;
|
|
54
|
+
positive?: string | undefined;
|
|
55
|
+
negative?: string | undefined;
|
|
56
|
+
} | {
|
|
38
57
|
dark: {
|
|
39
|
-
|
|
40
|
-
|
|
58
|
+
fatal?: string | undefined;
|
|
59
|
+
success?: string | undefined;
|
|
60
|
+
info?: string | undefined;
|
|
41
61
|
brand?: string | undefined;
|
|
42
62
|
alternate?: string | undefined;
|
|
43
63
|
accent?: string | undefined;
|
|
44
64
|
link?: string | undefined;
|
|
45
65
|
help?: string | undefined;
|
|
46
|
-
success?: string | undefined;
|
|
47
|
-
info?: string | undefined;
|
|
48
66
|
warning?: string | undefined;
|
|
49
67
|
danger?: string | undefined;
|
|
50
|
-
fatal?: string | undefined;
|
|
51
68
|
positive?: string | undefined;
|
|
52
69
|
negative?: string | undefined;
|
|
53
|
-
};
|
|
54
|
-
light: {
|
|
55
70
|
foreground?: string | undefined;
|
|
56
71
|
background?: string | undefined;
|
|
72
|
+
};
|
|
73
|
+
light: {
|
|
74
|
+
fatal?: string | undefined;
|
|
75
|
+
success?: string | undefined;
|
|
76
|
+
info?: string | undefined;
|
|
57
77
|
brand?: string | undefined;
|
|
58
78
|
alternate?: string | undefined;
|
|
59
79
|
accent?: string | undefined;
|
|
60
80
|
link?: string | undefined;
|
|
61
81
|
help?: string | undefined;
|
|
62
|
-
success?: string | undefined;
|
|
63
|
-
info?: string | undefined;
|
|
64
82
|
warning?: string | undefined;
|
|
65
83
|
danger?: string | undefined;
|
|
66
|
-
fatal?: string | undefined;
|
|
67
84
|
positive?: string | undefined;
|
|
68
85
|
negative?: string | undefined;
|
|
86
|
+
foreground?: string | undefined;
|
|
87
|
+
background?: string | undefined;
|
|
69
88
|
};
|
|
70
|
-
} | {
|
|
71
|
-
brand?: string | undefined;
|
|
72
|
-
alternate?: string | undefined;
|
|
73
|
-
accent?: string | undefined;
|
|
74
|
-
link?: string | undefined;
|
|
75
|
-
help?: string | undefined;
|
|
76
|
-
success?: string | undefined;
|
|
77
|
-
info?: string | undefined;
|
|
78
|
-
warning?: string | undefined;
|
|
79
|
-
danger?: string | undefined;
|
|
80
|
-
fatal?: string | undefined;
|
|
81
|
-
positive?: string | undefined;
|
|
82
|
-
negative?: string | undefined;
|
|
83
|
-
dark?: string | undefined;
|
|
84
|
-
light?: string | undefined;
|
|
85
89
|
} | {
|
|
86
90
|
base: {
|
|
91
|
+
fatal?: string | undefined;
|
|
92
|
+
success?: string | undefined;
|
|
93
|
+
info?: string | undefined;
|
|
94
|
+
dark?: string | undefined;
|
|
95
|
+
light?: string | undefined;
|
|
96
|
+
brand?: string | undefined;
|
|
97
|
+
alternate?: string | undefined;
|
|
98
|
+
accent?: string | undefined;
|
|
99
|
+
link?: string | undefined;
|
|
100
|
+
help?: string | undefined;
|
|
101
|
+
warning?: string | undefined;
|
|
102
|
+
danger?: string | undefined;
|
|
103
|
+
positive?: string | undefined;
|
|
104
|
+
negative?: string | undefined;
|
|
105
|
+
} | {
|
|
87
106
|
dark: {
|
|
88
|
-
|
|
89
|
-
|
|
107
|
+
fatal?: string | undefined;
|
|
108
|
+
success?: string | undefined;
|
|
109
|
+
info?: string | undefined;
|
|
90
110
|
brand?: string | undefined;
|
|
91
111
|
alternate?: string | undefined;
|
|
92
112
|
accent?: string | undefined;
|
|
93
113
|
link?: string | undefined;
|
|
94
114
|
help?: string | undefined;
|
|
95
|
-
success?: string | undefined;
|
|
96
|
-
info?: string | undefined;
|
|
97
115
|
warning?: string | undefined;
|
|
98
116
|
danger?: string | undefined;
|
|
99
|
-
fatal?: string | undefined;
|
|
100
117
|
positive?: string | undefined;
|
|
101
118
|
negative?: string | undefined;
|
|
102
|
-
};
|
|
103
|
-
light: {
|
|
104
119
|
foreground?: string | undefined;
|
|
105
120
|
background?: string | undefined;
|
|
121
|
+
};
|
|
122
|
+
light: {
|
|
123
|
+
fatal?: string | undefined;
|
|
124
|
+
success?: string | undefined;
|
|
125
|
+
info?: string | undefined;
|
|
106
126
|
brand?: string | undefined;
|
|
107
127
|
alternate?: string | undefined;
|
|
108
128
|
accent?: string | undefined;
|
|
109
129
|
link?: string | undefined;
|
|
110
130
|
help?: string | undefined;
|
|
111
|
-
success?: string | undefined;
|
|
112
|
-
info?: string | undefined;
|
|
113
131
|
warning?: string | undefined;
|
|
114
132
|
danger?: string | undefined;
|
|
115
|
-
fatal?: string | undefined;
|
|
116
133
|
positive?: string | undefined;
|
|
117
134
|
negative?: string | undefined;
|
|
135
|
+
foreground?: string | undefined;
|
|
136
|
+
background?: string | undefined;
|
|
118
137
|
};
|
|
119
|
-
} | {
|
|
120
|
-
brand?: string | undefined;
|
|
121
|
-
alternate?: string | undefined;
|
|
122
|
-
accent?: string | undefined;
|
|
123
|
-
link?: string | undefined;
|
|
124
|
-
help?: string | undefined;
|
|
125
|
-
success?: string | undefined;
|
|
126
|
-
info?: string | undefined;
|
|
127
|
-
warning?: string | undefined;
|
|
128
|
-
danger?: string | undefined;
|
|
129
|
-
fatal?: string | undefined;
|
|
130
|
-
positive?: string | undefined;
|
|
131
|
-
negative?: string | undefined;
|
|
132
|
-
dark?: string | undefined;
|
|
133
|
-
light?: string | undefined;
|
|
134
138
|
};
|
|
135
139
|
} | Record<string, {
|
|
140
|
+
fatal?: string | undefined;
|
|
141
|
+
success?: string | undefined;
|
|
142
|
+
info?: string | undefined;
|
|
143
|
+
dark?: string | undefined;
|
|
144
|
+
light?: string | undefined;
|
|
145
|
+
brand?: string | undefined;
|
|
146
|
+
alternate?: string | undefined;
|
|
147
|
+
accent?: string | undefined;
|
|
148
|
+
link?: string | undefined;
|
|
149
|
+
help?: string | undefined;
|
|
150
|
+
warning?: string | undefined;
|
|
151
|
+
danger?: string | undefined;
|
|
152
|
+
positive?: string | undefined;
|
|
153
|
+
negative?: string | undefined;
|
|
154
|
+
} | {
|
|
136
155
|
dark: {
|
|
137
|
-
|
|
138
|
-
|
|
156
|
+
fatal?: string | undefined;
|
|
157
|
+
success?: string | undefined;
|
|
158
|
+
info?: string | undefined;
|
|
139
159
|
brand?: string | undefined;
|
|
140
160
|
alternate?: string | undefined;
|
|
141
161
|
accent?: string | undefined;
|
|
142
162
|
link?: string | undefined;
|
|
143
163
|
help?: string | undefined;
|
|
144
|
-
success?: string | undefined;
|
|
145
|
-
info?: string | undefined;
|
|
146
164
|
warning?: string | undefined;
|
|
147
165
|
danger?: string | undefined;
|
|
148
|
-
fatal?: string | undefined;
|
|
149
166
|
positive?: string | undefined;
|
|
150
167
|
negative?: string | undefined;
|
|
151
|
-
};
|
|
152
|
-
light: {
|
|
153
168
|
foreground?: string | undefined;
|
|
154
169
|
background?: string | undefined;
|
|
170
|
+
};
|
|
171
|
+
light: {
|
|
172
|
+
fatal?: string | undefined;
|
|
173
|
+
success?: string | undefined;
|
|
174
|
+
info?: string | undefined;
|
|
155
175
|
brand?: string | undefined;
|
|
156
176
|
alternate?: string | undefined;
|
|
157
177
|
accent?: string | undefined;
|
|
158
178
|
link?: string | undefined;
|
|
159
179
|
help?: string | undefined;
|
|
160
|
-
success?: string | undefined;
|
|
161
|
-
info?: string | undefined;
|
|
162
180
|
warning?: string | undefined;
|
|
163
181
|
danger?: string | undefined;
|
|
164
|
-
fatal?: string | undefined;
|
|
165
182
|
positive?: string | undefined;
|
|
166
183
|
negative?: string | undefined;
|
|
184
|
+
foreground?: string | undefined;
|
|
185
|
+
background?: string | undefined;
|
|
167
186
|
};
|
|
168
|
-
} | {
|
|
169
|
-
brand?: string | undefined;
|
|
170
|
-
alternate?: string | undefined;
|
|
171
|
-
accent?: string | undefined;
|
|
172
|
-
link?: string | undefined;
|
|
173
|
-
help?: string | undefined;
|
|
174
|
-
success?: string | undefined;
|
|
175
|
-
info?: string | undefined;
|
|
176
|
-
warning?: string | undefined;
|
|
177
|
-
danger?: string | undefined;
|
|
178
|
-
fatal?: string | undefined;
|
|
179
|
-
positive?: string | undefined;
|
|
180
|
-
negative?: string | undefined;
|
|
181
|
-
dark?: string | undefined;
|
|
182
|
-
light?: string | undefined;
|
|
183
187
|
}>;
|
|
184
|
-
name?: string | undefined;
|
|
185
188
|
$schema?: string | null | undefined;
|
|
186
189
|
extends?: string | string[] | undefined;
|
|
190
|
+
name?: string | undefined;
|
|
187
191
|
namespace?: string | undefined;
|
|
188
192
|
organization?: string | undefined;
|
|
189
193
|
repository?: string | undefined;
|
|
@@ -202,7 +206,7 @@ declare const defineConfig: (input: StormConfigInput) => {
|
|
|
202
206
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
203
207
|
timezone?: string | undefined;
|
|
204
208
|
locale?: string | undefined;
|
|
205
|
-
logLevel?: "
|
|
209
|
+
logLevel?: "error" | "silent" | "fatal" | "warn" | "success" | "info" | "debug" | "trace" | "all" | undefined;
|
|
206
210
|
skipConfigLogging?: boolean | undefined;
|
|
207
211
|
registry?: {
|
|
208
212
|
github?: string | undefined;
|
package/dist/index.cjs
CHANGED
|
@@ -16,8 +16,8 @@ var _chunkSNJKI2QWcjs = require('./chunk-SNJKI2QW.cjs');
|
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
var _chunk4SJ57WRVcjs = require('./chunk-4SJ57WRV.cjs');
|
|
20
19
|
|
|
20
|
+
var _chunkITLP7RTFcjs = require('./chunk-ITLP7RTF.cjs');
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
@@ -31,7 +31,9 @@ var _chunk4SJ57WRVcjs = require('./chunk-4SJ57WRV.cjs');
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
var _chunkVFB443BHcjs = require('./chunk-VFB443BH.cjs');
|
|
35
37
|
|
|
36
38
|
|
|
37
39
|
var _chunkWRJN6ED4cjs = require('./chunk-WRJN6ED4.cjs');
|
|
@@ -66,4 +68,6 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
66
68
|
|
|
67
69
|
|
|
68
70
|
|
|
69
|
-
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
exports.COLOR_KEYS = _chunkWRJN6ED4cjs.COLOR_KEYS; exports.ColorConfigMapSchema = _chunkITLP7RTFcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkITLP7RTFcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkITLP7RTFcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkITLP7RTFcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkITLP7RTFcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkITLP7RTFcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkITLP7RTFcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkITLP7RTFcjs.RegistryUrlConfigSchema; exports.STORM_DEFAULT_ACCOUNT_DISCORD = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_DISCORD; exports.STORM_DEFAULT_ACCOUNT_GITHUB = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_GITHUB; exports.STORM_DEFAULT_ACCOUNT_MEDIUM = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_MEDIUM; exports.STORM_DEFAULT_ACCOUNT_SLACK = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_SLACK; exports.STORM_DEFAULT_ACCOUNT_TELEGRAM = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_TELEGRAM; exports.STORM_DEFAULT_ACCOUNT_TWITTER = _chunkVFB443BHcjs.STORM_DEFAULT_ACCOUNT_TWITTER; exports.STORM_DEFAULT_CONTACT = _chunkVFB443BHcjs.STORM_DEFAULT_CONTACT; exports.STORM_DEFAULT_DOCS = _chunkVFB443BHcjs.STORM_DEFAULT_DOCS; exports.STORM_DEFAULT_ERROR_CODES_FILE = _chunkVFB443BHcjs.STORM_DEFAULT_ERROR_CODES_FILE; exports.STORM_DEFAULT_HOMEPAGE = _chunkVFB443BHcjs.STORM_DEFAULT_HOMEPAGE; exports.STORM_DEFAULT_LICENSE = _chunkVFB443BHcjs.STORM_DEFAULT_LICENSE; exports.STORM_DEFAULT_LICENSING = _chunkVFB443BHcjs.STORM_DEFAULT_LICENSING; exports.STORM_DEFAULT_RELEASE_BANNER = _chunkVFB443BHcjs.STORM_DEFAULT_RELEASE_BANNER; exports.STORM_DEFAULT_RELEASE_FOOTER = _chunkVFB443BHcjs.STORM_DEFAULT_RELEASE_FOOTER; exports.SingleThemeColorConfigSchema = _chunkITLP7RTFcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkITLP7RTFcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkITLP7RTFcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkITLP7RTFcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkITLP7RTFcjs.WorkspaceReleaseConfigSchema; exports.defineConfig = _chunkSNJKI2QWcjs.defineConfig; exports.errorConfigSchema = _chunkITLP7RTFcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkITLP7RTFcjs.stormWorkspaceConfigSchema;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
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_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER } from './constants.cjs';
|
|
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 } from './constants.cjs';
|
|
2
2
|
export { defineConfig } from './define-config.cjs';
|
|
3
|
-
export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema,
|
|
4
|
-
export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig,
|
|
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';
|
|
5
5
|
import 'zod';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
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_HOMEPAGE, STORM_DEFAULT_LICENSE, STORM_DEFAULT_LICENSING, STORM_DEFAULT_RELEASE_BANNER, STORM_DEFAULT_RELEASE_FOOTER } from './constants.js';
|
|
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 } from './constants.js';
|
|
2
2
|
export { defineConfig } from './define-config.js';
|
|
3
|
-
export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema,
|
|
4
|
-
export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig,
|
|
3
|
+
export { ColorConfigMapSchema, ColorConfigSchema, DarkThemeColorConfigSchema, ExtendsSchema, LightThemeColorConfigSchema, MultiThemeColorConfigSchema, RegistryConfigSchema, RegistryUrlConfigSchema, SingleThemeColorConfigSchema, WorkspaceAccountConfigSchema, WorkspaceBotConfigSchema, WorkspaceDirectoryConfigSchema, WorkspaceReleaseConfigSchema, errorConfigSchema, stormWorkspaceConfigSchema } from './schema.js';
|
|
4
|
+
export { COLOR_KEYS, ColorConfig, ColorConfigInput, ColorConfigMap, ColorConfigMapInput, DarkThemeColorConfig, DarkThemeColorConfigInput, LightThemeColorConfig, LightThemeColorConfigInput, MultiThemeColorConfig, MultiThemeColorConfigInput, SingleThemeColorConfig, SingleThemeColorConfigInput, StormConfig, StormWorkspaceConfig, StormWorkspaceConfigInput } from './types.js';
|
|
5
5
|
import 'zod';
|
package/dist/index.js
CHANGED
|
@@ -11,12 +11,13 @@ import {
|
|
|
11
11
|
RegistryConfigSchema,
|
|
12
12
|
RegistryUrlConfigSchema,
|
|
13
13
|
SingleThemeColorConfigSchema,
|
|
14
|
-
StormConfigSchema,
|
|
15
14
|
WorkspaceAccountConfigSchema,
|
|
16
15
|
WorkspaceBotConfigSchema,
|
|
17
16
|
WorkspaceDirectoryConfigSchema,
|
|
18
|
-
WorkspaceReleaseConfigSchema
|
|
19
|
-
|
|
17
|
+
WorkspaceReleaseConfigSchema,
|
|
18
|
+
errorConfigSchema,
|
|
19
|
+
stormWorkspaceConfigSchema
|
|
20
|
+
} from "./chunk-CIOGSYBE.js";
|
|
20
21
|
import {
|
|
21
22
|
STORM_DEFAULT_ACCOUNT_DISCORD,
|
|
22
23
|
STORM_DEFAULT_ACCOUNT_GITHUB,
|
|
@@ -26,12 +27,13 @@ import {
|
|
|
26
27
|
STORM_DEFAULT_ACCOUNT_TWITTER,
|
|
27
28
|
STORM_DEFAULT_CONTACT,
|
|
28
29
|
STORM_DEFAULT_DOCS,
|
|
30
|
+
STORM_DEFAULT_ERROR_CODES_FILE,
|
|
29
31
|
STORM_DEFAULT_HOMEPAGE,
|
|
30
32
|
STORM_DEFAULT_LICENSE,
|
|
31
33
|
STORM_DEFAULT_LICENSING,
|
|
32
34
|
STORM_DEFAULT_RELEASE_BANNER,
|
|
33
35
|
STORM_DEFAULT_RELEASE_FOOTER
|
|
34
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-JXP4TNRB.js";
|
|
35
37
|
import {
|
|
36
38
|
COLOR_KEYS
|
|
37
39
|
} from "./chunk-HFZRRAQB.js";
|
|
@@ -54,16 +56,18 @@ export {
|
|
|
54
56
|
STORM_DEFAULT_ACCOUNT_TWITTER,
|
|
55
57
|
STORM_DEFAULT_CONTACT,
|
|
56
58
|
STORM_DEFAULT_DOCS,
|
|
59
|
+
STORM_DEFAULT_ERROR_CODES_FILE,
|
|
57
60
|
STORM_DEFAULT_HOMEPAGE,
|
|
58
61
|
STORM_DEFAULT_LICENSE,
|
|
59
62
|
STORM_DEFAULT_LICENSING,
|
|
60
63
|
STORM_DEFAULT_RELEASE_BANNER,
|
|
61
64
|
STORM_DEFAULT_RELEASE_FOOTER,
|
|
62
65
|
SingleThemeColorConfigSchema,
|
|
63
|
-
StormConfigSchema,
|
|
64
66
|
WorkspaceAccountConfigSchema,
|
|
65
67
|
WorkspaceBotConfigSchema,
|
|
66
68
|
WorkspaceDirectoryConfigSchema,
|
|
67
69
|
WorkspaceReleaseConfigSchema,
|
|
68
|
-
defineConfig
|
|
70
|
+
defineConfig,
|
|
71
|
+
errorConfigSchema,
|
|
72
|
+
stormWorkspaceConfigSchema
|
|
69
73
|
};
|
package/dist/schema.cjs
CHANGED
|
@@ -13,8 +13,9 @@
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
require('./chunk-
|
|
16
|
+
|
|
17
|
+
var _chunkITLP7RTFcjs = require('./chunk-ITLP7RTF.cjs');
|
|
18
|
+
require('./chunk-VFB443BH.cjs');
|
|
18
19
|
require('./chunk-USNT2KNT.cjs');
|
|
19
20
|
|
|
20
21
|
|
|
@@ -31,4 +32,5 @@ require('./chunk-USNT2KNT.cjs');
|
|
|
31
32
|
|
|
32
33
|
|
|
33
34
|
|
|
34
|
-
|
|
35
|
+
|
|
36
|
+
exports.ColorConfigMapSchema = _chunkITLP7RTFcjs.ColorConfigMapSchema; exports.ColorConfigSchema = _chunkITLP7RTFcjs.ColorConfigSchema; exports.DarkThemeColorConfigSchema = _chunkITLP7RTFcjs.DarkThemeColorConfigSchema; exports.ExtendsSchema = _chunkITLP7RTFcjs.ExtendsSchema; exports.LightThemeColorConfigSchema = _chunkITLP7RTFcjs.LightThemeColorConfigSchema; exports.MultiThemeColorConfigSchema = _chunkITLP7RTFcjs.MultiThemeColorConfigSchema; exports.RegistryConfigSchema = _chunkITLP7RTFcjs.RegistryConfigSchema; exports.RegistryUrlConfigSchema = _chunkITLP7RTFcjs.RegistryUrlConfigSchema; exports.SingleThemeColorConfigSchema = _chunkITLP7RTFcjs.SingleThemeColorConfigSchema; exports.WorkspaceAccountConfigSchema = _chunkITLP7RTFcjs.WorkspaceAccountConfigSchema; exports.WorkspaceBotConfigSchema = _chunkITLP7RTFcjs.WorkspaceBotConfigSchema; exports.WorkspaceDirectoryConfigSchema = _chunkITLP7RTFcjs.WorkspaceDirectoryConfigSchema; exports.WorkspaceReleaseConfigSchema = _chunkITLP7RTFcjs.WorkspaceReleaseConfigSchema; exports.errorConfigSchema = _chunkITLP7RTFcjs.errorConfigSchema; exports.stormWorkspaceConfigSchema = _chunkITLP7RTFcjs.stormWorkspaceConfigSchema;
|