@storm-software/config 1.137.73 → 1.137.74
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 +16 -0
- package/dist/define-config.d.cts +21 -21
- package/dist/define-config.d.ts +21 -21
- package/dist/schema.d.cts +10 -10
- package/dist/schema.d.ts +10 -10
- package/package.json +2 -2
- package/src/constants.d.ts +0 -16
- package/src/define-config.d.ts +0 -196
- package/src/index.d.ts +0 -12
- package/src/schema.d.ts +0 -573
- package/src/types.d.ts +0 -43
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog for Storm Ops - Config
|
|
4
4
|
|
|
5
|
+
## [1.137.74](https://github.com/storm-software/storm-ops/releases/tag/config%401.137.74) (06/08/2026)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **testing-tools** to **v1.119.195**
|
|
10
|
+
|
|
11
|
+
## [1.137.73](https://github.com/storm-software/storm-ops/releases/tag/config%401.137.73) (06/08/2026)
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- **oxlint:** Added oxlint config package and eslint plugins ([80c3439b6](https://github.com/storm-software/storm-ops/commit/80c3439b6))
|
|
16
|
+
|
|
17
|
+
### Updated Dependencies
|
|
18
|
+
|
|
19
|
+
- Updated **testing-tools** to **v1.119.194**
|
|
20
|
+
|
|
5
21
|
## [1.137.72](https://github.com/storm-software/storm-ops/releases/tag/config%401.137.72) (06/01/2026)
|
|
6
22
|
|
|
7
23
|
### Updated Dependencies
|
package/dist/define-config.d.cts
CHANGED
|
@@ -54,6 +54,24 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
54
54
|
build?: string | undefined;
|
|
55
55
|
};
|
|
56
56
|
colors: {
|
|
57
|
+
dark?: string | undefined;
|
|
58
|
+
light?: string | undefined;
|
|
59
|
+
brand?: string | undefined;
|
|
60
|
+
alternate?: string | undefined;
|
|
61
|
+
accent?: string | undefined;
|
|
62
|
+
link?: string | undefined;
|
|
63
|
+
help?: string | undefined;
|
|
64
|
+
success?: string | undefined;
|
|
65
|
+
info?: string | undefined;
|
|
66
|
+
debug?: string | undefined;
|
|
67
|
+
warning?: string | undefined;
|
|
68
|
+
danger?: string | undefined;
|
|
69
|
+
fatal?: string | undefined;
|
|
70
|
+
performance?: string | undefined;
|
|
71
|
+
positive?: string | undefined;
|
|
72
|
+
negative?: string | undefined;
|
|
73
|
+
gradient?: string[] | undefined;
|
|
74
|
+
} | {
|
|
57
75
|
dark: {
|
|
58
76
|
foreground?: string | undefined;
|
|
59
77
|
background?: string | undefined;
|
|
@@ -92,7 +110,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
92
110
|
negative?: string | undefined;
|
|
93
111
|
gradient?: string[] | undefined;
|
|
94
112
|
};
|
|
95
|
-
} | {
|
|
113
|
+
} | Record<string, {
|
|
96
114
|
dark?: string | undefined;
|
|
97
115
|
light?: string | undefined;
|
|
98
116
|
brand?: string | undefined;
|
|
@@ -110,7 +128,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
110
128
|
positive?: string | undefined;
|
|
111
129
|
negative?: string | undefined;
|
|
112
130
|
gradient?: string[] | undefined;
|
|
113
|
-
} |
|
|
131
|
+
} | {
|
|
114
132
|
dark: {
|
|
115
133
|
foreground?: string | undefined;
|
|
116
134
|
background?: string | undefined;
|
|
@@ -149,24 +167,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
149
167
|
negative?: string | undefined;
|
|
150
168
|
gradient?: string[] | undefined;
|
|
151
169
|
};
|
|
152
|
-
} | {
|
|
153
|
-
dark?: string | undefined;
|
|
154
|
-
light?: string | undefined;
|
|
155
|
-
brand?: string | undefined;
|
|
156
|
-
alternate?: string | undefined;
|
|
157
|
-
accent?: string | undefined;
|
|
158
|
-
link?: string | undefined;
|
|
159
|
-
help?: string | undefined;
|
|
160
|
-
success?: string | undefined;
|
|
161
|
-
info?: string | undefined;
|
|
162
|
-
debug?: string | undefined;
|
|
163
|
-
warning?: string | undefined;
|
|
164
|
-
danger?: string | undefined;
|
|
165
|
-
fatal?: string | undefined;
|
|
166
|
-
performance?: string | undefined;
|
|
167
|
-
positive?: string | undefined;
|
|
168
|
-
negative?: string | undefined;
|
|
169
|
-
gradient?: string[] | undefined;
|
|
170
170
|
}>;
|
|
171
171
|
$schema?: string | undefined;
|
|
172
172
|
extends?: string | string[] | undefined;
|
|
@@ -186,7 +186,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
186
186
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
187
187
|
timezone?: string | undefined;
|
|
188
188
|
locale?: string | undefined;
|
|
189
|
-
logLevel?: "
|
|
189
|
+
logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "performance" | "debug" | "trace" | "all" | undefined;
|
|
190
190
|
skipConfigLogging?: boolean | undefined;
|
|
191
191
|
registry?: {
|
|
192
192
|
github?: string | undefined;
|
package/dist/define-config.d.ts
CHANGED
|
@@ -54,6 +54,24 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
54
54
|
build?: string | undefined;
|
|
55
55
|
};
|
|
56
56
|
colors: {
|
|
57
|
+
dark?: string | undefined;
|
|
58
|
+
light?: string | undefined;
|
|
59
|
+
brand?: string | undefined;
|
|
60
|
+
alternate?: string | undefined;
|
|
61
|
+
accent?: string | undefined;
|
|
62
|
+
link?: string | undefined;
|
|
63
|
+
help?: string | undefined;
|
|
64
|
+
success?: string | undefined;
|
|
65
|
+
info?: string | undefined;
|
|
66
|
+
debug?: string | undefined;
|
|
67
|
+
warning?: string | undefined;
|
|
68
|
+
danger?: string | undefined;
|
|
69
|
+
fatal?: string | undefined;
|
|
70
|
+
performance?: string | undefined;
|
|
71
|
+
positive?: string | undefined;
|
|
72
|
+
negative?: string | undefined;
|
|
73
|
+
gradient?: string[] | undefined;
|
|
74
|
+
} | {
|
|
57
75
|
dark: {
|
|
58
76
|
foreground?: string | undefined;
|
|
59
77
|
background?: string | undefined;
|
|
@@ -92,7 +110,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
92
110
|
negative?: string | undefined;
|
|
93
111
|
gradient?: string[] | undefined;
|
|
94
112
|
};
|
|
95
|
-
} | {
|
|
113
|
+
} | Record<string, {
|
|
96
114
|
dark?: string | undefined;
|
|
97
115
|
light?: string | undefined;
|
|
98
116
|
brand?: string | undefined;
|
|
@@ -110,7 +128,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
110
128
|
positive?: string | undefined;
|
|
111
129
|
negative?: string | undefined;
|
|
112
130
|
gradient?: string[] | undefined;
|
|
113
|
-
} |
|
|
131
|
+
} | {
|
|
114
132
|
dark: {
|
|
115
133
|
foreground?: string | undefined;
|
|
116
134
|
background?: string | undefined;
|
|
@@ -149,24 +167,6 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
149
167
|
negative?: string | undefined;
|
|
150
168
|
gradient?: string[] | undefined;
|
|
151
169
|
};
|
|
152
|
-
} | {
|
|
153
|
-
dark?: string | undefined;
|
|
154
|
-
light?: string | undefined;
|
|
155
|
-
brand?: string | undefined;
|
|
156
|
-
alternate?: string | undefined;
|
|
157
|
-
accent?: string | undefined;
|
|
158
|
-
link?: string | undefined;
|
|
159
|
-
help?: string | undefined;
|
|
160
|
-
success?: string | undefined;
|
|
161
|
-
info?: string | undefined;
|
|
162
|
-
debug?: string | undefined;
|
|
163
|
-
warning?: string | undefined;
|
|
164
|
-
danger?: string | undefined;
|
|
165
|
-
fatal?: string | undefined;
|
|
166
|
-
performance?: string | undefined;
|
|
167
|
-
positive?: string | undefined;
|
|
168
|
-
negative?: string | undefined;
|
|
169
|
-
gradient?: string[] | undefined;
|
|
170
170
|
}>;
|
|
171
171
|
$schema?: string | undefined;
|
|
172
172
|
extends?: string | string[] | undefined;
|
|
@@ -186,7 +186,7 @@ declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
|
186
186
|
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
187
187
|
timezone?: string | undefined;
|
|
188
188
|
locale?: string | undefined;
|
|
189
|
-
logLevel?: "
|
|
189
|
+
logLevel?: "error" | "success" | "silent" | "fatal" | "warn" | "info" | "performance" | "debug" | "trace" | "all" | undefined;
|
|
190
190
|
skipConfigLogging?: boolean | undefined;
|
|
191
191
|
registry?: {
|
|
192
192
|
github?: string | undefined;
|
package/dist/schema.d.cts
CHANGED
|
@@ -343,14 +343,14 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
|
343
343
|
declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
344
344
|
declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
345
345
|
declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
346
|
+
error: "error";
|
|
346
347
|
success: "success";
|
|
347
|
-
info: "info";
|
|
348
|
-
debug: "debug";
|
|
349
|
-
fatal: "fatal";
|
|
350
|
-
performance: "performance";
|
|
351
348
|
silent: "silent";
|
|
352
|
-
|
|
349
|
+
fatal: "fatal";
|
|
353
350
|
warn: "warn";
|
|
351
|
+
info: "info";
|
|
352
|
+
performance: "performance";
|
|
353
|
+
debug: "debug";
|
|
354
354
|
trace: "trace";
|
|
355
355
|
all: "all";
|
|
356
356
|
}>>;
|
|
@@ -435,14 +435,14 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
435
435
|
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
436
436
|
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
437
437
|
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
438
|
+
error: "error";
|
|
438
439
|
success: "success";
|
|
439
|
-
info: "info";
|
|
440
|
-
debug: "debug";
|
|
441
|
-
fatal: "fatal";
|
|
442
|
-
performance: "performance";
|
|
443
440
|
silent: "silent";
|
|
444
|
-
|
|
441
|
+
fatal: "fatal";
|
|
445
442
|
warn: "warn";
|
|
443
|
+
info: "info";
|
|
444
|
+
performance: "performance";
|
|
445
|
+
debug: "debug";
|
|
446
446
|
trace: "trace";
|
|
447
447
|
all: "all";
|
|
448
448
|
}>>;
|
package/dist/schema.d.ts
CHANGED
|
@@ -343,14 +343,14 @@ declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
|
343
343
|
declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
344
344
|
declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
345
345
|
declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
346
|
+
error: "error";
|
|
346
347
|
success: "success";
|
|
347
|
-
info: "info";
|
|
348
|
-
debug: "debug";
|
|
349
|
-
fatal: "fatal";
|
|
350
|
-
performance: "performance";
|
|
351
348
|
silent: "silent";
|
|
352
|
-
|
|
349
|
+
fatal: "fatal";
|
|
353
350
|
warn: "warn";
|
|
351
|
+
info: "info";
|
|
352
|
+
performance: "performance";
|
|
353
|
+
debug: "debug";
|
|
354
354
|
trace: "trace";
|
|
355
355
|
all: "all";
|
|
356
356
|
}>>;
|
|
@@ -435,14 +435,14 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
|
435
435
|
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
436
436
|
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
437
437
|
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
438
|
+
error: "error";
|
|
438
439
|
success: "success";
|
|
439
|
-
info: "info";
|
|
440
|
-
debug: "debug";
|
|
441
|
-
fatal: "fatal";
|
|
442
|
-
performance: "performance";
|
|
443
440
|
silent: "silent";
|
|
444
|
-
|
|
441
|
+
fatal: "fatal";
|
|
445
442
|
warn: "warn";
|
|
443
|
+
info: "info";
|
|
444
|
+
performance: "performance";
|
|
445
|
+
debug: "debug";
|
|
446
446
|
trace: "trace";
|
|
447
447
|
all: "all";
|
|
448
448
|
}>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/config",
|
|
3
|
-
"version": "1.137.
|
|
3
|
+
"version": "1.137.74",
|
|
4
4
|
"private": false,
|
|
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": {
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"devDependencies": { "tsup": "8.4.0", "zod": "^4.4.3" },
|
|
88
88
|
"peerDependencies": { "zod": "^3.25.0 || ^4.0.0" },
|
|
89
89
|
"publishConfig": { "access": "public" },
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "e7b73c4c2993c491b5093a293d8447183541439c"
|
|
91
91
|
}
|
package/src/constants.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export declare const STORM_DEFAULT_DOCS = "https://docs.stormsoftware.com";
|
|
2
|
-
export declare const STORM_DEFAULT_HOMEPAGE = "https://stormsoftware.com";
|
|
3
|
-
export declare const STORM_DEFAULT_CONTACT = "https://stormsoftware.com/contact";
|
|
4
|
-
export declare const STORM_DEFAULT_SUPPORT = "https://stormsoftware.com/support";
|
|
5
|
-
export declare const STORM_DEFAULT_LICENSING = "https://stormsoftware.com/license";
|
|
6
|
-
export declare const STORM_DEFAULT_LICENSE = "Apache-2.0";
|
|
7
|
-
export declare const STORM_DEFAULT_RELEASE_BANNER = "https://public.storm-cdn.com/brand-banner.png";
|
|
8
|
-
export declare const STORM_DEFAULT_SOCIAL_TWITTER = "StormSoftwareHQ";
|
|
9
|
-
export declare const STORM_DEFAULT_SOCIAL_DISCORD = "https://discord.gg/MQ6YVzakM5";
|
|
10
|
-
export declare const STORM_DEFAULT_SOCIAL_TELEGRAM = "https://t.me/storm_software";
|
|
11
|
-
export declare const STORM_DEFAULT_SOCIAL_SLACK = "https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA";
|
|
12
|
-
export declare const STORM_DEFAULT_SOCIAL_MEDIUM = "https://medium.com/storm-software";
|
|
13
|
-
export declare const STORM_DEFAULT_SOCIAL_GITHUB = "https://github.com/storm-software";
|
|
14
|
-
export declare const STORM_DEFAULT_RELEASE_FOOTER = "\nStorm Software is an open source software development organization with the mission is to make software development more accessible. Our ideal future is one where anyone can create software without years of prior development experience serving as a barrier to entry. We hope to achieve this via LLMs, Generative AI, and intuitive, high-level data modeling/programming languages.\n\nJoin us on [Discord](https://discord.gg/MQ6YVzakM5) to chat with the team, receive release notifications, ask questions, and get involved.\n\nIf this sounds interesting, and you would like to help us in creating the next generation of development tools, please reach out on our [website](https://stormsoftware.com/contact) or join our [Slack](https://join.slack.com/t/storm-software/shared_invite/zt-2gsmk04hs-i6yhK_r6urq0dkZYAwq2pA) channel!\n";
|
|
15
|
-
export declare const STORM_DEFAULT_ERROR_CODES_FILE = "tools/errors/codes.json";
|
|
16
|
-
export declare const STORM_DEFAULT_BANNER_ALT = "The workspace's banner image";
|
package/src/define-config.d.ts
DELETED
|
@@ -1,196 +0,0 @@
|
|
|
1
|
-
import type { StormWorkspaceConfigInput } from "./types";
|
|
2
|
-
/**
|
|
3
|
-
* Type the config values for the current Storm workspace
|
|
4
|
-
*
|
|
5
|
-
* @param input - The config values for the current Storm workspace
|
|
6
|
-
* @returns The config values for the current Storm workspace
|
|
7
|
-
*/
|
|
8
|
-
export declare const defineConfig: (input: StormWorkspaceConfigInput) => {
|
|
9
|
-
name: string;
|
|
10
|
-
namespace: string;
|
|
11
|
-
organization: string | {
|
|
12
|
-
name?: string | undefined;
|
|
13
|
-
description?: string | undefined;
|
|
14
|
-
logo?: string | undefined;
|
|
15
|
-
icon?: string | undefined;
|
|
16
|
-
url?: string | undefined;
|
|
17
|
-
};
|
|
18
|
-
repository: string;
|
|
19
|
-
bot: {
|
|
20
|
-
name: string;
|
|
21
|
-
email: string;
|
|
22
|
-
};
|
|
23
|
-
release: {
|
|
24
|
-
banner: string | {
|
|
25
|
-
url?: string | undefined;
|
|
26
|
-
alt?: string | undefined;
|
|
27
|
-
};
|
|
28
|
-
header?: string | undefined;
|
|
29
|
-
footer?: string | undefined;
|
|
30
|
-
};
|
|
31
|
-
socials: {
|
|
32
|
-
twitter?: string | undefined;
|
|
33
|
-
discord?: string | undefined;
|
|
34
|
-
telegram?: string | undefined;
|
|
35
|
-
slack?: string | undefined;
|
|
36
|
-
medium?: string | undefined;
|
|
37
|
-
github?: string | undefined;
|
|
38
|
-
};
|
|
39
|
-
error: {
|
|
40
|
-
codesFile?: string | undefined;
|
|
41
|
-
url?: string | undefined;
|
|
42
|
-
};
|
|
43
|
-
workspaceRoot: string;
|
|
44
|
-
directories: {
|
|
45
|
-
cache?: string | undefined;
|
|
46
|
-
data?: string | undefined;
|
|
47
|
-
config?: string | undefined;
|
|
48
|
-
temp?: string | undefined;
|
|
49
|
-
log?: string | undefined;
|
|
50
|
-
build?: string | undefined;
|
|
51
|
-
};
|
|
52
|
-
colors: {
|
|
53
|
-
dark: {
|
|
54
|
-
foreground?: string | undefined;
|
|
55
|
-
background?: string | undefined;
|
|
56
|
-
brand?: string | undefined;
|
|
57
|
-
alternate?: string | undefined;
|
|
58
|
-
accent?: string | undefined;
|
|
59
|
-
link?: string | undefined;
|
|
60
|
-
help?: string | undefined;
|
|
61
|
-
success?: string | undefined;
|
|
62
|
-
info?: string | undefined;
|
|
63
|
-
debug?: string | undefined;
|
|
64
|
-
warning?: string | undefined;
|
|
65
|
-
danger?: string | undefined;
|
|
66
|
-
fatal?: string | undefined;
|
|
67
|
-
performance?: string | undefined;
|
|
68
|
-
positive?: string | undefined;
|
|
69
|
-
negative?: string | undefined;
|
|
70
|
-
gradient?: string[] | undefined;
|
|
71
|
-
};
|
|
72
|
-
light: {
|
|
73
|
-
foreground?: string | undefined;
|
|
74
|
-
background?: string | undefined;
|
|
75
|
-
brand?: string | undefined;
|
|
76
|
-
alternate?: string | undefined;
|
|
77
|
-
accent?: string | undefined;
|
|
78
|
-
link?: string | undefined;
|
|
79
|
-
help?: string | undefined;
|
|
80
|
-
success?: string | undefined;
|
|
81
|
-
info?: string | undefined;
|
|
82
|
-
debug?: string | undefined;
|
|
83
|
-
warning?: string | undefined;
|
|
84
|
-
danger?: string | undefined;
|
|
85
|
-
fatal?: string | undefined;
|
|
86
|
-
performance?: string | undefined;
|
|
87
|
-
positive?: string | undefined;
|
|
88
|
-
negative?: string | undefined;
|
|
89
|
-
gradient?: string[] | undefined;
|
|
90
|
-
};
|
|
91
|
-
} | {
|
|
92
|
-
dark?: string | undefined;
|
|
93
|
-
light?: string | undefined;
|
|
94
|
-
brand?: string | undefined;
|
|
95
|
-
alternate?: string | undefined;
|
|
96
|
-
accent?: string | undefined;
|
|
97
|
-
link?: string | undefined;
|
|
98
|
-
help?: string | undefined;
|
|
99
|
-
success?: string | undefined;
|
|
100
|
-
info?: string | undefined;
|
|
101
|
-
debug?: string | undefined;
|
|
102
|
-
warning?: string | undefined;
|
|
103
|
-
danger?: string | undefined;
|
|
104
|
-
fatal?: string | undefined;
|
|
105
|
-
performance?: string | undefined;
|
|
106
|
-
positive?: string | undefined;
|
|
107
|
-
negative?: string | undefined;
|
|
108
|
-
gradient?: string[] | undefined;
|
|
109
|
-
} | Record<string, {
|
|
110
|
-
dark: {
|
|
111
|
-
foreground?: string | undefined;
|
|
112
|
-
background?: string | undefined;
|
|
113
|
-
brand?: string | undefined;
|
|
114
|
-
alternate?: string | undefined;
|
|
115
|
-
accent?: string | undefined;
|
|
116
|
-
link?: string | undefined;
|
|
117
|
-
help?: string | undefined;
|
|
118
|
-
success?: string | undefined;
|
|
119
|
-
info?: string | undefined;
|
|
120
|
-
debug?: string | undefined;
|
|
121
|
-
warning?: string | undefined;
|
|
122
|
-
danger?: string | undefined;
|
|
123
|
-
fatal?: string | undefined;
|
|
124
|
-
performance?: string | undefined;
|
|
125
|
-
positive?: string | undefined;
|
|
126
|
-
negative?: string | undefined;
|
|
127
|
-
gradient?: string[] | undefined;
|
|
128
|
-
};
|
|
129
|
-
light: {
|
|
130
|
-
foreground?: string | undefined;
|
|
131
|
-
background?: string | undefined;
|
|
132
|
-
brand?: string | undefined;
|
|
133
|
-
alternate?: string | undefined;
|
|
134
|
-
accent?: string | undefined;
|
|
135
|
-
link?: string | undefined;
|
|
136
|
-
help?: string | undefined;
|
|
137
|
-
success?: string | undefined;
|
|
138
|
-
info?: string | undefined;
|
|
139
|
-
debug?: string | undefined;
|
|
140
|
-
warning?: string | undefined;
|
|
141
|
-
danger?: string | undefined;
|
|
142
|
-
fatal?: string | undefined;
|
|
143
|
-
performance?: string | undefined;
|
|
144
|
-
positive?: string | undefined;
|
|
145
|
-
negative?: string | undefined;
|
|
146
|
-
gradient?: string[] | undefined;
|
|
147
|
-
};
|
|
148
|
-
} | {
|
|
149
|
-
dark?: string | undefined;
|
|
150
|
-
light?: string | undefined;
|
|
151
|
-
brand?: string | undefined;
|
|
152
|
-
alternate?: string | undefined;
|
|
153
|
-
accent?: string | undefined;
|
|
154
|
-
link?: string | undefined;
|
|
155
|
-
help?: string | undefined;
|
|
156
|
-
success?: string | undefined;
|
|
157
|
-
info?: string | undefined;
|
|
158
|
-
debug?: string | undefined;
|
|
159
|
-
warning?: string | undefined;
|
|
160
|
-
danger?: string | undefined;
|
|
161
|
-
fatal?: string | undefined;
|
|
162
|
-
performance?: string | undefined;
|
|
163
|
-
positive?: string | undefined;
|
|
164
|
-
negative?: string | undefined;
|
|
165
|
-
gradient?: string[] | undefined;
|
|
166
|
-
}>;
|
|
167
|
-
$schema?: string | undefined;
|
|
168
|
-
extends?: string | string[] | undefined;
|
|
169
|
-
variant?: "minimal" | "monorepo" | undefined;
|
|
170
|
-
license?: string | undefined;
|
|
171
|
-
homepage?: string | undefined;
|
|
172
|
-
docs?: string | undefined;
|
|
173
|
-
portal?: string | undefined;
|
|
174
|
-
licensing?: string | undefined;
|
|
175
|
-
contact?: string | undefined;
|
|
176
|
-
support?: string | undefined;
|
|
177
|
-
branch?: string | undefined;
|
|
178
|
-
preid?: string | undefined;
|
|
179
|
-
owner?: string | undefined;
|
|
180
|
-
mode?: "development" | "test" | "production" | undefined;
|
|
181
|
-
skipCache?: boolean | undefined;
|
|
182
|
-
packageManager?: "npm" | "yarn" | "pnpm" | "bun" | undefined;
|
|
183
|
-
timezone?: string | undefined;
|
|
184
|
-
locale?: string | undefined;
|
|
185
|
-
logLevel?: "success" | "info" | "debug" | "fatal" | "performance" | "silent" | "error" | "warn" | "trace" | "all" | undefined;
|
|
186
|
-
skipConfigLogging?: boolean | undefined;
|
|
187
|
-
registry?: {
|
|
188
|
-
github?: string | undefined;
|
|
189
|
-
npm?: string | undefined;
|
|
190
|
-
cargo?: string | undefined;
|
|
191
|
-
cyclone?: string | undefined;
|
|
192
|
-
container?: string | undefined;
|
|
193
|
-
} | undefined;
|
|
194
|
-
configFile?: string | null | undefined;
|
|
195
|
-
extensions?: Record<string, any> | undefined;
|
|
196
|
-
};
|
package/src/index.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The config-schema library used by Storm Software for building TypeScript applications.
|
|
3
|
-
*
|
|
4
|
-
* @remarks
|
|
5
|
-
* A package containing various utilities to support custom workspace configurations
|
|
6
|
-
*
|
|
7
|
-
* @packageDocumentation
|
|
8
|
-
*/
|
|
9
|
-
export * from "./constants";
|
|
10
|
-
export * from "./define-config";
|
|
11
|
-
export * from "./schema";
|
|
12
|
-
export * from "./types";
|
package/src/schema.d.ts
DELETED
|
@@ -1,573 +0,0 @@
|
|
|
1
|
-
import * as z from "zod/v4/mini";
|
|
2
|
-
export declare const schemaRegistry: z.z.core.$ZodRegistry<{
|
|
3
|
-
description: string;
|
|
4
|
-
}, z.z.core.$ZodType<unknown, unknown, z.z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
5
|
-
export declare const darkColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
6
|
-
export declare const lightColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
7
|
-
export declare const brandColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
8
|
-
export declare const alternateColorSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
9
|
-
export declare const accentColorSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
10
|
-
export declare const linkColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
11
|
-
export declare const helpColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
12
|
-
export declare const successColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
13
|
-
export declare const infoColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
14
|
-
export declare const debugColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
15
|
-
export declare const warningColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
16
|
-
export declare const dangerColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
17
|
-
export declare const fatalColorSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
18
|
-
export declare const performanceColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
19
|
-
export declare const positiveColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
20
|
-
export declare const negativeColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
21
|
-
export declare const gradientStopsSchema: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
22
|
-
export declare const darkColorsSchema: z.ZodMiniObject<{
|
|
23
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
24
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
25
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
26
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
27
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
28
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
29
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
30
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
31
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
32
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
33
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
34
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
35
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
36
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
37
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
38
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
39
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
40
|
-
}, z.z.core.$strip>;
|
|
41
|
-
export declare const lightColorsSchema: z.ZodMiniObject<{
|
|
42
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
43
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
44
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
45
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
46
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
47
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
48
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
49
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
50
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
51
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
52
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
53
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
54
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
55
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
56
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
57
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
58
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
59
|
-
}, z.z.core.$strip>;
|
|
60
|
-
export declare const multiColorsSchema: z.ZodMiniObject<{
|
|
61
|
-
dark: z.ZodMiniObject<{
|
|
62
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
63
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
64
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
65
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
66
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
67
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
68
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
69
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
70
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
71
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
72
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
73
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
74
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
75
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
76
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
77
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
78
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
79
|
-
}, z.z.core.$strip>;
|
|
80
|
-
light: z.ZodMiniObject<{
|
|
81
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
82
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
83
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
84
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
85
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
86
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
87
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
88
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
89
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
90
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
91
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
92
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
93
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
94
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
95
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
96
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
97
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
98
|
-
}, z.z.core.$strip>;
|
|
99
|
-
}, z.z.core.$strip>;
|
|
100
|
-
export declare const singleColorsSchema: z.ZodMiniObject<{
|
|
101
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
102
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
103
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
104
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
105
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
106
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
107
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
108
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
109
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
110
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
111
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
112
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
113
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
114
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
115
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
116
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
117
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
118
|
-
}, z.z.core.$strip>;
|
|
119
|
-
export declare const registrySchema: z.ZodMiniDefault<z.ZodMiniObject<{
|
|
120
|
-
github: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
121
|
-
npm: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
122
|
-
cargo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
123
|
-
cyclone: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
124
|
-
container: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
125
|
-
}, z.z.core.$strip>>;
|
|
126
|
-
/**
|
|
127
|
-
* Storm theme color config values used for styling various workspace elements
|
|
128
|
-
*/
|
|
129
|
-
export declare const colorsSchema: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
130
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
131
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
132
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
133
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
134
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
135
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
136
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
137
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
138
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
139
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
140
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
141
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
142
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
143
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
144
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
145
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
146
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
147
|
-
}, z.z.core.$strip>, z.ZodMiniObject<{
|
|
148
|
-
dark: z.ZodMiniObject<{
|
|
149
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
150
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
151
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
152
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
153
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
154
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
155
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
156
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
157
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
158
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
159
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
160
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
161
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
162
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
163
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
164
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
165
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
166
|
-
}, z.z.core.$strip>;
|
|
167
|
-
light: z.ZodMiniObject<{
|
|
168
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
169
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
170
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
171
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
172
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
173
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
174
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
175
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
176
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
177
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
178
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
179
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
180
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
181
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
182
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
183
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
184
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
185
|
-
}, z.z.core.$strip>;
|
|
186
|
-
}, z.z.core.$strip>]>;
|
|
187
|
-
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<{
|
|
188
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
189
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
190
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
191
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
192
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
193
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
194
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
195
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
196
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
197
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
198
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
199
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
200
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
201
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
202
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
203
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
204
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
205
|
-
}, z.z.core.$strip>, z.ZodMiniObject<{
|
|
206
|
-
dark: z.ZodMiniObject<{
|
|
207
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
208
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
209
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
210
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
211
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
212
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
213
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
214
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
215
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
216
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
217
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
218
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
219
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
220
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
221
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
222
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
223
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
224
|
-
}, z.z.core.$strip>;
|
|
225
|
-
light: z.ZodMiniObject<{
|
|
226
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
227
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
228
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
229
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
230
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
231
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
232
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
233
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
234
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
235
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
236
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
237
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
238
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
239
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
240
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
241
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
242
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
243
|
-
}, z.z.core.$strip>;
|
|
244
|
-
}, z.z.core.$strip>]>>;
|
|
245
|
-
export declare const extendsSchema: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
246
|
-
export declare const workspaceBotSchema: z.ZodMiniObject<{
|
|
247
|
-
name: z.ZodMiniString<string>;
|
|
248
|
-
email: z.ZodMiniString<string>;
|
|
249
|
-
}, z.z.core.$strip>;
|
|
250
|
-
export declare const workspaceReleaseBannerUrlSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
251
|
-
export declare const workspaceReleaseBannerAltSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
252
|
-
export declare const workspaceReleaseBannerSchema: z.ZodMiniObject<{
|
|
253
|
-
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
254
|
-
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
255
|
-
}, z.z.core.$strip>;
|
|
256
|
-
export declare const workspaceReleaseHeaderSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
257
|
-
export declare const workspaceReleaseFooterSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
258
|
-
export declare const workspaceReleaseSchema: z.ZodMiniObject<{
|
|
259
|
-
banner: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
260
|
-
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
261
|
-
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
262
|
-
}, z.z.core.$strip>, z.ZodMiniString<string>]>;
|
|
263
|
-
header: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
264
|
-
footer: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
265
|
-
}, z.z.core.$strip>;
|
|
266
|
-
export declare const workspaceSocialsTwitterSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
267
|
-
export declare const workspaceSocialsDiscordSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
268
|
-
export declare const workspaceSocialsTelegramSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
269
|
-
export declare const workspaceSocialsSlackSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
270
|
-
export declare const workspaceSocialsMediumSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
271
|
-
export declare const workspaceSocialsGithubSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
272
|
-
export declare const workspaceSocialsSchema: z.ZodMiniObject<{
|
|
273
|
-
twitter: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
274
|
-
discord: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
275
|
-
telegram: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
276
|
-
slack: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
277
|
-
medium: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
278
|
-
github: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
279
|
-
}, z.z.core.$strip>;
|
|
280
|
-
export declare const workspaceDirectoryCacheSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
281
|
-
export declare const workspaceDirectoryDataSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
282
|
-
export declare const workspaceDirectoryConfigSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
283
|
-
export declare const workspaceDirectoryTempSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
284
|
-
export declare const workspaceDirectoryLogSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
285
|
-
export declare const workspaceDirectoryBuildSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
286
|
-
export declare const workspaceDirectorySchema: z.ZodMiniObject<{
|
|
287
|
-
cache: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
288
|
-
data: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
289
|
-
config: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
290
|
-
temp: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
291
|
-
log: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
292
|
-
build: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
293
|
-
}, z.z.core.$strip>;
|
|
294
|
-
export declare const variantSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
295
|
-
minimal: "minimal";
|
|
296
|
-
monorepo: "monorepo";
|
|
297
|
-
}>>;
|
|
298
|
-
export declare const errorCodesFileSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
299
|
-
export declare const errorUrlSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
300
|
-
export declare const errorSchema: z.ZodMiniObject<{
|
|
301
|
-
codesFile: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
302
|
-
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
303
|
-
}, z.z.core.$strip>;
|
|
304
|
-
export declare const organizationNameSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
305
|
-
export declare const organizationDescriptionSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
306
|
-
export declare const organizationLogoSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
307
|
-
export declare const organizationIconSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
308
|
-
export declare const organizationUrlSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
309
|
-
export declare const organizationSchema: z.ZodMiniObject<{
|
|
310
|
-
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
311
|
-
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
312
|
-
logo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
313
|
-
icon: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
314
|
-
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
315
|
-
}, z.z.core.$strip>;
|
|
316
|
-
/**
|
|
317
|
-
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
318
|
-
*/
|
|
319
|
-
export declare const licenseSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
320
|
-
export declare const homepageSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
321
|
-
export declare const docsSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
322
|
-
export declare const portalSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
323
|
-
export declare const licensingSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
324
|
-
export declare const contactSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
325
|
-
export declare const supportSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
326
|
-
export declare const branchSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
327
|
-
export declare const preidSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
328
|
-
export declare const ownerSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
329
|
-
export declare const modeSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
330
|
-
development: "development";
|
|
331
|
-
test: "test";
|
|
332
|
-
production: "production";
|
|
333
|
-
}>>;
|
|
334
|
-
export declare const workspaceRootSchema: z.ZodMiniString<string>;
|
|
335
|
-
export declare const skipCacheSchema: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
336
|
-
export declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
337
|
-
npm: "npm";
|
|
338
|
-
yarn: "yarn";
|
|
339
|
-
pnpm: "pnpm";
|
|
340
|
-
bun: "bun";
|
|
341
|
-
}>>;
|
|
342
|
-
export declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
343
|
-
export declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
344
|
-
export declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
345
|
-
success: "success";
|
|
346
|
-
info: "info";
|
|
347
|
-
debug: "debug";
|
|
348
|
-
fatal: "fatal";
|
|
349
|
-
performance: "performance";
|
|
350
|
-
silent: "silent";
|
|
351
|
-
error: "error";
|
|
352
|
-
warn: "warn";
|
|
353
|
-
trace: "trace";
|
|
354
|
-
all: "all";
|
|
355
|
-
}>>;
|
|
356
|
-
export declare const skipConfigLoggingSchema: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
357
|
-
export declare const configFileSchema: z.ZodMiniDefault<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
358
|
-
export declare const extensionsSchema: z.ZodMiniDefault<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniAny>>;
|
|
359
|
-
/**
|
|
360
|
-
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
361
|
-
*/
|
|
362
|
-
export declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
363
|
-
$schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
364
|
-
extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
365
|
-
name: z.ZodMiniString<string>;
|
|
366
|
-
variant: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
367
|
-
minimal: "minimal";
|
|
368
|
-
monorepo: "monorepo";
|
|
369
|
-
}>>;
|
|
370
|
-
namespace: z.ZodMiniString<string>;
|
|
371
|
-
organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
372
|
-
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
373
|
-
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
374
|
-
logo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
375
|
-
icon: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
376
|
-
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
377
|
-
}, z.z.core.$strip>, z.ZodMiniString<string>]>;
|
|
378
|
-
repository: z.ZodMiniString<string>;
|
|
379
|
-
license: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
380
|
-
homepage: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
381
|
-
docs: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
382
|
-
portal: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
383
|
-
licensing: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
384
|
-
contact: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
385
|
-
support: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
386
|
-
branch: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
387
|
-
preid: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
388
|
-
owner: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
389
|
-
bot: z.ZodMiniObject<{
|
|
390
|
-
name: z.ZodMiniString<string>;
|
|
391
|
-
email: z.ZodMiniString<string>;
|
|
392
|
-
}, z.z.core.$strip>;
|
|
393
|
-
release: z.ZodMiniObject<{
|
|
394
|
-
banner: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
395
|
-
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
396
|
-
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
397
|
-
}, z.z.core.$strip>, z.ZodMiniString<string>]>;
|
|
398
|
-
header: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
399
|
-
footer: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
400
|
-
}, z.z.core.$strip>;
|
|
401
|
-
socials: z.ZodMiniObject<{
|
|
402
|
-
twitter: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
403
|
-
discord: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
404
|
-
telegram: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
405
|
-
slack: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
406
|
-
medium: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
407
|
-
github: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
408
|
-
}, z.z.core.$strip>;
|
|
409
|
-
error: z.ZodMiniObject<{
|
|
410
|
-
codesFile: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
411
|
-
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
412
|
-
}, z.z.core.$strip>;
|
|
413
|
-
mode: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
414
|
-
development: "development";
|
|
415
|
-
test: "test";
|
|
416
|
-
production: "production";
|
|
417
|
-
}>>;
|
|
418
|
-
workspaceRoot: z.ZodMiniString<string>;
|
|
419
|
-
skipCache: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
420
|
-
directories: z.ZodMiniObject<{
|
|
421
|
-
cache: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
422
|
-
data: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
423
|
-
config: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
424
|
-
temp: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
425
|
-
log: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
426
|
-
build: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
427
|
-
}, z.z.core.$strip>;
|
|
428
|
-
packageManager: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
429
|
-
npm: "npm";
|
|
430
|
-
yarn: "yarn";
|
|
431
|
-
pnpm: "pnpm";
|
|
432
|
-
bun: "bun";
|
|
433
|
-
}>>;
|
|
434
|
-
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
435
|
-
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
436
|
-
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
437
|
-
success: "success";
|
|
438
|
-
info: "info";
|
|
439
|
-
debug: "debug";
|
|
440
|
-
fatal: "fatal";
|
|
441
|
-
performance: "performance";
|
|
442
|
-
silent: "silent";
|
|
443
|
-
error: "error";
|
|
444
|
-
warn: "warn";
|
|
445
|
-
trace: "trace";
|
|
446
|
-
all: "all";
|
|
447
|
-
}>>;
|
|
448
|
-
skipConfigLogging: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
449
|
-
registry: z.ZodMiniDefault<z.ZodMiniObject<{
|
|
450
|
-
github: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
451
|
-
npm: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
452
|
-
cargo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
453
|
-
cyclone: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
454
|
-
container: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
455
|
-
}, z.z.core.$strip>>;
|
|
456
|
-
configFile: z.ZodMiniDefault<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
457
|
-
colors: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
458
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
459
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
460
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
461
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
462
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
463
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
464
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
465
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
466
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
467
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
468
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
469
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
470
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
471
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
472
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
473
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
474
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
475
|
-
}, z.z.core.$strip>, z.ZodMiniObject<{
|
|
476
|
-
dark: z.ZodMiniObject<{
|
|
477
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
478
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
479
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
480
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
481
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
482
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
483
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
484
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
485
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
486
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
487
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
488
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
489
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
490
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
491
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
492
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
493
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
494
|
-
}, z.z.core.$strip>;
|
|
495
|
-
light: z.ZodMiniObject<{
|
|
496
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
497
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
498
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
499
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
500
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
501
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
502
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
503
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
504
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
505
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
506
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
507
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
508
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
509
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
510
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
511
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
512
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
513
|
-
}, z.z.core.$strip>;
|
|
514
|
-
}, 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<{
|
|
515
|
-
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
516
|
-
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
517
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
518
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
519
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
520
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
521
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
522
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
523
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
524
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
525
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
526
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
527
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
528
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
529
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
530
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
531
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
532
|
-
}, z.z.core.$strip>, z.ZodMiniObject<{
|
|
533
|
-
dark: z.ZodMiniObject<{
|
|
534
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
535
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
536
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
537
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
538
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
539
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
540
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
541
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
542
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
543
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
544
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
545
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
546
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
547
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
548
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
549
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
550
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
551
|
-
}, z.z.core.$strip>;
|
|
552
|
-
light: z.ZodMiniObject<{
|
|
553
|
-
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
554
|
-
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
555
|
-
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
556
|
-
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
557
|
-
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
558
|
-
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
559
|
-
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
560
|
-
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
561
|
-
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
562
|
-
debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
563
|
-
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
564
|
-
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
565
|
-
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
566
|
-
performance: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
567
|
-
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
568
|
-
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
569
|
-
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
570
|
-
}, z.z.core.$strip>;
|
|
571
|
-
}, z.z.core.$strip>]>>]>;
|
|
572
|
-
extensions: z.ZodMiniDefault<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniAny>>;
|
|
573
|
-
}, z.z.core.$strip>;
|
package/src/types.d.ts
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import * as z from "zod";
|
|
2
|
-
import type { colorsSchema, darkColorsSchema, lightColorsSchema, multiColorsSchema, organizationSchema, singleColorsSchema, themeColorsSchema, variantSchema, workspaceConfigSchema } from "./schema";
|
|
3
|
-
export type DarkThemeColors = z.infer<typeof darkColorsSchema>;
|
|
4
|
-
export type DarkThemeColorsInput = z.input<typeof darkColorsSchema>;
|
|
5
|
-
export type LightThemeColors = z.infer<typeof lightColorsSchema>;
|
|
6
|
-
export type LightThemeColorsInput = z.input<typeof lightColorsSchema>;
|
|
7
|
-
export type MultiThemeColors = z.infer<typeof multiColorsSchema>;
|
|
8
|
-
export type MultiThemeColorsInput = z.input<typeof multiColorsSchema>;
|
|
9
|
-
export type SingleThemeColors = z.infer<typeof singleColorsSchema>;
|
|
10
|
-
export type SingleThemeColorsInput = z.input<typeof singleColorsSchema>;
|
|
11
|
-
export type Colors = z.infer<typeof colorsSchema>;
|
|
12
|
-
export type ColorsInput = z.input<typeof colorsSchema>;
|
|
13
|
-
export type ColorsMap = z.infer<typeof themeColorsSchema>;
|
|
14
|
-
export type ColorsMapInput = z.input<typeof themeColorsSchema>;
|
|
15
|
-
export type OrganizationConfig = z.infer<typeof organizationSchema>;
|
|
16
|
-
export type OrganizationConfigInput = z.input<typeof organizationSchema>;
|
|
17
|
-
export type Variant = z.infer<typeof variantSchema>;
|
|
18
|
-
export type VariantInput = z.input<typeof variantSchema>;
|
|
19
|
-
type TStormWorkspaceConfig = z.infer<typeof workspaceConfigSchema>;
|
|
20
|
-
export type StormWorkspaceConfigInput = z.input<typeof workspaceConfigSchema>;
|
|
21
|
-
/**
|
|
22
|
-
* The Storm workspace's configuration object
|
|
23
|
-
*
|
|
24
|
-
* @remarks
|
|
25
|
-
* This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
|
|
26
|
-
*
|
|
27
|
-
* @deprecated
|
|
28
|
-
* This type is deprecated and will be removed in the next major version. Use {@link StormWorkspaceConfig} instead.
|
|
29
|
-
*/
|
|
30
|
-
export type StormConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = TStormWorkspaceConfig & {
|
|
31
|
-
extensions: (TStormWorkspaceConfig["extensions"] & {
|
|
32
|
-
[extensionName in TExtensionName]: TExtensionConfig;
|
|
33
|
-
}) | NonNullable<Record<string, any>>;
|
|
34
|
-
};
|
|
35
|
-
/**
|
|
36
|
-
* The Storm workspace's configuration object
|
|
37
|
-
*
|
|
38
|
-
* @remarks
|
|
39
|
-
* This type is used to define the configuration object for the entire Storm workspace/monorepo. The value is extracted from the `storm-workspace.json` file in the workspace root and the currently configuration environment variables. The value can be obtained by calling `getWorkspaceConfig()` in `@storm-software/config-tools`.
|
|
40
|
-
*/
|
|
41
|
-
export type StormWorkspaceConfig<TExtensionName extends keyof TStormWorkspaceConfig["extensions"] = keyof TStormWorkspaceConfig["extensions"], TExtensionConfig extends TStormWorkspaceConfig["extensions"][TExtensionName] = TStormWorkspaceConfig["extensions"][TExtensionName]> = StormConfig<TExtensionName, TExtensionConfig>;
|
|
42
|
-
export declare const COLOR_KEYS: string[];
|
|
43
|
-
export {};
|