@storm-software/config 1.133.6 → 1.133.7
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 +7 -0
- package/README.md +2 -1
- package/dist/chunk-EAKFC4O6.cjs +2 -0
- package/dist/chunk-JE3TEJ6K.js +2 -0
- package/dist/define-config.d.cts +1 -0
- package/dist/define-config.d.ts +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/schema.cjs +1 -1
- package/dist/schema.d.cts +447 -447
- package/dist/schema.d.ts +447 -447
- package/dist/schema.js +1 -1
- package/dist/types.d.cts +1 -0
- package/dist/types.d.ts +1 -0
- package/package.json +3 -3
- package/src/schema.d.ts +447 -447
- package/dist/chunk-4KDR3VEP.js +0 -21
- package/dist/chunk-PUNDTBTG.cjs +0 -21
package/dist/schema.d.cts
CHANGED
|
@@ -1,324 +1,324 @@
|
|
|
1
|
-
import * as z from 'zod';
|
|
1
|
+
import * as z from 'zod/mini';
|
|
2
2
|
|
|
3
3
|
declare const schemaRegistry: z.core.$ZodRegistry<{
|
|
4
4
|
description: string;
|
|
5
5
|
}, z.core.$ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
6
|
-
declare const darkColorSchema: z.
|
|
7
|
-
declare const lightColorSchema: z.
|
|
8
|
-
declare const brandColorSchema: z.
|
|
9
|
-
declare const alternateColorSchema: z.
|
|
10
|
-
declare const accentColorSchema: z.
|
|
11
|
-
declare const linkColorSchema: z.
|
|
12
|
-
declare const helpColorSchema: z.
|
|
13
|
-
declare const successColorSchema: z.
|
|
14
|
-
declare const infoColorSchema: z.
|
|
15
|
-
declare const warningColorSchema: z.
|
|
16
|
-
declare const dangerColorSchema: z.
|
|
17
|
-
declare const fatalColorSchema: z.
|
|
18
|
-
declare const positiveColorSchema: z.
|
|
19
|
-
declare const negativeColorSchema: z.
|
|
20
|
-
declare const gradientStopsSchema: z.
|
|
21
|
-
declare const darkColorsSchema: z.
|
|
22
|
-
foreground: z.
|
|
23
|
-
background: z.
|
|
24
|
-
brand: z.
|
|
25
|
-
alternate: z.
|
|
26
|
-
accent: z.
|
|
27
|
-
link: z.
|
|
28
|
-
help: z.
|
|
29
|
-
success: z.
|
|
30
|
-
info: z.
|
|
31
|
-
warning: z.
|
|
32
|
-
danger: z.
|
|
33
|
-
fatal: z.
|
|
34
|
-
positive: z.
|
|
35
|
-
negative: z.
|
|
36
|
-
gradient: z.
|
|
6
|
+
declare const darkColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
7
|
+
declare const lightColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
8
|
+
declare const brandColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
9
|
+
declare const alternateColorSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
10
|
+
declare const accentColorSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
11
|
+
declare const linkColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
12
|
+
declare const helpColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
13
|
+
declare const successColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
14
|
+
declare const infoColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
15
|
+
declare const warningColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
16
|
+
declare const dangerColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
17
|
+
declare const fatalColorSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
18
|
+
declare const positiveColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
19
|
+
declare const negativeColorSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
20
|
+
declare const gradientStopsSchema: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
21
|
+
declare const darkColorsSchema: z.ZodMiniObject<{
|
|
22
|
+
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
23
|
+
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
24
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
25
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
26
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
27
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
28
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
29
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
30
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
31
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
32
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
33
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
34
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
35
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
36
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
37
37
|
}, z.core.$strip>;
|
|
38
|
-
declare const lightColorsSchema: z.
|
|
39
|
-
foreground: z.
|
|
40
|
-
background: z.
|
|
41
|
-
brand: z.
|
|
42
|
-
alternate: z.
|
|
43
|
-
accent: z.
|
|
44
|
-
link: z.
|
|
45
|
-
help: z.
|
|
46
|
-
success: z.
|
|
47
|
-
info: z.
|
|
48
|
-
warning: z.
|
|
49
|
-
danger: z.
|
|
50
|
-
fatal: z.
|
|
51
|
-
positive: z.
|
|
52
|
-
negative: z.
|
|
53
|
-
gradient: z.
|
|
38
|
+
declare const lightColorsSchema: z.ZodMiniObject<{
|
|
39
|
+
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
40
|
+
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
41
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
42
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
43
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
44
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
45
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
46
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
47
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
48
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
49
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
50
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
51
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
52
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
53
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
54
54
|
}, z.core.$strip>;
|
|
55
|
-
declare const multiColorsSchema: z.
|
|
56
|
-
dark: z.
|
|
57
|
-
foreground: z.
|
|
58
|
-
background: z.
|
|
59
|
-
brand: z.
|
|
60
|
-
alternate: z.
|
|
61
|
-
accent: z.
|
|
62
|
-
link: z.
|
|
63
|
-
help: z.
|
|
64
|
-
success: z.
|
|
65
|
-
info: z.
|
|
66
|
-
warning: z.
|
|
67
|
-
danger: z.
|
|
68
|
-
fatal: z.
|
|
69
|
-
positive: z.
|
|
70
|
-
negative: z.
|
|
71
|
-
gradient: z.
|
|
55
|
+
declare const multiColorsSchema: z.ZodMiniObject<{
|
|
56
|
+
dark: z.ZodMiniObject<{
|
|
57
|
+
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
58
|
+
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
59
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
60
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
61
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
62
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
63
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
64
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
65
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
66
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
67
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
68
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
69
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
70
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
71
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
72
72
|
}, z.core.$strip>;
|
|
73
|
-
light: z.
|
|
74
|
-
foreground: z.
|
|
75
|
-
background: z.
|
|
76
|
-
brand: z.
|
|
77
|
-
alternate: z.
|
|
78
|
-
accent: z.
|
|
79
|
-
link: z.
|
|
80
|
-
help: z.
|
|
81
|
-
success: z.
|
|
82
|
-
info: z.
|
|
83
|
-
warning: z.
|
|
84
|
-
danger: z.
|
|
85
|
-
fatal: z.
|
|
86
|
-
positive: z.
|
|
87
|
-
negative: z.
|
|
88
|
-
gradient: z.
|
|
73
|
+
light: z.ZodMiniObject<{
|
|
74
|
+
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
75
|
+
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
76
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
77
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
78
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
79
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
80
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
81
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
82
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
83
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
84
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
85
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
86
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
87
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
88
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
89
89
|
}, z.core.$strip>;
|
|
90
90
|
}, z.core.$strip>;
|
|
91
|
-
declare const singleColorsSchema: z.
|
|
92
|
-
dark: z.
|
|
93
|
-
light: z.
|
|
94
|
-
brand: z.
|
|
95
|
-
alternate: z.
|
|
96
|
-
accent: z.
|
|
97
|
-
link: z.
|
|
98
|
-
help: z.
|
|
99
|
-
success: z.
|
|
100
|
-
info: z.
|
|
101
|
-
warning: z.
|
|
102
|
-
danger: z.
|
|
103
|
-
fatal: z.
|
|
104
|
-
positive: z.
|
|
105
|
-
negative: z.
|
|
106
|
-
gradient: z.
|
|
91
|
+
declare const singleColorsSchema: z.ZodMiniObject<{
|
|
92
|
+
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
93
|
+
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
94
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
95
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
96
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
97
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
98
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
99
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
100
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
101
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
102
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
103
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
104
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
105
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
106
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
107
107
|
}, z.core.$strip>;
|
|
108
|
-
declare const registrySchema: z.
|
|
109
|
-
github: z.
|
|
110
|
-
npm: z.
|
|
111
|
-
cargo: z.
|
|
112
|
-
cyclone: z.
|
|
113
|
-
container: z.
|
|
108
|
+
declare const registrySchema: z.ZodMiniDefault<z.ZodMiniObject<{
|
|
109
|
+
github: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
110
|
+
npm: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
111
|
+
cargo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
112
|
+
cyclone: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
113
|
+
container: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
114
114
|
}, z.core.$strip>>;
|
|
115
115
|
/**
|
|
116
116
|
* Storm theme color config values used for styling various workspace elements
|
|
117
117
|
*/
|
|
118
|
-
declare const colorsSchema: z.
|
|
119
|
-
dark: z.
|
|
120
|
-
light: z.
|
|
121
|
-
brand: z.
|
|
122
|
-
alternate: z.
|
|
123
|
-
accent: z.
|
|
124
|
-
link: z.
|
|
125
|
-
help: z.
|
|
126
|
-
success: z.
|
|
127
|
-
info: z.
|
|
128
|
-
warning: z.
|
|
129
|
-
danger: z.
|
|
130
|
-
fatal: z.
|
|
131
|
-
positive: z.
|
|
132
|
-
negative: z.
|
|
133
|
-
gradient: z.
|
|
134
|
-
}, z.core.$strip>, z.
|
|
135
|
-
dark: z.
|
|
136
|
-
foreground: z.
|
|
137
|
-
background: z.
|
|
138
|
-
brand: z.
|
|
139
|
-
alternate: z.
|
|
140
|
-
accent: z.
|
|
141
|
-
link: z.
|
|
142
|
-
help: z.
|
|
143
|
-
success: z.
|
|
144
|
-
info: z.
|
|
145
|
-
warning: z.
|
|
146
|
-
danger: z.
|
|
147
|
-
fatal: z.
|
|
148
|
-
positive: z.
|
|
149
|
-
negative: z.
|
|
150
|
-
gradient: z.
|
|
118
|
+
declare const colorsSchema: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
119
|
+
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
120
|
+
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
121
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
122
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
123
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
124
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
125
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
126
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
127
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
128
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
129
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
130
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
131
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
132
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
133
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
134
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
135
|
+
dark: z.ZodMiniObject<{
|
|
136
|
+
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
137
|
+
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
138
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
139
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
140
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
141
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
142
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
143
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
144
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
145
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
146
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
147
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
148
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
149
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
150
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
151
151
|
}, z.core.$strip>;
|
|
152
|
-
light: z.
|
|
153
|
-
foreground: z.
|
|
154
|
-
background: z.
|
|
155
|
-
brand: z.
|
|
156
|
-
alternate: z.
|
|
157
|
-
accent: z.
|
|
158
|
-
link: z.
|
|
159
|
-
help: z.
|
|
160
|
-
success: z.
|
|
161
|
-
info: z.
|
|
162
|
-
warning: z.
|
|
163
|
-
danger: z.
|
|
164
|
-
fatal: z.
|
|
165
|
-
positive: z.
|
|
166
|
-
negative: z.
|
|
167
|
-
gradient: z.
|
|
152
|
+
light: z.ZodMiniObject<{
|
|
153
|
+
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
154
|
+
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
155
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
156
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
157
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
158
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
159
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
160
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
161
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
162
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
163
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
164
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
165
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
166
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
167
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
168
168
|
}, z.core.$strip>;
|
|
169
169
|
}, z.core.$strip>]>;
|
|
170
|
-
declare const themeColorsSchema: z.
|
|
171
|
-
dark: z.
|
|
172
|
-
light: z.
|
|
173
|
-
brand: z.
|
|
174
|
-
alternate: z.
|
|
175
|
-
accent: z.
|
|
176
|
-
link: z.
|
|
177
|
-
help: z.
|
|
178
|
-
success: z.
|
|
179
|
-
info: z.
|
|
180
|
-
warning: z.
|
|
181
|
-
danger: z.
|
|
182
|
-
fatal: z.
|
|
183
|
-
positive: z.
|
|
184
|
-
negative: z.
|
|
185
|
-
gradient: z.
|
|
186
|
-
}, z.core.$strip>, z.
|
|
187
|
-
dark: z.
|
|
188
|
-
foreground: z.
|
|
189
|
-
background: z.
|
|
190
|
-
brand: z.
|
|
191
|
-
alternate: z.
|
|
192
|
-
accent: z.
|
|
193
|
-
link: z.
|
|
194
|
-
help: z.
|
|
195
|
-
success: z.
|
|
196
|
-
info: z.
|
|
197
|
-
warning: z.
|
|
198
|
-
danger: z.
|
|
199
|
-
fatal: z.
|
|
200
|
-
positive: z.
|
|
201
|
-
negative: z.
|
|
202
|
-
gradient: z.
|
|
170
|
+
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<{
|
|
171
|
+
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
172
|
+
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
173
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
174
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
175
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
176
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
177
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
178
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
179
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
180
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
181
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
182
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
183
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
184
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
185
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
186
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
187
|
+
dark: z.ZodMiniObject<{
|
|
188
|
+
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
189
|
+
background: 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
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
198
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
199
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
200
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
201
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
202
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
203
203
|
}, z.core.$strip>;
|
|
204
|
-
light: z.
|
|
205
|
-
foreground: z.
|
|
206
|
-
background: z.
|
|
207
|
-
brand: z.
|
|
208
|
-
alternate: z.
|
|
209
|
-
accent: z.
|
|
210
|
-
link: z.
|
|
211
|
-
help: z.
|
|
212
|
-
success: z.
|
|
213
|
-
info: z.
|
|
214
|
-
warning: z.
|
|
215
|
-
danger: z.
|
|
216
|
-
fatal: z.
|
|
217
|
-
positive: z.
|
|
218
|
-
negative: z.
|
|
219
|
-
gradient: z.
|
|
204
|
+
light: z.ZodMiniObject<{
|
|
205
|
+
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
206
|
+
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
207
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
208
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
209
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
210
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
211
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
212
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
213
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
214
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
215
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
216
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
217
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
218
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
219
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
220
220
|
}, z.core.$strip>;
|
|
221
221
|
}, z.core.$strip>]>>;
|
|
222
|
-
declare const extendsSchema: z.
|
|
223
|
-
declare const workspaceBotSchema: z.
|
|
224
|
-
name: z.
|
|
225
|
-
email: z.
|
|
222
|
+
declare const extendsSchema: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
223
|
+
declare const workspaceBotSchema: z.ZodMiniObject<{
|
|
224
|
+
name: z.ZodMiniString<string>;
|
|
225
|
+
email: z.ZodMiniString<string>;
|
|
226
226
|
}, z.core.$strip>;
|
|
227
|
-
declare const workspaceReleaseBannerUrlSchema: z.
|
|
228
|
-
declare const workspaceReleaseBannerAltSchema: z.
|
|
229
|
-
declare const workspaceReleaseBannerSchema: z.
|
|
230
|
-
url: z.
|
|
231
|
-
alt: z.
|
|
227
|
+
declare const workspaceReleaseBannerUrlSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
228
|
+
declare const workspaceReleaseBannerAltSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
229
|
+
declare const workspaceReleaseBannerSchema: z.ZodMiniObject<{
|
|
230
|
+
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
231
|
+
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
232
232
|
}, z.core.$strip>;
|
|
233
|
-
declare const workspaceReleaseHeaderSchema: z.
|
|
234
|
-
declare const workspaceReleaseFooterSchema: z.
|
|
235
|
-
declare const workspaceReleaseSchema: z.
|
|
236
|
-
banner: z.
|
|
237
|
-
url: z.
|
|
238
|
-
alt: z.
|
|
239
|
-
}, z.core.$strip>, z.
|
|
240
|
-
header: z.
|
|
241
|
-
footer: z.
|
|
233
|
+
declare const workspaceReleaseHeaderSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
234
|
+
declare const workspaceReleaseFooterSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
235
|
+
declare const workspaceReleaseSchema: z.ZodMiniObject<{
|
|
236
|
+
banner: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
237
|
+
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
238
|
+
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
239
|
+
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
240
|
+
header: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
241
|
+
footer: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
242
242
|
}, z.core.$strip>;
|
|
243
|
-
declare const workspaceSocialsTwitterSchema: z.
|
|
244
|
-
declare const workspaceSocialsDiscordSchema: z.
|
|
245
|
-
declare const workspaceSocialsTelegramSchema: z.
|
|
246
|
-
declare const workspaceSocialsSlackSchema: z.
|
|
247
|
-
declare const workspaceSocialsMediumSchema: z.
|
|
248
|
-
declare const workspaceSocialsGithubSchema: z.
|
|
249
|
-
declare const workspaceSocialsSchema: z.
|
|
250
|
-
twitter: z.
|
|
251
|
-
discord: z.
|
|
252
|
-
telegram: z.
|
|
253
|
-
slack: z.
|
|
254
|
-
medium: z.
|
|
255
|
-
github: z.
|
|
243
|
+
declare const workspaceSocialsTwitterSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
244
|
+
declare const workspaceSocialsDiscordSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
245
|
+
declare const workspaceSocialsTelegramSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
246
|
+
declare const workspaceSocialsSlackSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
247
|
+
declare const workspaceSocialsMediumSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
248
|
+
declare const workspaceSocialsGithubSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
249
|
+
declare const workspaceSocialsSchema: z.ZodMiniObject<{
|
|
250
|
+
twitter: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
251
|
+
discord: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
252
|
+
telegram: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
253
|
+
slack: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
254
|
+
medium: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
255
|
+
github: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
256
256
|
}, z.core.$strip>;
|
|
257
|
-
declare const workspaceDirectoryCacheSchema: z.
|
|
258
|
-
declare const workspaceDirectoryDataSchema: z.
|
|
259
|
-
declare const workspaceDirectoryConfigSchema: z.
|
|
260
|
-
declare const workspaceDirectoryTempSchema: z.
|
|
261
|
-
declare const workspaceDirectoryLogSchema: z.
|
|
262
|
-
declare const workspaceDirectoryBuildSchema: z.
|
|
263
|
-
declare const workspaceDirectorySchema: z.
|
|
264
|
-
cache: z.
|
|
265
|
-
data: z.
|
|
266
|
-
config: z.
|
|
267
|
-
temp: z.
|
|
268
|
-
log: z.
|
|
269
|
-
build: z.
|
|
257
|
+
declare const workspaceDirectoryCacheSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
258
|
+
declare const workspaceDirectoryDataSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
259
|
+
declare const workspaceDirectoryConfigSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
260
|
+
declare const workspaceDirectoryTempSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
261
|
+
declare const workspaceDirectoryLogSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
262
|
+
declare const workspaceDirectoryBuildSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
263
|
+
declare const workspaceDirectorySchema: z.ZodMiniObject<{
|
|
264
|
+
cache: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
265
|
+
data: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
266
|
+
config: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
267
|
+
temp: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
268
|
+
log: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
269
|
+
build: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
270
270
|
}, z.core.$strip>;
|
|
271
|
-
declare const variantSchema: z.
|
|
271
|
+
declare const variantSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
272
272
|
minimal: "minimal";
|
|
273
273
|
monorepo: "monorepo";
|
|
274
274
|
}>>;
|
|
275
|
-
declare const errorCodesFileSchema: z.
|
|
276
|
-
declare const errorUrlSchema: z.
|
|
277
|
-
declare const errorSchema: z.
|
|
278
|
-
codesFile: z.
|
|
279
|
-
url: z.
|
|
275
|
+
declare const errorCodesFileSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
276
|
+
declare const errorUrlSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
277
|
+
declare const errorSchema: z.ZodMiniObject<{
|
|
278
|
+
codesFile: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
279
|
+
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
280
280
|
}, z.core.$strip>;
|
|
281
|
-
declare const organizationNameSchema: z.
|
|
282
|
-
declare const organizationDescriptionSchema: z.
|
|
283
|
-
declare const organizationLogoSchema: z.
|
|
284
|
-
declare const organizationIconSchema: z.
|
|
285
|
-
declare const organizationUrlSchema: z.
|
|
286
|
-
declare const organizationSchema: z.
|
|
287
|
-
name: z.
|
|
288
|
-
description: z.
|
|
289
|
-
logo: z.
|
|
290
|
-
icon: z.
|
|
291
|
-
url: z.
|
|
281
|
+
declare const organizationNameSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
282
|
+
declare const organizationDescriptionSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
283
|
+
declare const organizationLogoSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
284
|
+
declare const organizationIconSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
285
|
+
declare const organizationUrlSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
286
|
+
declare const organizationSchema: z.ZodMiniObject<{
|
|
287
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
288
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
289
|
+
logo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
290
|
+
icon: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
291
|
+
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
292
292
|
}, z.core.$strip>;
|
|
293
293
|
/**
|
|
294
294
|
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
295
295
|
*/
|
|
296
|
-
declare const licenseSchema: z.
|
|
297
|
-
declare const homepageSchema: z.
|
|
298
|
-
declare const docsSchema: z.
|
|
299
|
-
declare const portalSchema: z.
|
|
300
|
-
declare const licensingSchema: z.
|
|
301
|
-
declare const contactSchema: z.
|
|
302
|
-
declare const supportSchema: z.
|
|
303
|
-
declare const branchSchema: z.
|
|
304
|
-
declare const preidSchema: z.
|
|
305
|
-
declare const ownerSchema: z.
|
|
306
|
-
declare const modeSchema: z.
|
|
296
|
+
declare const licenseSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
297
|
+
declare const homepageSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
298
|
+
declare const docsSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
299
|
+
declare const portalSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
300
|
+
declare const licensingSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
301
|
+
declare const contactSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
302
|
+
declare const supportSchema: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
303
|
+
declare const branchSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
304
|
+
declare const preidSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
305
|
+
declare const ownerSchema: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
306
|
+
declare const modeSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
307
307
|
development: "development";
|
|
308
308
|
staging: "staging";
|
|
309
309
|
production: "production";
|
|
310
310
|
}>>;
|
|
311
|
-
declare const workspaceRootSchema: z.
|
|
312
|
-
declare const skipCacheSchema: z.
|
|
313
|
-
declare const packageManagerSchema: z.
|
|
311
|
+
declare const workspaceRootSchema: z.ZodMiniString<string>;
|
|
312
|
+
declare const skipCacheSchema: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
313
|
+
declare const packageManagerSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
314
314
|
npm: "npm";
|
|
315
315
|
yarn: "yarn";
|
|
316
316
|
pnpm: "pnpm";
|
|
317
317
|
bun: "bun";
|
|
318
318
|
}>>;
|
|
319
|
-
declare const timezoneSchema: z.
|
|
320
|
-
declare const localeSchema: z.
|
|
321
|
-
declare const logLevelSchema: z.
|
|
319
|
+
declare const timezoneSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
320
|
+
declare const localeSchema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
321
|
+
declare const logLevelSchema: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
322
322
|
error: "error";
|
|
323
323
|
success: "success";
|
|
324
324
|
silent: "silent";
|
|
@@ -329,87 +329,87 @@ declare const logLevelSchema: z.ZodDefault<z.ZodEnum<{
|
|
|
329
329
|
trace: "trace";
|
|
330
330
|
all: "all";
|
|
331
331
|
}>>;
|
|
332
|
-
declare const skipConfigLoggingSchema: z.
|
|
333
|
-
declare const configFileSchema: z.
|
|
334
|
-
declare const extensionsSchema: z.
|
|
332
|
+
declare const skipConfigLoggingSchema: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
333
|
+
declare const configFileSchema: z.ZodMiniDefault<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
334
|
+
declare const extensionsSchema: z.ZodMiniDefault<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniAny>>;
|
|
335
335
|
/**
|
|
336
336
|
* Storm Workspace config values used during various dev-ops processes. It represents the config of the entire monorepo.
|
|
337
337
|
*/
|
|
338
|
-
declare const workspaceConfigSchema: z.
|
|
339
|
-
$schema: z.
|
|
340
|
-
extends: z.
|
|
341
|
-
name: z.
|
|
342
|
-
variant: z.
|
|
338
|
+
declare const workspaceConfigSchema: z.ZodMiniObject<{
|
|
339
|
+
$schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
340
|
+
extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
|
|
341
|
+
name: z.ZodMiniString<string>;
|
|
342
|
+
variant: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
343
343
|
minimal: "minimal";
|
|
344
344
|
monorepo: "monorepo";
|
|
345
345
|
}>>;
|
|
346
|
-
namespace: z.
|
|
347
|
-
organization: z.
|
|
348
|
-
name: z.
|
|
349
|
-
description: z.
|
|
350
|
-
logo: z.
|
|
351
|
-
icon: z.
|
|
352
|
-
url: z.
|
|
353
|
-
}, z.core.$strip>, z.
|
|
354
|
-
repository: z.
|
|
355
|
-
license: z.
|
|
356
|
-
homepage: z.
|
|
357
|
-
docs: z.
|
|
358
|
-
portal: z.
|
|
359
|
-
licensing: z.
|
|
360
|
-
contact: z.
|
|
361
|
-
support: z.
|
|
362
|
-
branch: z.
|
|
363
|
-
preid: z.
|
|
364
|
-
owner: z.
|
|
365
|
-
bot: z.
|
|
366
|
-
name: z.
|
|
367
|
-
email: z.
|
|
346
|
+
namespace: z.ZodMiniString<string>;
|
|
347
|
+
organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
348
|
+
name: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
349
|
+
description: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
350
|
+
logo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
351
|
+
icon: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
352
|
+
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
353
|
+
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
354
|
+
repository: z.ZodMiniString<string>;
|
|
355
|
+
license: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
356
|
+
homepage: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
357
|
+
docs: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
358
|
+
portal: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
359
|
+
licensing: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
360
|
+
contact: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
361
|
+
support: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
362
|
+
branch: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
363
|
+
preid: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
364
|
+
owner: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
365
|
+
bot: z.ZodMiniObject<{
|
|
366
|
+
name: z.ZodMiniString<string>;
|
|
367
|
+
email: z.ZodMiniString<string>;
|
|
368
368
|
}, z.core.$strip>;
|
|
369
|
-
release: z.
|
|
370
|
-
banner: z.
|
|
371
|
-
url: z.
|
|
372
|
-
alt: z.
|
|
373
|
-
}, z.core.$strip>, z.
|
|
374
|
-
header: z.
|
|
375
|
-
footer: z.
|
|
369
|
+
release: z.ZodMiniObject<{
|
|
370
|
+
banner: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
371
|
+
url: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
372
|
+
alt: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
373
|
+
}, z.core.$strip>, z.ZodMiniString<string>]>;
|
|
374
|
+
header: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
375
|
+
footer: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
376
376
|
}, z.core.$strip>;
|
|
377
|
-
socials: z.
|
|
378
|
-
twitter: z.
|
|
379
|
-
discord: z.
|
|
380
|
-
telegram: z.
|
|
381
|
-
slack: z.
|
|
382
|
-
medium: z.
|
|
383
|
-
github: z.
|
|
377
|
+
socials: z.ZodMiniObject<{
|
|
378
|
+
twitter: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
379
|
+
discord: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
380
|
+
telegram: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
381
|
+
slack: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
382
|
+
medium: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
383
|
+
github: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
384
384
|
}, z.core.$strip>;
|
|
385
|
-
error: z.
|
|
386
|
-
codesFile: z.
|
|
387
|
-
url: z.
|
|
385
|
+
error: z.ZodMiniObject<{
|
|
386
|
+
codesFile: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
387
|
+
url: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
388
388
|
}, z.core.$strip>;
|
|
389
|
-
mode: z.
|
|
389
|
+
mode: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
390
390
|
development: "development";
|
|
391
391
|
staging: "staging";
|
|
392
392
|
production: "production";
|
|
393
393
|
}>>;
|
|
394
|
-
workspaceRoot: z.
|
|
395
|
-
skipCache: z.
|
|
396
|
-
directories: z.
|
|
397
|
-
cache: z.
|
|
398
|
-
data: z.
|
|
399
|
-
config: z.
|
|
400
|
-
temp: z.
|
|
401
|
-
log: z.
|
|
402
|
-
build: z.
|
|
394
|
+
workspaceRoot: z.ZodMiniString<string>;
|
|
395
|
+
skipCache: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
396
|
+
directories: z.ZodMiniObject<{
|
|
397
|
+
cache: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
398
|
+
data: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
399
|
+
config: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
400
|
+
temp: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
401
|
+
log: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
402
|
+
build: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
403
403
|
}, z.core.$strip>;
|
|
404
|
-
packageManager: z.
|
|
404
|
+
packageManager: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
405
405
|
npm: "npm";
|
|
406
406
|
yarn: "yarn";
|
|
407
407
|
pnpm: "pnpm";
|
|
408
408
|
bun: "bun";
|
|
409
409
|
}>>;
|
|
410
|
-
timezone: z.
|
|
411
|
-
locale: z.
|
|
412
|
-
logLevel: z.
|
|
410
|
+
timezone: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
411
|
+
locale: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
412
|
+
logLevel: z.ZodMiniDefault<z.ZodMiniEnum<{
|
|
413
413
|
error: "error";
|
|
414
414
|
success: "success";
|
|
415
415
|
silent: "silent";
|
|
@@ -420,119 +420,119 @@ declare const workspaceConfigSchema: z.ZodObject<{
|
|
|
420
420
|
trace: "trace";
|
|
421
421
|
all: "all";
|
|
422
422
|
}>>;
|
|
423
|
-
skipConfigLogging: z.
|
|
424
|
-
registry: z.
|
|
425
|
-
github: z.
|
|
426
|
-
npm: z.
|
|
427
|
-
cargo: z.
|
|
428
|
-
cyclone: z.
|
|
429
|
-
container: z.
|
|
423
|
+
skipConfigLogging: z.ZodMiniDefault<z.ZodMiniBoolean<boolean>>;
|
|
424
|
+
registry: z.ZodMiniDefault<z.ZodMiniObject<{
|
|
425
|
+
github: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
426
|
+
npm: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
427
|
+
cargo: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
428
|
+
cyclone: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
429
|
+
container: z.ZodMiniOptional<z.ZodMiniURL>;
|
|
430
430
|
}, z.core.$strip>>;
|
|
431
|
-
configFile: z.
|
|
432
|
-
colors: z.
|
|
433
|
-
dark: z.
|
|
434
|
-
light: z.
|
|
435
|
-
brand: z.
|
|
436
|
-
alternate: z.
|
|
437
|
-
accent: z.
|
|
438
|
-
link: z.
|
|
439
|
-
help: z.
|
|
440
|
-
success: z.
|
|
441
|
-
info: z.
|
|
442
|
-
warning: z.
|
|
443
|
-
danger: z.
|
|
444
|
-
fatal: z.
|
|
445
|
-
positive: z.
|
|
446
|
-
negative: z.
|
|
447
|
-
gradient: z.
|
|
448
|
-
}, z.core.$strip>, z.
|
|
449
|
-
dark: z.
|
|
450
|
-
foreground: z.
|
|
451
|
-
background: z.
|
|
452
|
-
brand: z.
|
|
453
|
-
alternate: z.
|
|
454
|
-
accent: z.
|
|
455
|
-
link: z.
|
|
456
|
-
help: z.
|
|
457
|
-
success: z.
|
|
458
|
-
info: z.
|
|
459
|
-
warning: z.
|
|
460
|
-
danger: z.
|
|
461
|
-
fatal: z.
|
|
462
|
-
positive: z.
|
|
463
|
-
negative: z.
|
|
464
|
-
gradient: z.
|
|
431
|
+
configFile: z.ZodMiniDefault<z.ZodMiniNullable<z.ZodMiniString<string>>>;
|
|
432
|
+
colors: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
433
|
+
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
434
|
+
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
435
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
436
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
437
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
438
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
439
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
440
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
441
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
442
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
443
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
444
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
445
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
446
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
447
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
448
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
449
|
+
dark: z.ZodMiniObject<{
|
|
450
|
+
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
451
|
+
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
452
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
453
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
454
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
455
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
456
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
457
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
458
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
459
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
460
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
461
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
462
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
463
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
464
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
465
465
|
}, z.core.$strip>;
|
|
466
|
-
light: z.
|
|
467
|
-
foreground: z.
|
|
468
|
-
background: z.
|
|
469
|
-
brand: z.
|
|
470
|
-
alternate: z.
|
|
471
|
-
accent: z.
|
|
472
|
-
link: z.
|
|
473
|
-
help: z.
|
|
474
|
-
success: z.
|
|
475
|
-
info: z.
|
|
476
|
-
warning: z.
|
|
477
|
-
danger: z.
|
|
478
|
-
fatal: z.
|
|
479
|
-
positive: z.
|
|
480
|
-
negative: z.
|
|
481
|
-
gradient: z.
|
|
466
|
+
light: z.ZodMiniObject<{
|
|
467
|
+
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
468
|
+
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
469
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
470
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
471
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
472
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
473
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
474
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
475
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
476
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
477
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
478
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
479
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
480
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
481
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
482
482
|
}, z.core.$strip>;
|
|
483
|
-
}, z.core.$strip>]>, z.
|
|
484
|
-
dark: z.
|
|
485
|
-
light: z.
|
|
486
|
-
brand: z.
|
|
487
|
-
alternate: z.
|
|
488
|
-
accent: z.
|
|
489
|
-
link: z.
|
|
490
|
-
help: z.
|
|
491
|
-
success: z.
|
|
492
|
-
info: z.
|
|
493
|
-
warning: z.
|
|
494
|
-
danger: z.
|
|
495
|
-
fatal: z.
|
|
496
|
-
positive: z.
|
|
497
|
-
negative: z.
|
|
498
|
-
gradient: z.
|
|
499
|
-
}, z.core.$strip>, z.
|
|
500
|
-
dark: z.
|
|
501
|
-
foreground: z.
|
|
502
|
-
background: z.
|
|
503
|
-
brand: z.
|
|
504
|
-
alternate: z.
|
|
505
|
-
accent: z.
|
|
506
|
-
link: z.
|
|
507
|
-
help: z.
|
|
508
|
-
success: z.
|
|
509
|
-
info: z.
|
|
510
|
-
warning: z.
|
|
511
|
-
danger: z.
|
|
512
|
-
fatal: z.
|
|
513
|
-
positive: z.
|
|
514
|
-
negative: z.
|
|
515
|
-
gradient: z.
|
|
483
|
+
}, 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<{
|
|
484
|
+
dark: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
485
|
+
light: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
486
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
487
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
488
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
489
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
490
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
491
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
492
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
493
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
494
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
495
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
496
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
497
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
498
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
499
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
500
|
+
dark: z.ZodMiniObject<{
|
|
501
|
+
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
502
|
+
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
503
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
504
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
505
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
506
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
507
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
508
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
509
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
510
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
511
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
512
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
513
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
514
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
515
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
516
516
|
}, z.core.$strip>;
|
|
517
|
-
light: z.
|
|
518
|
-
foreground: z.
|
|
519
|
-
background: z.
|
|
520
|
-
brand: z.
|
|
521
|
-
alternate: z.
|
|
522
|
-
accent: z.
|
|
523
|
-
link: z.
|
|
524
|
-
help: z.
|
|
525
|
-
success: z.
|
|
526
|
-
info: z.
|
|
527
|
-
warning: z.
|
|
528
|
-
danger: z.
|
|
529
|
-
fatal: z.
|
|
530
|
-
positive: z.
|
|
531
|
-
negative: z.
|
|
532
|
-
gradient: z.
|
|
517
|
+
light: z.ZodMiniObject<{
|
|
518
|
+
foreground: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
519
|
+
background: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
520
|
+
brand: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
521
|
+
alternate: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
522
|
+
accent: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
523
|
+
link: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
524
|
+
help: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
525
|
+
success: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
526
|
+
info: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
527
|
+
warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
528
|
+
danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
529
|
+
fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
530
|
+
positive: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
531
|
+
negative: z.ZodMiniDefault<z.ZodMiniString<string>>;
|
|
532
|
+
gradient: z.ZodMiniOptional<z.ZodMiniArray<z.ZodMiniString<string>>>;
|
|
533
533
|
}, z.core.$strip>;
|
|
534
534
|
}, z.core.$strip>]>>]>;
|
|
535
|
-
extensions: z.
|
|
535
|
+
extensions: z.ZodMiniDefault<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniAny>>;
|
|
536
536
|
}, z.core.$strip>;
|
|
537
537
|
|
|
538
538
|
export { accentColorSchema, alternateColorSchema, branchSchema, brandColorSchema, colorsSchema, configFileSchema, contactSchema, dangerColorSchema, darkColorSchema, darkColorsSchema, docsSchema, errorCodesFileSchema, errorSchema, errorUrlSchema, extendsSchema, extensionsSchema, fatalColorSchema, gradientStopsSchema, helpColorSchema, homepageSchema, infoColorSchema, licenseSchema, licensingSchema, lightColorSchema, lightColorsSchema, linkColorSchema, localeSchema, logLevelSchema, modeSchema, multiColorsSchema, negativeColorSchema, organizationDescriptionSchema, organizationIconSchema, organizationLogoSchema, organizationNameSchema, organizationSchema, organizationUrlSchema, ownerSchema, packageManagerSchema, portalSchema, positiveColorSchema, preidSchema, registrySchema, schemaRegistry, singleColorsSchema, skipCacheSchema, skipConfigLoggingSchema, successColorSchema, supportSchema, themeColorsSchema, timezoneSchema, variantSchema, warningColorSchema, workspaceBotSchema, workspaceConfigSchema, workspaceDirectoryBuildSchema, workspaceDirectoryCacheSchema, workspaceDirectoryConfigSchema, workspaceDirectoryDataSchema, workspaceDirectoryLogSchema, workspaceDirectorySchema, workspaceDirectoryTempSchema, workspaceReleaseBannerAltSchema, workspaceReleaseBannerSchema, workspaceReleaseBannerUrlSchema, workspaceReleaseFooterSchema, workspaceReleaseHeaderSchema, workspaceReleaseSchema, workspaceRootSchema, workspaceSocialsDiscordSchema, workspaceSocialsGithubSchema, workspaceSocialsMediumSchema, workspaceSocialsSchema, workspaceSocialsSlackSchema, workspaceSocialsTelegramSchema, workspaceSocialsTwitterSchema };
|