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