@storm-software/config 1.135.3 → 1.135.5
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 +12 -0
- package/README.md +1 -1
- package/dist/types.d.cts +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +3 -3
- package/src/schema.d.ts +42 -42
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.135.4](https://github.com/storm-software/storm-ops/releases/tag/config%401.135.4) (02/18/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **testing-tools** to **v1.119.78**
|
|
10
|
+
|
|
11
|
+
## [1.135.3](https://github.com/storm-software/storm-ops/releases/tag/config%401.135.3) (02/18/2026)
|
|
12
|
+
|
|
13
|
+
### Updated Dependencies
|
|
14
|
+
|
|
15
|
+
- Updated **testing-tools** to **v1.119.77**
|
|
16
|
+
|
|
5
17
|
## [1.135.2](https://github.com/storm-software/storm-ops/releases/tag/config%401.135.2) (02/18/2026)
|
|
6
18
|
|
|
7
19
|
### Miscellaneous
|
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
package/dist/types.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
|
-
import { workspaceConfigSchema,
|
|
2
|
+
import { workspaceConfigSchema, colorsSchema, themeColorsSchema, darkColorsSchema, lightColorsSchema, multiColorsSchema, organizationSchema, singleColorsSchema, variantSchema } from './schema.cjs';
|
|
3
3
|
import 'zod/mini';
|
|
4
4
|
|
|
5
5
|
type DarkThemeColors = z.infer<typeof darkColorsSchema>;
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
|
-
import { workspaceConfigSchema,
|
|
2
|
+
import { workspaceConfigSchema, colorsSchema, themeColorsSchema, darkColorsSchema, lightColorsSchema, multiColorsSchema, organizationSchema, singleColorsSchema, variantSchema } from './schema.js';
|
|
3
3
|
import 'zod/mini';
|
|
4
4
|
|
|
5
5
|
type DarkThemeColors = z.infer<typeof darkColorsSchema>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.135.
|
|
3
|
+
"version": "1.135.5",
|
|
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": "^4.
|
|
87
|
+
"dependencies": { "zod": "^4.3.6" },
|
|
88
88
|
"devDependencies": { "tsup": "8.4.0" },
|
|
89
89
|
"publishConfig": { "access": "public" },
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "ddb34f72b2d32fc5198a1d3a94829441d951bc82"
|
|
91
91
|
}
|
package/src/schema.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as z from "zod/mini";
|
|
2
|
-
export declare const schemaRegistry: z.core.$ZodRegistry<{
|
|
2
|
+
export declare const schemaRegistry: z.z.core.$ZodRegistry<{
|
|
3
3
|
description: string;
|
|
4
|
-
}, z.core.$ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
4
|
+
}, z.z.core.$ZodType<unknown, unknown, z.z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5
5
|
export declare const darkColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
6
6
|
export declare const lightColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
7
7
|
export declare const brandColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -35,7 +35,7 @@ export declare const darkColorsSchema: z.ZodMiniObject<{
|
|
|
35
35
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
36
36
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
37
37
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
38
|
-
}, z.core.$strip>;
|
|
38
|
+
}, z.z.core.$strip>;
|
|
39
39
|
export declare const lightColorsSchema: z.ZodMiniObject<{
|
|
40
40
|
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
41
41
|
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -53,7 +53,7 @@ export declare const lightColorsSchema: z.ZodMiniObject<{
|
|
|
53
53
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
54
54
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
55
55
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
56
|
-
}, z.core.$strip>;
|
|
56
|
+
}, z.z.core.$strip>;
|
|
57
57
|
export declare const multiColorsSchema: z.ZodMiniObject<{
|
|
58
58
|
dark: z.ZodMiniObject<{
|
|
59
59
|
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -72,7 +72,7 @@ export declare const multiColorsSchema: z.ZodMiniObject<{
|
|
|
72
72
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
73
73
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
74
74
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
75
|
-
}, z.core.$strip>;
|
|
75
|
+
}, z.z.core.$strip>;
|
|
76
76
|
light: z.ZodMiniObject<{
|
|
77
77
|
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
78
78
|
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -90,8 +90,8 @@ export declare const multiColorsSchema: z.ZodMiniObject<{
|
|
|
90
90
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
91
91
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
92
92
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
93
|
-
}, z.core.$strip>;
|
|
94
|
-
}, z.core.$strip>;
|
|
93
|
+
}, z.z.core.$strip>;
|
|
94
|
+
}, z.z.core.$strip>;
|
|
95
95
|
export declare const singleColorsSchema: z.ZodMiniObject<{
|
|
96
96
|
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
97
97
|
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -109,14 +109,14 @@ export declare const singleColorsSchema: z.ZodMiniObject<{
|
|
|
109
109
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
110
110
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
111
111
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
112
|
-
}, z.core.$strip>;
|
|
112
|
+
}, z.z.core.$strip>;
|
|
113
113
|
export declare const registrySchema: z.ZodMiniDefault<z.ZodMiniObject<{
|
|
114
114
|
github: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
115
115
|
npm: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
116
116
|
cargo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
117
117
|
cyclone: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
118
118
|
container: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
119
|
-
}, z.core.$strip>>;
|
|
119
|
+
}, z.z.core.$strip>>;
|
|
120
120
|
/**
|
|
121
121
|
* Storm theme color config values used for styling various workspace elements
|
|
122
122
|
*/
|
|
@@ -137,7 +137,7 @@ export declare const colorsSchema: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
137
137
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
138
138
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
139
139
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
140
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
140
|
+
}, z.z.core.$strip>, z.ZodMiniObject<{
|
|
141
141
|
dark: z.ZodMiniObject<{
|
|
142
142
|
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
143
143
|
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -155,7 +155,7 @@ export declare const colorsSchema: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
155
155
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
156
156
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
157
157
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
158
|
-
}, z.core.$strip>;
|
|
158
|
+
}, z.z.core.$strip>;
|
|
159
159
|
light: z.ZodMiniObject<{
|
|
160
160
|
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
161
161
|
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -173,8 +173,8 @@ export declare const colorsSchema: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
173
173
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
174
174
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
175
175
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
176
|
-
}, z.core.$strip>;
|
|
177
|
-
}, z.core.$strip>]>;
|
|
176
|
+
}, z.z.core.$strip>;
|
|
177
|
+
}, z.z.core.$strip>]>;
|
|
178
178
|
export declare const themeColorsSchema: z.ZodMiniRecord<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"base">, z.ZodMiniString<string>]>, z.ZodMiniString<string>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
179
179
|
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
180
180
|
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -192,7 +192,7 @@ export declare const themeColorsSchema: z.ZodMiniRecord<z.ZodMiniUnion<readonly
|
|
|
192
192
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
193
193
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
194
194
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
195
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
195
|
+
}, z.z.core.$strip>, z.ZodMiniObject<{
|
|
196
196
|
dark: z.ZodMiniObject<{
|
|
197
197
|
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
198
198
|
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -210,7 +210,7 @@ export declare const themeColorsSchema: z.ZodMiniRecord<z.ZodMiniUnion<readonly
|
|
|
210
210
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
211
211
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
212
212
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
213
|
-
}, z.core.$strip>;
|
|
213
|
+
}, z.z.core.$strip>;
|
|
214
214
|
light: z.ZodMiniObject<{
|
|
215
215
|
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
216
216
|
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -228,29 +228,29 @@ export declare const themeColorsSchema: z.ZodMiniRecord<z.ZodMiniUnion<readonly
|
|
|
228
228
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
229
229
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
230
230
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
231
|
-
}, z.core.$strip>;
|
|
232
|
-
}, z.core.$strip>]>>;
|
|
231
|
+
}, z.z.core.$strip>;
|
|
232
|
+
}, z.z.core.$strip>]>>;
|
|
233
233
|
export declare const extendsSchema: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
234
234
|
export declare const workspaceBotSchema: z.ZodMiniObject<{
|
|
235
235
|
name: z.ZodMiniString<string>;
|
|
236
236
|
email: z.ZodMiniString<string>;
|
|
237
|
-
}, z.core.$strip>;
|
|
237
|
+
}, z.z.core.$strip>;
|
|
238
238
|
export declare const workspaceReleaseBannerUrlSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
239
239
|
export declare const workspaceReleaseBannerAltSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
240
240
|
export declare const workspaceReleaseBannerSchema: z.ZodMiniObject<{
|
|
241
241
|
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
242
242
|
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
243
|
-
}, z.core.$strip>;
|
|
243
|
+
}, z.z.core.$strip>;
|
|
244
244
|
export declare const workspaceReleaseHeaderSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
245
245
|
export declare const workspaceReleaseFooterSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
246
246
|
export declare const workspaceReleaseSchema: z.ZodMiniObject<{
|
|
247
247
|
banner: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
248
248
|
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
249
249
|
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
250
|
-
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
250
|
+
}, z.z.core.$strip>, z.ZodMiniString<string>]>;
|
|
251
251
|
header: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
252
252
|
footer: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
253
|
-
}, z.core.$strip>;
|
|
253
|
+
}, z.z.core.$strip>;
|
|
254
254
|
export declare const workspaceSocialsTwitterSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
255
255
|
export declare const workspaceSocialsDiscordSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
256
256
|
export declare const workspaceSocialsTelegramSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -264,7 +264,7 @@ export declare const workspaceSocialsSchema: z.ZodMiniObject<{
|
|
|
264
264
|
slack: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
265
265
|
medium: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
266
266
|
github: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
267
|
-
}, z.core.$strip>;
|
|
267
|
+
}, z.z.core.$strip>;
|
|
268
268
|
export declare const workspaceDirectoryCacheSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
269
269
|
export declare const workspaceDirectoryDataSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
270
270
|
export declare const workspaceDirectoryConfigSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -278,7 +278,7 @@ export declare const workspaceDirectorySchema: z.ZodMiniObject<{
|
|
|
278
278
|
temp: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
279
279
|
log: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
280
280
|
build: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
281
|
-
}, z.core.$strip>;
|
|
281
|
+
}, z.z.core.$strip>;
|
|
282
282
|
export declare const variantSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
283
283
|
minimal: "minimal";
|
|
284
284
|
monorepo: "monorepo";
|
|
@@ -288,7 +288,7 @@ export declare const errorUrlSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
|
288
288
|
export declare const errorSchema: z.ZodMiniObject<{
|
|
289
289
|
codesFile: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
290
290
|
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
291
|
-
}, z.core.$strip>;
|
|
291
|
+
}, z.z.core.$strip>;
|
|
292
292
|
export declare const organizationNameSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
293
293
|
export declare const organizationDescriptionSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
294
294
|
export declare const organizationLogoSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
@@ -300,7 +300,7 @@ export declare const organizationSchema: z.ZodMiniObject<{
|
|
|
300
300
|
logo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
301
301
|
icon: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
302
302
|
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
303
|
-
}, z.core.$strip>;
|
|
303
|
+
}, z.z.core.$strip>;
|
|
304
304
|
/**
|
|
305
305
|
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
306
306
|
*/
|
|
@@ -361,7 +361,7 @@ export declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
361
361
|
logo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
362
362
|
icon: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
363
363
|
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
364
|
-
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
364
|
+
}, z.z.core.$strip>, z.ZodMiniString<string>]>;
|
|
365
365
|
repository: z.ZodMiniString<string>;
|
|
366
366
|
license: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
367
367
|
homepage: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
@@ -376,15 +376,15 @@ export declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
376
376
|
bot: z.ZodMiniObject<{
|
|
377
377
|
name: z.ZodMiniString<string>;
|
|
378
378
|
email: z.ZodMiniString<string>;
|
|
379
|
-
}, z.core.$strip>;
|
|
379
|
+
}, z.z.core.$strip>;
|
|
380
380
|
release: z.ZodMiniObject<{
|
|
381
381
|
banner: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
382
382
|
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
383
383
|
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
384
|
-
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
384
|
+
}, z.z.core.$strip>, z.ZodMiniString<string>]>;
|
|
385
385
|
header: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
386
386
|
footer: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
387
|
-
}, z.core.$strip>;
|
|
387
|
+
}, z.z.core.$strip>;
|
|
388
388
|
socials: z.ZodMiniObject<{
|
|
389
389
|
twitter: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
390
390
|
discord: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -392,11 +392,11 @@ export declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
392
392
|
slack: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
393
393
|
medium: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
394
394
|
github: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
395
|
-
}, z.core.$strip>;
|
|
395
|
+
}, z.z.core.$strip>;
|
|
396
396
|
error: z.ZodMiniObject<{
|
|
397
397
|
codesFile: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
398
398
|
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
399
|
-
}, z.core.$strip>;
|
|
399
|
+
}, z.z.core.$strip>;
|
|
400
400
|
mode: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
401
401
|
development: "development";
|
|
402
402
|
test: "test";
|
|
@@ -411,7 +411,7 @@ export declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
411
411
|
temp: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
412
412
|
log: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
413
413
|
build: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
414
|
-
}, z.core.$strip>;
|
|
414
|
+
}, z.z.core.$strip>;
|
|
415
415
|
packageManager: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
416
416
|
npm: "npm";
|
|
417
417
|
yarn: "yarn";
|
|
@@ -438,7 +438,7 @@ export declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
438
438
|
cargo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
439
439
|
cyclone: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
440
440
|
container: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
441
|
-
}, z.core.$strip>>;
|
|
441
|
+
}, z.z.core.$strip>>;
|
|
442
442
|
configFile: z.ZodMiniDefault<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
443
443
|
colors: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
444
444
|
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -457,7 +457,7 @@ export declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
457
457
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
458
458
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
459
459
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
460
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
460
|
+
}, z.z.core.$strip>, z.ZodMiniObject<{
|
|
461
461
|
dark: z.ZodMiniObject<{
|
|
462
462
|
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
463
463
|
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -475,7 +475,7 @@ export declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
475
475
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
476
476
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
477
477
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
478
|
-
}, z.core.$strip>;
|
|
478
|
+
}, z.z.core.$strip>;
|
|
479
479
|
light: z.ZodMiniObject<{
|
|
480
480
|
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
481
481
|
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -493,8 +493,8 @@ export declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
493
493
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
494
494
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
495
495
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
496
|
-
}, z.core.$strip>;
|
|
497
|
-
}, z.core.$strip>]>, z.ZodMiniRecord<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"base">, z.ZodMiniString<string>]>, z.ZodMiniString<string>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
496
|
+
}, z.z.core.$strip>;
|
|
497
|
+
}, z.z.core.$strip>]>, z.ZodMiniRecord<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"base">, z.ZodMiniString<string>]>, z.ZodMiniString<string>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
498
498
|
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
499
499
|
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
500
500
|
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -511,7 +511,7 @@ export declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
511
511
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
512
512
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
513
513
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
514
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
514
|
+
}, z.z.core.$strip>, z.ZodMiniObject<{
|
|
515
515
|
dark: z.ZodMiniObject<{
|
|
516
516
|
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
517
517
|
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -529,7 +529,7 @@ export declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
529
529
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
530
530
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
531
531
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
532
|
-
}, z.core.$strip>;
|
|
532
|
+
}, z.z.core.$strip>;
|
|
533
533
|
light: z.ZodMiniObject<{
|
|
534
534
|
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
535
535
|
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
@@ -547,7 +547,7 @@ export declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
547
547
|
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
548
548
|
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
549
549
|
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
550
|
-
}, z.core.$strip>;
|
|
551
|
-
}, z.core.$strip>]>>]>;
|
|
550
|
+
}, z.z.core.$strip>;
|
|
551
|
+
}, z.z.core.$strip>]>>]>;
|
|
552
552
|
extensions: z.ZodMiniDefault<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniAny>>;
|
|
553
|
-
}, z.core.$strip>;
|
|
553
|
+
}, z.z.core.$strip>;
|