@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/src/define-config.d.ts
CHANGED
|
@@ -16,12 +16,12 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
16
16
|
footer?: string | undefined;
|
|
17
17
|
};
|
|
18
18
|
account: {
|
|
19
|
-
github?: string | undefined;
|
|
20
19
|
twitter?: string | undefined;
|
|
21
20
|
discord?: string | undefined;
|
|
22
21
|
telegram?: string | undefined;
|
|
23
22
|
slack?: string | undefined;
|
|
24
23
|
medium?: string | undefined;
|
|
24
|
+
github?: string | undefined;
|
|
25
25
|
};
|
|
26
26
|
error: {
|
|
27
27
|
codesFile?: string | undefined;
|
|
@@ -70,6 +70,8 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
70
70
|
negative?: string | undefined;
|
|
71
71
|
};
|
|
72
72
|
} | {
|
|
73
|
+
dark?: string | undefined;
|
|
74
|
+
light?: string | undefined;
|
|
73
75
|
brand?: string | undefined;
|
|
74
76
|
alternate?: string | undefined;
|
|
75
77
|
accent?: string | undefined;
|
|
@@ -82,9 +84,55 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
82
84
|
fatal?: string | undefined;
|
|
83
85
|
positive?: string | undefined;
|
|
84
86
|
negative?: string | undefined;
|
|
87
|
+
} | Record<string, {
|
|
88
|
+
dark: {
|
|
89
|
+
foreground?: string | undefined;
|
|
90
|
+
background?: string | undefined;
|
|
91
|
+
brand?: string | undefined;
|
|
92
|
+
alternate?: string | undefined;
|
|
93
|
+
accent?: string | undefined;
|
|
94
|
+
link?: string | undefined;
|
|
95
|
+
help?: string | undefined;
|
|
96
|
+
success?: string | undefined;
|
|
97
|
+
info?: string | undefined;
|
|
98
|
+
warning?: string | undefined;
|
|
99
|
+
danger?: string | undefined;
|
|
100
|
+
fatal?: string | undefined;
|
|
101
|
+
positive?: string | undefined;
|
|
102
|
+
negative?: string | undefined;
|
|
103
|
+
};
|
|
104
|
+
light: {
|
|
105
|
+
foreground?: string | undefined;
|
|
106
|
+
background?: string | undefined;
|
|
107
|
+
brand?: string | undefined;
|
|
108
|
+
alternate?: string | undefined;
|
|
109
|
+
accent?: string | undefined;
|
|
110
|
+
link?: string | undefined;
|
|
111
|
+
help?: string | undefined;
|
|
112
|
+
success?: string | undefined;
|
|
113
|
+
info?: string | undefined;
|
|
114
|
+
warning?: string | undefined;
|
|
115
|
+
danger?: string | undefined;
|
|
116
|
+
fatal?: string | undefined;
|
|
117
|
+
positive?: string | undefined;
|
|
118
|
+
negative?: string | undefined;
|
|
119
|
+
};
|
|
120
|
+
} | {
|
|
85
121
|
dark?: string | undefined;
|
|
86
122
|
light?: string | undefined;
|
|
87
|
-
|
|
123
|
+
brand?: string | undefined;
|
|
124
|
+
alternate?: string | undefined;
|
|
125
|
+
accent?: string | undefined;
|
|
126
|
+
link?: string | undefined;
|
|
127
|
+
help?: string | undefined;
|
|
128
|
+
success?: string | undefined;
|
|
129
|
+
info?: string | undefined;
|
|
130
|
+
warning?: string | undefined;
|
|
131
|
+
danger?: string | undefined;
|
|
132
|
+
fatal?: string | undefined;
|
|
133
|
+
positive?: string | undefined;
|
|
134
|
+
negative?: string | undefined;
|
|
135
|
+
}> | {
|
|
88
136
|
base: {
|
|
89
137
|
dark: {
|
|
90
138
|
foreground?: string | undefined;
|
|
@@ -119,41 +167,8 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
119
167
|
negative?: string | undefined;
|
|
120
168
|
};
|
|
121
169
|
} | {
|
|
122
|
-
brand?: string | undefined;
|
|
123
|
-
alternate?: string | undefined;
|
|
124
|
-
accent?: string | undefined;
|
|
125
|
-
link?: string | undefined;
|
|
126
|
-
help?: string | undefined;
|
|
127
|
-
success?: string | undefined;
|
|
128
|
-
info?: string | undefined;
|
|
129
|
-
warning?: string | undefined;
|
|
130
|
-
danger?: string | undefined;
|
|
131
|
-
fatal?: string | undefined;
|
|
132
|
-
positive?: string | undefined;
|
|
133
|
-
negative?: string | undefined;
|
|
134
170
|
dark?: string | undefined;
|
|
135
171
|
light?: string | undefined;
|
|
136
|
-
};
|
|
137
|
-
} | Record<string, {
|
|
138
|
-
dark: {
|
|
139
|
-
foreground?: string | undefined;
|
|
140
|
-
background?: string | undefined;
|
|
141
|
-
brand?: string | undefined;
|
|
142
|
-
alternate?: string | undefined;
|
|
143
|
-
accent?: string | undefined;
|
|
144
|
-
link?: string | undefined;
|
|
145
|
-
help?: string | undefined;
|
|
146
|
-
success?: string | undefined;
|
|
147
|
-
info?: string | undefined;
|
|
148
|
-
warning?: string | undefined;
|
|
149
|
-
danger?: string | undefined;
|
|
150
|
-
fatal?: string | undefined;
|
|
151
|
-
positive?: string | undefined;
|
|
152
|
-
negative?: string | undefined;
|
|
153
|
-
};
|
|
154
|
-
light: {
|
|
155
|
-
foreground?: string | undefined;
|
|
156
|
-
background?: string | undefined;
|
|
157
172
|
brand?: string | undefined;
|
|
158
173
|
alternate?: string | undefined;
|
|
159
174
|
accent?: string | undefined;
|
|
@@ -167,32 +182,17 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
167
182
|
positive?: string | undefined;
|
|
168
183
|
negative?: string | undefined;
|
|
169
184
|
};
|
|
170
|
-
}
|
|
171
|
-
brand?: string | undefined;
|
|
172
|
-
alternate?: string | undefined;
|
|
173
|
-
accent?: string | undefined;
|
|
174
|
-
link?: string | undefined;
|
|
175
|
-
help?: string | undefined;
|
|
176
|
-
success?: string | undefined;
|
|
177
|
-
info?: string | undefined;
|
|
178
|
-
warning?: string | undefined;
|
|
179
|
-
danger?: string | undefined;
|
|
180
|
-
fatal?: string | undefined;
|
|
181
|
-
positive?: string | undefined;
|
|
182
|
-
negative?: string | undefined;
|
|
183
|
-
dark?: string | undefined;
|
|
184
|
-
light?: string | undefined;
|
|
185
|
-
}>;
|
|
186
|
-
name?: string | undefined;
|
|
185
|
+
};
|
|
187
186
|
$schema?: string | null | undefined;
|
|
188
187
|
extends?: string | string[] | undefined;
|
|
188
|
+
name?: string | undefined;
|
|
189
189
|
namespace?: string | undefined;
|
|
190
190
|
organization?: string | {
|
|
191
191
|
name: string;
|
|
192
|
-
url?: string | undefined;
|
|
193
192
|
description?: string | undefined;
|
|
194
193
|
logo?: string | undefined;
|
|
195
194
|
icon?: string | undefined;
|
|
195
|
+
url?: string | undefined;
|
|
196
196
|
} | undefined;
|
|
197
197
|
repository?: string | undefined;
|
|
198
198
|
license?: string | undefined;
|
|
@@ -211,7 +211,7 @@ export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
211
211
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
212
212
|
timezone?: string | undefined;
|
|
213
213
|
locale?: string | undefined;
|
|
214
|
-
logLevel?: "
|
|
214
|
+
logLevel?: "error" | "success" | "info" | "fatal" | "silent" | "warn" | "debug" | "trace" | "all" | undefined;
|
|
215
215
|
skipConfigLogging?: boolean | undefined;
|
|
216
216
|
registry?: {
|
|
217
217
|
github?: string | undefined;
|