@storm-software/cloudflare-tools 0.17.0 → 0.18.0
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/README.md +1 -1
- package/index.js +8889 -12129
- package/meta.json +1 -1
- package/package.json +10 -7
- package/packages/build-tools/src/config/get-rolldown-config.d.ts +1 -1
- package/packages/build-tools/src/config/get-unbuild-config.d.ts +4 -4
- package/packages/build-tools/src/types.d.ts +4 -2
- package/packages/build-tools/src/utils/generate-package-json.d.ts +3 -0
- package/packages/cloudflare-tools/src/executors/serve/executor.d.ts +3 -3
- package/packages/config/src/define-config.d.ts +18 -0
- package/packages/config/src/schema.d.ts +254 -0
- package/packages/config-tools/src/config-file/get-config-file.d.ts +1 -1
- package/packages/config-tools/src/create-storm-config.d.ts +1 -1
- package/packages/config-tools/src/utilities/get-default-config.d.ts +1 -1
- package/packages/config-tools/src/utilities/logger.d.ts +1 -1
- package/packages/workspace-tools/index.d.ts +13 -11
- package/packages/workspace-tools/src/executors/rolldown/executor.d.ts +1 -1
- package/packages/workspace-tools/src/executors/size-limit/executor.d.ts +8 -0
- package/packages/workspace-tools/src/executors/unbuild/executor.d.ts +2 -2
- package/src/executors/cloudflare-publish/executor.js +6649 -5255
- package/src/executors/serve/executor.js +6651 -5283
- package/src/generators/init/generator.js +96 -94
- package/src/generators/worker/generator.js +655 -4291
|
@@ -3,6 +3,8 @@ export declare const DarkThemeColorConfigSchema: z.ZodObject<{
|
|
|
3
3
|
foreground: z.ZodDefault<z.ZodString>;
|
|
4
4
|
background: z.ZodDefault<z.ZodString>;
|
|
5
5
|
brand: z.ZodDefault<z.ZodString>;
|
|
6
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
7
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
6
8
|
accent: z.ZodOptional<z.ZodString>;
|
|
7
9
|
help: z.ZodDefault<z.ZodString>;
|
|
8
10
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -14,6 +16,8 @@ export declare const DarkThemeColorConfigSchema: z.ZodObject<{
|
|
|
14
16
|
foreground: string;
|
|
15
17
|
background: string;
|
|
16
18
|
brand: string;
|
|
19
|
+
brand2: string;
|
|
20
|
+
brand3: string;
|
|
17
21
|
help: string;
|
|
18
22
|
success: string;
|
|
19
23
|
info: string;
|
|
@@ -25,6 +29,8 @@ export declare const DarkThemeColorConfigSchema: z.ZodObject<{
|
|
|
25
29
|
foreground?: string | undefined;
|
|
26
30
|
background?: string | undefined;
|
|
27
31
|
brand?: string | undefined;
|
|
32
|
+
brand2?: string | undefined;
|
|
33
|
+
brand3?: string | undefined;
|
|
28
34
|
accent?: string | undefined;
|
|
29
35
|
help?: string | undefined;
|
|
30
36
|
success?: string | undefined;
|
|
@@ -37,6 +43,8 @@ export declare const LightThemeColorConfigSchema: z.ZodObject<{
|
|
|
37
43
|
foreground: z.ZodDefault<z.ZodString>;
|
|
38
44
|
background: z.ZodDefault<z.ZodString>;
|
|
39
45
|
brand: z.ZodDefault<z.ZodString>;
|
|
46
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
47
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
40
48
|
accent: z.ZodOptional<z.ZodString>;
|
|
41
49
|
help: z.ZodDefault<z.ZodString>;
|
|
42
50
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -48,6 +56,8 @@ export declare const LightThemeColorConfigSchema: z.ZodObject<{
|
|
|
48
56
|
foreground: string;
|
|
49
57
|
background: string;
|
|
50
58
|
brand: string;
|
|
59
|
+
brand2: string;
|
|
60
|
+
brand3: string;
|
|
51
61
|
help: string;
|
|
52
62
|
success: string;
|
|
53
63
|
info: string;
|
|
@@ -59,6 +69,8 @@ export declare const LightThemeColorConfigSchema: z.ZodObject<{
|
|
|
59
69
|
foreground?: string | undefined;
|
|
60
70
|
background?: string | undefined;
|
|
61
71
|
brand?: string | undefined;
|
|
72
|
+
brand2?: string | undefined;
|
|
73
|
+
brand3?: string | undefined;
|
|
62
74
|
accent?: string | undefined;
|
|
63
75
|
help?: string | undefined;
|
|
64
76
|
success?: string | undefined;
|
|
@@ -72,6 +84,8 @@ export declare const MultiThemeColorConfigSchema: z.ZodObject<{
|
|
|
72
84
|
foreground: z.ZodDefault<z.ZodString>;
|
|
73
85
|
background: z.ZodDefault<z.ZodString>;
|
|
74
86
|
brand: z.ZodDefault<z.ZodString>;
|
|
87
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
88
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
75
89
|
accent: z.ZodOptional<z.ZodString>;
|
|
76
90
|
help: z.ZodDefault<z.ZodString>;
|
|
77
91
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -83,6 +97,8 @@ export declare const MultiThemeColorConfigSchema: z.ZodObject<{
|
|
|
83
97
|
foreground: string;
|
|
84
98
|
background: string;
|
|
85
99
|
brand: string;
|
|
100
|
+
brand2: string;
|
|
101
|
+
brand3: string;
|
|
86
102
|
help: string;
|
|
87
103
|
success: string;
|
|
88
104
|
info: string;
|
|
@@ -94,6 +110,8 @@ export declare const MultiThemeColorConfigSchema: z.ZodObject<{
|
|
|
94
110
|
foreground?: string | undefined;
|
|
95
111
|
background?: string | undefined;
|
|
96
112
|
brand?: string | undefined;
|
|
113
|
+
brand2?: string | undefined;
|
|
114
|
+
brand3?: string | undefined;
|
|
97
115
|
accent?: string | undefined;
|
|
98
116
|
help?: string | undefined;
|
|
99
117
|
success?: string | undefined;
|
|
@@ -106,6 +124,8 @@ export declare const MultiThemeColorConfigSchema: z.ZodObject<{
|
|
|
106
124
|
foreground: z.ZodDefault<z.ZodString>;
|
|
107
125
|
background: z.ZodDefault<z.ZodString>;
|
|
108
126
|
brand: z.ZodDefault<z.ZodString>;
|
|
127
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
128
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
109
129
|
accent: z.ZodOptional<z.ZodString>;
|
|
110
130
|
help: z.ZodDefault<z.ZodString>;
|
|
111
131
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -117,6 +137,8 @@ export declare const MultiThemeColorConfigSchema: z.ZodObject<{
|
|
|
117
137
|
foreground: string;
|
|
118
138
|
background: string;
|
|
119
139
|
brand: string;
|
|
140
|
+
brand2: string;
|
|
141
|
+
brand3: string;
|
|
120
142
|
help: string;
|
|
121
143
|
success: string;
|
|
122
144
|
info: string;
|
|
@@ -128,6 +150,8 @@ export declare const MultiThemeColorConfigSchema: z.ZodObject<{
|
|
|
128
150
|
foreground?: string | undefined;
|
|
129
151
|
background?: string | undefined;
|
|
130
152
|
brand?: string | undefined;
|
|
153
|
+
brand2?: string | undefined;
|
|
154
|
+
brand3?: string | undefined;
|
|
131
155
|
accent?: string | undefined;
|
|
132
156
|
help?: string | undefined;
|
|
133
157
|
success?: string | undefined;
|
|
@@ -141,6 +165,8 @@ export declare const MultiThemeColorConfigSchema: z.ZodObject<{
|
|
|
141
165
|
foreground: string;
|
|
142
166
|
background: string;
|
|
143
167
|
brand: string;
|
|
168
|
+
brand2: string;
|
|
169
|
+
brand3: string;
|
|
144
170
|
help: string;
|
|
145
171
|
success: string;
|
|
146
172
|
info: string;
|
|
@@ -153,6 +179,8 @@ export declare const MultiThemeColorConfigSchema: z.ZodObject<{
|
|
|
153
179
|
foreground: string;
|
|
154
180
|
background: string;
|
|
155
181
|
brand: string;
|
|
182
|
+
brand2: string;
|
|
183
|
+
brand3: string;
|
|
156
184
|
help: string;
|
|
157
185
|
success: string;
|
|
158
186
|
info: string;
|
|
@@ -166,6 +194,8 @@ export declare const MultiThemeColorConfigSchema: z.ZodObject<{
|
|
|
166
194
|
foreground?: string | undefined;
|
|
167
195
|
background?: string | undefined;
|
|
168
196
|
brand?: string | undefined;
|
|
197
|
+
brand2?: string | undefined;
|
|
198
|
+
brand3?: string | undefined;
|
|
169
199
|
accent?: string | undefined;
|
|
170
200
|
help?: string | undefined;
|
|
171
201
|
success?: string | undefined;
|
|
@@ -178,6 +208,8 @@ export declare const MultiThemeColorConfigSchema: z.ZodObject<{
|
|
|
178
208
|
foreground?: string | undefined;
|
|
179
209
|
background?: string | undefined;
|
|
180
210
|
brand?: string | undefined;
|
|
211
|
+
brand2?: string | undefined;
|
|
212
|
+
brand3?: string | undefined;
|
|
181
213
|
accent?: string | undefined;
|
|
182
214
|
help?: string | undefined;
|
|
183
215
|
success?: string | undefined;
|
|
@@ -191,6 +223,8 @@ export declare const SingleThemeColorConfigSchema: z.ZodObject<{
|
|
|
191
223
|
dark: z.ZodDefault<z.ZodString>;
|
|
192
224
|
light: z.ZodDefault<z.ZodString>;
|
|
193
225
|
brand: z.ZodDefault<z.ZodString>;
|
|
226
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
227
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
194
228
|
accent: z.ZodOptional<z.ZodString>;
|
|
195
229
|
help: z.ZodDefault<z.ZodString>;
|
|
196
230
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -200,6 +234,8 @@ export declare const SingleThemeColorConfigSchema: z.ZodObject<{
|
|
|
200
234
|
fatal: z.ZodOptional<z.ZodString>;
|
|
201
235
|
}, "strip", z.ZodTypeAny, {
|
|
202
236
|
brand: string;
|
|
237
|
+
brand2: string;
|
|
238
|
+
brand3: string;
|
|
203
239
|
help: string;
|
|
204
240
|
success: string;
|
|
205
241
|
info: string;
|
|
@@ -211,6 +247,8 @@ export declare const SingleThemeColorConfigSchema: z.ZodObject<{
|
|
|
211
247
|
fatal?: string | undefined;
|
|
212
248
|
}, {
|
|
213
249
|
brand?: string | undefined;
|
|
250
|
+
brand2?: string | undefined;
|
|
251
|
+
brand3?: string | undefined;
|
|
214
252
|
accent?: string | undefined;
|
|
215
253
|
help?: string | undefined;
|
|
216
254
|
success?: string | undefined;
|
|
@@ -245,6 +283,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
245
283
|
dark: z.ZodDefault<z.ZodString>;
|
|
246
284
|
light: z.ZodDefault<z.ZodString>;
|
|
247
285
|
brand: z.ZodDefault<z.ZodString>;
|
|
286
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
287
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
248
288
|
accent: z.ZodOptional<z.ZodString>;
|
|
249
289
|
help: z.ZodDefault<z.ZodString>;
|
|
250
290
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -254,6 +294,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
254
294
|
fatal: z.ZodOptional<z.ZodString>;
|
|
255
295
|
}, "strip", z.ZodTypeAny, {
|
|
256
296
|
brand: string;
|
|
297
|
+
brand2: string;
|
|
298
|
+
brand3: string;
|
|
257
299
|
help: string;
|
|
258
300
|
success: string;
|
|
259
301
|
info: string;
|
|
@@ -265,6 +307,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
265
307
|
fatal?: string | undefined;
|
|
266
308
|
}, {
|
|
267
309
|
brand?: string | undefined;
|
|
310
|
+
brand2?: string | undefined;
|
|
311
|
+
brand3?: string | undefined;
|
|
268
312
|
accent?: string | undefined;
|
|
269
313
|
help?: string | undefined;
|
|
270
314
|
success?: string | undefined;
|
|
@@ -279,6 +323,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
279
323
|
foreground: z.ZodDefault<z.ZodString>;
|
|
280
324
|
background: z.ZodDefault<z.ZodString>;
|
|
281
325
|
brand: z.ZodDefault<z.ZodString>;
|
|
326
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
327
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
282
328
|
accent: z.ZodOptional<z.ZodString>;
|
|
283
329
|
help: z.ZodDefault<z.ZodString>;
|
|
284
330
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -290,6 +336,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
290
336
|
foreground: string;
|
|
291
337
|
background: string;
|
|
292
338
|
brand: string;
|
|
339
|
+
brand2: string;
|
|
340
|
+
brand3: string;
|
|
293
341
|
help: string;
|
|
294
342
|
success: string;
|
|
295
343
|
info: string;
|
|
@@ -301,6 +349,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
301
349
|
foreground?: string | undefined;
|
|
302
350
|
background?: string | undefined;
|
|
303
351
|
brand?: string | undefined;
|
|
352
|
+
brand2?: string | undefined;
|
|
353
|
+
brand3?: string | undefined;
|
|
304
354
|
accent?: string | undefined;
|
|
305
355
|
help?: string | undefined;
|
|
306
356
|
success?: string | undefined;
|
|
@@ -313,6 +363,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
313
363
|
foreground: z.ZodDefault<z.ZodString>;
|
|
314
364
|
background: z.ZodDefault<z.ZodString>;
|
|
315
365
|
brand: z.ZodDefault<z.ZodString>;
|
|
366
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
367
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
316
368
|
accent: z.ZodOptional<z.ZodString>;
|
|
317
369
|
help: z.ZodDefault<z.ZodString>;
|
|
318
370
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -324,6 +376,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
324
376
|
foreground: string;
|
|
325
377
|
background: string;
|
|
326
378
|
brand: string;
|
|
379
|
+
brand2: string;
|
|
380
|
+
brand3: string;
|
|
327
381
|
help: string;
|
|
328
382
|
success: string;
|
|
329
383
|
info: string;
|
|
@@ -335,6 +389,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
335
389
|
foreground?: string | undefined;
|
|
336
390
|
background?: string | undefined;
|
|
337
391
|
brand?: string | undefined;
|
|
392
|
+
brand2?: string | undefined;
|
|
393
|
+
brand3?: string | undefined;
|
|
338
394
|
accent?: string | undefined;
|
|
339
395
|
help?: string | undefined;
|
|
340
396
|
success?: string | undefined;
|
|
@@ -348,6 +404,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
348
404
|
foreground: string;
|
|
349
405
|
background: string;
|
|
350
406
|
brand: string;
|
|
407
|
+
brand2: string;
|
|
408
|
+
brand3: string;
|
|
351
409
|
help: string;
|
|
352
410
|
success: string;
|
|
353
411
|
info: string;
|
|
@@ -360,6 +418,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
360
418
|
foreground: string;
|
|
361
419
|
background: string;
|
|
362
420
|
brand: string;
|
|
421
|
+
brand2: string;
|
|
422
|
+
brand3: string;
|
|
363
423
|
help: string;
|
|
364
424
|
success: string;
|
|
365
425
|
info: string;
|
|
@@ -373,6 +433,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
373
433
|
foreground?: string | undefined;
|
|
374
434
|
background?: string | undefined;
|
|
375
435
|
brand?: string | undefined;
|
|
436
|
+
brand2?: string | undefined;
|
|
437
|
+
brand3?: string | undefined;
|
|
376
438
|
accent?: string | undefined;
|
|
377
439
|
help?: string | undefined;
|
|
378
440
|
success?: string | undefined;
|
|
@@ -385,6 +447,8 @@ export declare const ColorConfigSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
385
447
|
foreground?: string | undefined;
|
|
386
448
|
background?: string | undefined;
|
|
387
449
|
brand?: string | undefined;
|
|
450
|
+
brand2?: string | undefined;
|
|
451
|
+
brand3?: string | undefined;
|
|
388
452
|
accent?: string | undefined;
|
|
389
453
|
help?: string | undefined;
|
|
390
454
|
success?: string | undefined;
|
|
@@ -399,6 +463,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
399
463
|
dark: z.ZodDefault<z.ZodString>;
|
|
400
464
|
light: z.ZodDefault<z.ZodString>;
|
|
401
465
|
brand: z.ZodDefault<z.ZodString>;
|
|
466
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
467
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
402
468
|
accent: z.ZodOptional<z.ZodString>;
|
|
403
469
|
help: z.ZodDefault<z.ZodString>;
|
|
404
470
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -408,6 +474,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
408
474
|
fatal: z.ZodOptional<z.ZodString>;
|
|
409
475
|
}, "strip", z.ZodTypeAny, {
|
|
410
476
|
brand: string;
|
|
477
|
+
brand2: string;
|
|
478
|
+
brand3: string;
|
|
411
479
|
help: string;
|
|
412
480
|
success: string;
|
|
413
481
|
info: string;
|
|
@@ -419,6 +487,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
419
487
|
fatal?: string | undefined;
|
|
420
488
|
}, {
|
|
421
489
|
brand?: string | undefined;
|
|
490
|
+
brand2?: string | undefined;
|
|
491
|
+
brand3?: string | undefined;
|
|
422
492
|
accent?: string | undefined;
|
|
423
493
|
help?: string | undefined;
|
|
424
494
|
success?: string | undefined;
|
|
@@ -433,6 +503,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
433
503
|
foreground: z.ZodDefault<z.ZodString>;
|
|
434
504
|
background: z.ZodDefault<z.ZodString>;
|
|
435
505
|
brand: z.ZodDefault<z.ZodString>;
|
|
506
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
507
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
436
508
|
accent: z.ZodOptional<z.ZodString>;
|
|
437
509
|
help: z.ZodDefault<z.ZodString>;
|
|
438
510
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -444,6 +516,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
444
516
|
foreground: string;
|
|
445
517
|
background: string;
|
|
446
518
|
brand: string;
|
|
519
|
+
brand2: string;
|
|
520
|
+
brand3: string;
|
|
447
521
|
help: string;
|
|
448
522
|
success: string;
|
|
449
523
|
info: string;
|
|
@@ -455,6 +529,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
455
529
|
foreground?: string | undefined;
|
|
456
530
|
background?: string | undefined;
|
|
457
531
|
brand?: string | undefined;
|
|
532
|
+
brand2?: string | undefined;
|
|
533
|
+
brand3?: string | undefined;
|
|
458
534
|
accent?: string | undefined;
|
|
459
535
|
help?: string | undefined;
|
|
460
536
|
success?: string | undefined;
|
|
@@ -467,6 +543,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
467
543
|
foreground: z.ZodDefault<z.ZodString>;
|
|
468
544
|
background: z.ZodDefault<z.ZodString>;
|
|
469
545
|
brand: z.ZodDefault<z.ZodString>;
|
|
546
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
547
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
470
548
|
accent: z.ZodOptional<z.ZodString>;
|
|
471
549
|
help: z.ZodDefault<z.ZodString>;
|
|
472
550
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -478,6 +556,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
478
556
|
foreground: string;
|
|
479
557
|
background: string;
|
|
480
558
|
brand: string;
|
|
559
|
+
brand2: string;
|
|
560
|
+
brand3: string;
|
|
481
561
|
help: string;
|
|
482
562
|
success: string;
|
|
483
563
|
info: string;
|
|
@@ -489,6 +569,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
489
569
|
foreground?: string | undefined;
|
|
490
570
|
background?: string | undefined;
|
|
491
571
|
brand?: string | undefined;
|
|
572
|
+
brand2?: string | undefined;
|
|
573
|
+
brand3?: string | undefined;
|
|
492
574
|
accent?: string | undefined;
|
|
493
575
|
help?: string | undefined;
|
|
494
576
|
success?: string | undefined;
|
|
@@ -502,6 +584,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
502
584
|
foreground: string;
|
|
503
585
|
background: string;
|
|
504
586
|
brand: string;
|
|
587
|
+
brand2: string;
|
|
588
|
+
brand3: string;
|
|
505
589
|
help: string;
|
|
506
590
|
success: string;
|
|
507
591
|
info: string;
|
|
@@ -514,6 +598,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
514
598
|
foreground: string;
|
|
515
599
|
background: string;
|
|
516
600
|
brand: string;
|
|
601
|
+
brand2: string;
|
|
602
|
+
brand3: string;
|
|
517
603
|
help: string;
|
|
518
604
|
success: string;
|
|
519
605
|
info: string;
|
|
@@ -527,6 +613,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
527
613
|
foreground?: string | undefined;
|
|
528
614
|
background?: string | undefined;
|
|
529
615
|
brand?: string | undefined;
|
|
616
|
+
brand2?: string | undefined;
|
|
617
|
+
brand3?: string | undefined;
|
|
530
618
|
accent?: string | undefined;
|
|
531
619
|
help?: string | undefined;
|
|
532
620
|
success?: string | undefined;
|
|
@@ -539,6 +627,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
539
627
|
foreground?: string | undefined;
|
|
540
628
|
background?: string | undefined;
|
|
541
629
|
brand?: string | undefined;
|
|
630
|
+
brand2?: string | undefined;
|
|
631
|
+
brand3?: string | undefined;
|
|
542
632
|
accent?: string | undefined;
|
|
543
633
|
help?: string | undefined;
|
|
544
634
|
success?: string | undefined;
|
|
@@ -554,6 +644,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
554
644
|
foreground: string;
|
|
555
645
|
background: string;
|
|
556
646
|
brand: string;
|
|
647
|
+
brand2: string;
|
|
648
|
+
brand3: string;
|
|
557
649
|
help: string;
|
|
558
650
|
success: string;
|
|
559
651
|
info: string;
|
|
@@ -566,6 +658,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
566
658
|
foreground: string;
|
|
567
659
|
background: string;
|
|
568
660
|
brand: string;
|
|
661
|
+
brand2: string;
|
|
662
|
+
brand3: string;
|
|
569
663
|
help: string;
|
|
570
664
|
success: string;
|
|
571
665
|
info: string;
|
|
@@ -576,6 +670,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
576
670
|
};
|
|
577
671
|
} | {
|
|
578
672
|
brand: string;
|
|
673
|
+
brand2: string;
|
|
674
|
+
brand3: string;
|
|
579
675
|
help: string;
|
|
580
676
|
success: string;
|
|
581
677
|
info: string;
|
|
@@ -592,6 +688,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
592
688
|
foreground?: string | undefined;
|
|
593
689
|
background?: string | undefined;
|
|
594
690
|
brand?: string | undefined;
|
|
691
|
+
brand2?: string | undefined;
|
|
692
|
+
brand3?: string | undefined;
|
|
595
693
|
accent?: string | undefined;
|
|
596
694
|
help?: string | undefined;
|
|
597
695
|
success?: string | undefined;
|
|
@@ -604,6 +702,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
604
702
|
foreground?: string | undefined;
|
|
605
703
|
background?: string | undefined;
|
|
606
704
|
brand?: string | undefined;
|
|
705
|
+
brand2?: string | undefined;
|
|
706
|
+
brand3?: string | undefined;
|
|
607
707
|
accent?: string | undefined;
|
|
608
708
|
help?: string | undefined;
|
|
609
709
|
success?: string | undefined;
|
|
@@ -614,6 +714,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
614
714
|
};
|
|
615
715
|
} | {
|
|
616
716
|
brand?: string | undefined;
|
|
717
|
+
brand2?: string | undefined;
|
|
718
|
+
brand3?: string | undefined;
|
|
617
719
|
accent?: string | undefined;
|
|
618
720
|
help?: string | undefined;
|
|
619
721
|
success?: string | undefined;
|
|
@@ -628,6 +730,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
628
730
|
dark: z.ZodDefault<z.ZodString>;
|
|
629
731
|
light: z.ZodDefault<z.ZodString>;
|
|
630
732
|
brand: z.ZodDefault<z.ZodString>;
|
|
733
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
734
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
631
735
|
accent: z.ZodOptional<z.ZodString>;
|
|
632
736
|
help: z.ZodDefault<z.ZodString>;
|
|
633
737
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -637,6 +741,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
637
741
|
fatal: z.ZodOptional<z.ZodString>;
|
|
638
742
|
}, "strip", z.ZodTypeAny, {
|
|
639
743
|
brand: string;
|
|
744
|
+
brand2: string;
|
|
745
|
+
brand3: string;
|
|
640
746
|
help: string;
|
|
641
747
|
success: string;
|
|
642
748
|
info: string;
|
|
@@ -648,6 +754,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
648
754
|
fatal?: string | undefined;
|
|
649
755
|
}, {
|
|
650
756
|
brand?: string | undefined;
|
|
757
|
+
brand2?: string | undefined;
|
|
758
|
+
brand3?: string | undefined;
|
|
651
759
|
accent?: string | undefined;
|
|
652
760
|
help?: string | undefined;
|
|
653
761
|
success?: string | undefined;
|
|
@@ -662,6 +770,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
662
770
|
foreground: z.ZodDefault<z.ZodString>;
|
|
663
771
|
background: z.ZodDefault<z.ZodString>;
|
|
664
772
|
brand: z.ZodDefault<z.ZodString>;
|
|
773
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
774
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
665
775
|
accent: z.ZodOptional<z.ZodString>;
|
|
666
776
|
help: z.ZodDefault<z.ZodString>;
|
|
667
777
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -673,6 +783,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
673
783
|
foreground: string;
|
|
674
784
|
background: string;
|
|
675
785
|
brand: string;
|
|
786
|
+
brand2: string;
|
|
787
|
+
brand3: string;
|
|
676
788
|
help: string;
|
|
677
789
|
success: string;
|
|
678
790
|
info: string;
|
|
@@ -684,6 +796,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
684
796
|
foreground?: string | undefined;
|
|
685
797
|
background?: string | undefined;
|
|
686
798
|
brand?: string | undefined;
|
|
799
|
+
brand2?: string | undefined;
|
|
800
|
+
brand3?: string | undefined;
|
|
687
801
|
accent?: string | undefined;
|
|
688
802
|
help?: string | undefined;
|
|
689
803
|
success?: string | undefined;
|
|
@@ -696,6 +810,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
696
810
|
foreground: z.ZodDefault<z.ZodString>;
|
|
697
811
|
background: z.ZodDefault<z.ZodString>;
|
|
698
812
|
brand: z.ZodDefault<z.ZodString>;
|
|
813
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
814
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
699
815
|
accent: z.ZodOptional<z.ZodString>;
|
|
700
816
|
help: z.ZodDefault<z.ZodString>;
|
|
701
817
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -707,6 +823,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
707
823
|
foreground: string;
|
|
708
824
|
background: string;
|
|
709
825
|
brand: string;
|
|
826
|
+
brand2: string;
|
|
827
|
+
brand3: string;
|
|
710
828
|
help: string;
|
|
711
829
|
success: string;
|
|
712
830
|
info: string;
|
|
@@ -718,6 +836,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
718
836
|
foreground?: string | undefined;
|
|
719
837
|
background?: string | undefined;
|
|
720
838
|
brand?: string | undefined;
|
|
839
|
+
brand2?: string | undefined;
|
|
840
|
+
brand3?: string | undefined;
|
|
721
841
|
accent?: string | undefined;
|
|
722
842
|
help?: string | undefined;
|
|
723
843
|
success?: string | undefined;
|
|
@@ -731,6 +851,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
731
851
|
foreground: string;
|
|
732
852
|
background: string;
|
|
733
853
|
brand: string;
|
|
854
|
+
brand2: string;
|
|
855
|
+
brand3: string;
|
|
734
856
|
help: string;
|
|
735
857
|
success: string;
|
|
736
858
|
info: string;
|
|
@@ -743,6 +865,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
743
865
|
foreground: string;
|
|
744
866
|
background: string;
|
|
745
867
|
brand: string;
|
|
868
|
+
brand2: string;
|
|
869
|
+
brand3: string;
|
|
746
870
|
help: string;
|
|
747
871
|
success: string;
|
|
748
872
|
info: string;
|
|
@@ -756,6 +880,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
756
880
|
foreground?: string | undefined;
|
|
757
881
|
background?: string | undefined;
|
|
758
882
|
brand?: string | undefined;
|
|
883
|
+
brand2?: string | undefined;
|
|
884
|
+
brand3?: string | undefined;
|
|
759
885
|
accent?: string | undefined;
|
|
760
886
|
help?: string | undefined;
|
|
761
887
|
success?: string | undefined;
|
|
@@ -768,6 +894,8 @@ export declare const ColorConfigMapSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
768
894
|
foreground?: string | undefined;
|
|
769
895
|
background?: string | undefined;
|
|
770
896
|
brand?: string | undefined;
|
|
897
|
+
brand2?: string | undefined;
|
|
898
|
+
brand3?: string | undefined;
|
|
771
899
|
accent?: string | undefined;
|
|
772
900
|
help?: string | undefined;
|
|
773
901
|
success?: string | undefined;
|
|
@@ -829,6 +957,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
829
957
|
dark: z.ZodDefault<z.ZodString>;
|
|
830
958
|
light: z.ZodDefault<z.ZodString>;
|
|
831
959
|
brand: z.ZodDefault<z.ZodString>;
|
|
960
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
961
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
832
962
|
accent: z.ZodOptional<z.ZodString>;
|
|
833
963
|
help: z.ZodDefault<z.ZodString>;
|
|
834
964
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -838,6 +968,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
838
968
|
fatal: z.ZodOptional<z.ZodString>;
|
|
839
969
|
}, "strip", z.ZodTypeAny, {
|
|
840
970
|
brand: string;
|
|
971
|
+
brand2: string;
|
|
972
|
+
brand3: string;
|
|
841
973
|
help: string;
|
|
842
974
|
success: string;
|
|
843
975
|
info: string;
|
|
@@ -849,6 +981,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
849
981
|
fatal?: string | undefined;
|
|
850
982
|
}, {
|
|
851
983
|
brand?: string | undefined;
|
|
984
|
+
brand2?: string | undefined;
|
|
985
|
+
brand3?: string | undefined;
|
|
852
986
|
accent?: string | undefined;
|
|
853
987
|
help?: string | undefined;
|
|
854
988
|
success?: string | undefined;
|
|
@@ -863,6 +997,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
863
997
|
foreground: z.ZodDefault<z.ZodString>;
|
|
864
998
|
background: z.ZodDefault<z.ZodString>;
|
|
865
999
|
brand: z.ZodDefault<z.ZodString>;
|
|
1000
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
1001
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
866
1002
|
accent: z.ZodOptional<z.ZodString>;
|
|
867
1003
|
help: z.ZodDefault<z.ZodString>;
|
|
868
1004
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -874,6 +1010,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
874
1010
|
foreground: string;
|
|
875
1011
|
background: string;
|
|
876
1012
|
brand: string;
|
|
1013
|
+
brand2: string;
|
|
1014
|
+
brand3: string;
|
|
877
1015
|
help: string;
|
|
878
1016
|
success: string;
|
|
879
1017
|
info: string;
|
|
@@ -885,6 +1023,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
885
1023
|
foreground?: string | undefined;
|
|
886
1024
|
background?: string | undefined;
|
|
887
1025
|
brand?: string | undefined;
|
|
1026
|
+
brand2?: string | undefined;
|
|
1027
|
+
brand3?: string | undefined;
|
|
888
1028
|
accent?: string | undefined;
|
|
889
1029
|
help?: string | undefined;
|
|
890
1030
|
success?: string | undefined;
|
|
@@ -897,6 +1037,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
897
1037
|
foreground: z.ZodDefault<z.ZodString>;
|
|
898
1038
|
background: z.ZodDefault<z.ZodString>;
|
|
899
1039
|
brand: z.ZodDefault<z.ZodString>;
|
|
1040
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
1041
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
900
1042
|
accent: z.ZodOptional<z.ZodString>;
|
|
901
1043
|
help: z.ZodDefault<z.ZodString>;
|
|
902
1044
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -908,6 +1050,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
908
1050
|
foreground: string;
|
|
909
1051
|
background: string;
|
|
910
1052
|
brand: string;
|
|
1053
|
+
brand2: string;
|
|
1054
|
+
brand3: string;
|
|
911
1055
|
help: string;
|
|
912
1056
|
success: string;
|
|
913
1057
|
info: string;
|
|
@@ -919,6 +1063,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
919
1063
|
foreground?: string | undefined;
|
|
920
1064
|
background?: string | undefined;
|
|
921
1065
|
brand?: string | undefined;
|
|
1066
|
+
brand2?: string | undefined;
|
|
1067
|
+
brand3?: string | undefined;
|
|
922
1068
|
accent?: string | undefined;
|
|
923
1069
|
help?: string | undefined;
|
|
924
1070
|
success?: string | undefined;
|
|
@@ -932,6 +1078,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
932
1078
|
foreground: string;
|
|
933
1079
|
background: string;
|
|
934
1080
|
brand: string;
|
|
1081
|
+
brand2: string;
|
|
1082
|
+
brand3: string;
|
|
935
1083
|
help: string;
|
|
936
1084
|
success: string;
|
|
937
1085
|
info: string;
|
|
@@ -944,6 +1092,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
944
1092
|
foreground: string;
|
|
945
1093
|
background: string;
|
|
946
1094
|
brand: string;
|
|
1095
|
+
brand2: string;
|
|
1096
|
+
brand3: string;
|
|
947
1097
|
help: string;
|
|
948
1098
|
success: string;
|
|
949
1099
|
info: string;
|
|
@@ -957,6 +1107,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
957
1107
|
foreground?: string | undefined;
|
|
958
1108
|
background?: string | undefined;
|
|
959
1109
|
brand?: string | undefined;
|
|
1110
|
+
brand2?: string | undefined;
|
|
1111
|
+
brand3?: string | undefined;
|
|
960
1112
|
accent?: string | undefined;
|
|
961
1113
|
help?: string | undefined;
|
|
962
1114
|
success?: string | undefined;
|
|
@@ -969,6 +1121,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
969
1121
|
foreground?: string | undefined;
|
|
970
1122
|
background?: string | undefined;
|
|
971
1123
|
brand?: string | undefined;
|
|
1124
|
+
brand2?: string | undefined;
|
|
1125
|
+
brand3?: string | undefined;
|
|
972
1126
|
accent?: string | undefined;
|
|
973
1127
|
help?: string | undefined;
|
|
974
1128
|
success?: string | undefined;
|
|
@@ -982,6 +1136,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
982
1136
|
dark: z.ZodDefault<z.ZodString>;
|
|
983
1137
|
light: z.ZodDefault<z.ZodString>;
|
|
984
1138
|
brand: z.ZodDefault<z.ZodString>;
|
|
1139
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
1140
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
985
1141
|
accent: z.ZodOptional<z.ZodString>;
|
|
986
1142
|
help: z.ZodDefault<z.ZodString>;
|
|
987
1143
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -991,6 +1147,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
991
1147
|
fatal: z.ZodOptional<z.ZodString>;
|
|
992
1148
|
}, "strip", z.ZodTypeAny, {
|
|
993
1149
|
brand: string;
|
|
1150
|
+
brand2: string;
|
|
1151
|
+
brand3: string;
|
|
994
1152
|
help: string;
|
|
995
1153
|
success: string;
|
|
996
1154
|
info: string;
|
|
@@ -1002,6 +1160,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1002
1160
|
fatal?: string | undefined;
|
|
1003
1161
|
}, {
|
|
1004
1162
|
brand?: string | undefined;
|
|
1163
|
+
brand2?: string | undefined;
|
|
1164
|
+
brand3?: string | undefined;
|
|
1005
1165
|
accent?: string | undefined;
|
|
1006
1166
|
help?: string | undefined;
|
|
1007
1167
|
success?: string | undefined;
|
|
@@ -1016,6 +1176,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1016
1176
|
foreground: z.ZodDefault<z.ZodString>;
|
|
1017
1177
|
background: z.ZodDefault<z.ZodString>;
|
|
1018
1178
|
brand: z.ZodDefault<z.ZodString>;
|
|
1179
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
1180
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
1019
1181
|
accent: z.ZodOptional<z.ZodString>;
|
|
1020
1182
|
help: z.ZodDefault<z.ZodString>;
|
|
1021
1183
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -1027,6 +1189,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1027
1189
|
foreground: string;
|
|
1028
1190
|
background: string;
|
|
1029
1191
|
brand: string;
|
|
1192
|
+
brand2: string;
|
|
1193
|
+
brand3: string;
|
|
1030
1194
|
help: string;
|
|
1031
1195
|
success: string;
|
|
1032
1196
|
info: string;
|
|
@@ -1038,6 +1202,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1038
1202
|
foreground?: string | undefined;
|
|
1039
1203
|
background?: string | undefined;
|
|
1040
1204
|
brand?: string | undefined;
|
|
1205
|
+
brand2?: string | undefined;
|
|
1206
|
+
brand3?: string | undefined;
|
|
1041
1207
|
accent?: string | undefined;
|
|
1042
1208
|
help?: string | undefined;
|
|
1043
1209
|
success?: string | undefined;
|
|
@@ -1050,6 +1216,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1050
1216
|
foreground: z.ZodDefault<z.ZodString>;
|
|
1051
1217
|
background: z.ZodDefault<z.ZodString>;
|
|
1052
1218
|
brand: z.ZodDefault<z.ZodString>;
|
|
1219
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
1220
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
1053
1221
|
accent: z.ZodOptional<z.ZodString>;
|
|
1054
1222
|
help: z.ZodDefault<z.ZodString>;
|
|
1055
1223
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -1061,6 +1229,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1061
1229
|
foreground: string;
|
|
1062
1230
|
background: string;
|
|
1063
1231
|
brand: string;
|
|
1232
|
+
brand2: string;
|
|
1233
|
+
brand3: string;
|
|
1064
1234
|
help: string;
|
|
1065
1235
|
success: string;
|
|
1066
1236
|
info: string;
|
|
@@ -1072,6 +1242,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1072
1242
|
foreground?: string | undefined;
|
|
1073
1243
|
background?: string | undefined;
|
|
1074
1244
|
brand?: string | undefined;
|
|
1245
|
+
brand2?: string | undefined;
|
|
1246
|
+
brand3?: string | undefined;
|
|
1075
1247
|
accent?: string | undefined;
|
|
1076
1248
|
help?: string | undefined;
|
|
1077
1249
|
success?: string | undefined;
|
|
@@ -1085,6 +1257,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1085
1257
|
foreground: string;
|
|
1086
1258
|
background: string;
|
|
1087
1259
|
brand: string;
|
|
1260
|
+
brand2: string;
|
|
1261
|
+
brand3: string;
|
|
1088
1262
|
help: string;
|
|
1089
1263
|
success: string;
|
|
1090
1264
|
info: string;
|
|
@@ -1097,6 +1271,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1097
1271
|
foreground: string;
|
|
1098
1272
|
background: string;
|
|
1099
1273
|
brand: string;
|
|
1274
|
+
brand2: string;
|
|
1275
|
+
brand3: string;
|
|
1100
1276
|
help: string;
|
|
1101
1277
|
success: string;
|
|
1102
1278
|
info: string;
|
|
@@ -1110,6 +1286,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1110
1286
|
foreground?: string | undefined;
|
|
1111
1287
|
background?: string | undefined;
|
|
1112
1288
|
brand?: string | undefined;
|
|
1289
|
+
brand2?: string | undefined;
|
|
1290
|
+
brand3?: string | undefined;
|
|
1113
1291
|
accent?: string | undefined;
|
|
1114
1292
|
help?: string | undefined;
|
|
1115
1293
|
success?: string | undefined;
|
|
@@ -1122,6 +1300,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1122
1300
|
foreground?: string | undefined;
|
|
1123
1301
|
background?: string | undefined;
|
|
1124
1302
|
brand?: string | undefined;
|
|
1303
|
+
brand2?: string | undefined;
|
|
1304
|
+
brand3?: string | undefined;
|
|
1125
1305
|
accent?: string | undefined;
|
|
1126
1306
|
help?: string | undefined;
|
|
1127
1307
|
success?: string | undefined;
|
|
@@ -1137,6 +1317,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1137
1317
|
foreground: string;
|
|
1138
1318
|
background: string;
|
|
1139
1319
|
brand: string;
|
|
1320
|
+
brand2: string;
|
|
1321
|
+
brand3: string;
|
|
1140
1322
|
help: string;
|
|
1141
1323
|
success: string;
|
|
1142
1324
|
info: string;
|
|
@@ -1149,6 +1331,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1149
1331
|
foreground: string;
|
|
1150
1332
|
background: string;
|
|
1151
1333
|
brand: string;
|
|
1334
|
+
brand2: string;
|
|
1335
|
+
brand3: string;
|
|
1152
1336
|
help: string;
|
|
1153
1337
|
success: string;
|
|
1154
1338
|
info: string;
|
|
@@ -1159,6 +1343,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1159
1343
|
};
|
|
1160
1344
|
} | {
|
|
1161
1345
|
brand: string;
|
|
1346
|
+
brand2: string;
|
|
1347
|
+
brand3: string;
|
|
1162
1348
|
help: string;
|
|
1163
1349
|
success: string;
|
|
1164
1350
|
info: string;
|
|
@@ -1175,6 +1361,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1175
1361
|
foreground?: string | undefined;
|
|
1176
1362
|
background?: string | undefined;
|
|
1177
1363
|
brand?: string | undefined;
|
|
1364
|
+
brand2?: string | undefined;
|
|
1365
|
+
brand3?: string | undefined;
|
|
1178
1366
|
accent?: string | undefined;
|
|
1179
1367
|
help?: string | undefined;
|
|
1180
1368
|
success?: string | undefined;
|
|
@@ -1187,6 +1375,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1187
1375
|
foreground?: string | undefined;
|
|
1188
1376
|
background?: string | undefined;
|
|
1189
1377
|
brand?: string | undefined;
|
|
1378
|
+
brand2?: string | undefined;
|
|
1379
|
+
brand3?: string | undefined;
|
|
1190
1380
|
accent?: string | undefined;
|
|
1191
1381
|
help?: string | undefined;
|
|
1192
1382
|
success?: string | undefined;
|
|
@@ -1197,6 +1387,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1197
1387
|
};
|
|
1198
1388
|
} | {
|
|
1199
1389
|
brand?: string | undefined;
|
|
1390
|
+
brand2?: string | undefined;
|
|
1391
|
+
brand3?: string | undefined;
|
|
1200
1392
|
accent?: string | undefined;
|
|
1201
1393
|
help?: string | undefined;
|
|
1202
1394
|
success?: string | undefined;
|
|
@@ -1211,6 +1403,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1211
1403
|
dark: z.ZodDefault<z.ZodString>;
|
|
1212
1404
|
light: z.ZodDefault<z.ZodString>;
|
|
1213
1405
|
brand: z.ZodDefault<z.ZodString>;
|
|
1406
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
1407
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
1214
1408
|
accent: z.ZodOptional<z.ZodString>;
|
|
1215
1409
|
help: z.ZodDefault<z.ZodString>;
|
|
1216
1410
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -1220,6 +1414,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1220
1414
|
fatal: z.ZodOptional<z.ZodString>;
|
|
1221
1415
|
}, "strip", z.ZodTypeAny, {
|
|
1222
1416
|
brand: string;
|
|
1417
|
+
brand2: string;
|
|
1418
|
+
brand3: string;
|
|
1223
1419
|
help: string;
|
|
1224
1420
|
success: string;
|
|
1225
1421
|
info: string;
|
|
@@ -1231,6 +1427,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1231
1427
|
fatal?: string | undefined;
|
|
1232
1428
|
}, {
|
|
1233
1429
|
brand?: string | undefined;
|
|
1430
|
+
brand2?: string | undefined;
|
|
1431
|
+
brand3?: string | undefined;
|
|
1234
1432
|
accent?: string | undefined;
|
|
1235
1433
|
help?: string | undefined;
|
|
1236
1434
|
success?: string | undefined;
|
|
@@ -1245,6 +1443,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1245
1443
|
foreground: z.ZodDefault<z.ZodString>;
|
|
1246
1444
|
background: z.ZodDefault<z.ZodString>;
|
|
1247
1445
|
brand: z.ZodDefault<z.ZodString>;
|
|
1446
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
1447
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
1248
1448
|
accent: z.ZodOptional<z.ZodString>;
|
|
1249
1449
|
help: z.ZodDefault<z.ZodString>;
|
|
1250
1450
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -1256,6 +1456,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1256
1456
|
foreground: string;
|
|
1257
1457
|
background: string;
|
|
1258
1458
|
brand: string;
|
|
1459
|
+
brand2: string;
|
|
1460
|
+
brand3: string;
|
|
1259
1461
|
help: string;
|
|
1260
1462
|
success: string;
|
|
1261
1463
|
info: string;
|
|
@@ -1267,6 +1469,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1267
1469
|
foreground?: string | undefined;
|
|
1268
1470
|
background?: string | undefined;
|
|
1269
1471
|
brand?: string | undefined;
|
|
1472
|
+
brand2?: string | undefined;
|
|
1473
|
+
brand3?: string | undefined;
|
|
1270
1474
|
accent?: string | undefined;
|
|
1271
1475
|
help?: string | undefined;
|
|
1272
1476
|
success?: string | undefined;
|
|
@@ -1279,6 +1483,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1279
1483
|
foreground: z.ZodDefault<z.ZodString>;
|
|
1280
1484
|
background: z.ZodDefault<z.ZodString>;
|
|
1281
1485
|
brand: z.ZodDefault<z.ZodString>;
|
|
1486
|
+
brand2: z.ZodDefault<z.ZodString>;
|
|
1487
|
+
brand3: z.ZodDefault<z.ZodString>;
|
|
1282
1488
|
accent: z.ZodOptional<z.ZodString>;
|
|
1283
1489
|
help: z.ZodDefault<z.ZodString>;
|
|
1284
1490
|
success: z.ZodDefault<z.ZodString>;
|
|
@@ -1290,6 +1496,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1290
1496
|
foreground: string;
|
|
1291
1497
|
background: string;
|
|
1292
1498
|
brand: string;
|
|
1499
|
+
brand2: string;
|
|
1500
|
+
brand3: string;
|
|
1293
1501
|
help: string;
|
|
1294
1502
|
success: string;
|
|
1295
1503
|
info: string;
|
|
@@ -1301,6 +1509,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1301
1509
|
foreground?: string | undefined;
|
|
1302
1510
|
background?: string | undefined;
|
|
1303
1511
|
brand?: string | undefined;
|
|
1512
|
+
brand2?: string | undefined;
|
|
1513
|
+
brand3?: string | undefined;
|
|
1304
1514
|
accent?: string | undefined;
|
|
1305
1515
|
help?: string | undefined;
|
|
1306
1516
|
success?: string | undefined;
|
|
@@ -1314,6 +1524,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1314
1524
|
foreground: string;
|
|
1315
1525
|
background: string;
|
|
1316
1526
|
brand: string;
|
|
1527
|
+
brand2: string;
|
|
1528
|
+
brand3: string;
|
|
1317
1529
|
help: string;
|
|
1318
1530
|
success: string;
|
|
1319
1531
|
info: string;
|
|
@@ -1326,6 +1538,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1326
1538
|
foreground: string;
|
|
1327
1539
|
background: string;
|
|
1328
1540
|
brand: string;
|
|
1541
|
+
brand2: string;
|
|
1542
|
+
brand3: string;
|
|
1329
1543
|
help: string;
|
|
1330
1544
|
success: string;
|
|
1331
1545
|
info: string;
|
|
@@ -1339,6 +1553,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1339
1553
|
foreground?: string | undefined;
|
|
1340
1554
|
background?: string | undefined;
|
|
1341
1555
|
brand?: string | undefined;
|
|
1556
|
+
brand2?: string | undefined;
|
|
1557
|
+
brand3?: string | undefined;
|
|
1342
1558
|
accent?: string | undefined;
|
|
1343
1559
|
help?: string | undefined;
|
|
1344
1560
|
success?: string | undefined;
|
|
@@ -1351,6 +1567,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1351
1567
|
foreground?: string | undefined;
|
|
1352
1568
|
background?: string | undefined;
|
|
1353
1569
|
brand?: string | undefined;
|
|
1570
|
+
brand2?: string | undefined;
|
|
1571
|
+
brand3?: string | undefined;
|
|
1354
1572
|
accent?: string | undefined;
|
|
1355
1573
|
help?: string | undefined;
|
|
1356
1574
|
success?: string | undefined;
|
|
@@ -1395,6 +1613,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1395
1613
|
foreground: string;
|
|
1396
1614
|
background: string;
|
|
1397
1615
|
brand: string;
|
|
1616
|
+
brand2: string;
|
|
1617
|
+
brand3: string;
|
|
1398
1618
|
help: string;
|
|
1399
1619
|
success: string;
|
|
1400
1620
|
info: string;
|
|
@@ -1407,6 +1627,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1407
1627
|
foreground: string;
|
|
1408
1628
|
background: string;
|
|
1409
1629
|
brand: string;
|
|
1630
|
+
brand2: string;
|
|
1631
|
+
brand3: string;
|
|
1410
1632
|
help: string;
|
|
1411
1633
|
success: string;
|
|
1412
1634
|
info: string;
|
|
@@ -1417,6 +1639,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1417
1639
|
};
|
|
1418
1640
|
} | {
|
|
1419
1641
|
brand: string;
|
|
1642
|
+
brand2: string;
|
|
1643
|
+
brand3: string;
|
|
1420
1644
|
help: string;
|
|
1421
1645
|
success: string;
|
|
1422
1646
|
info: string;
|
|
@@ -1432,6 +1656,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1432
1656
|
foreground: string;
|
|
1433
1657
|
background: string;
|
|
1434
1658
|
brand: string;
|
|
1659
|
+
brand2: string;
|
|
1660
|
+
brand3: string;
|
|
1435
1661
|
help: string;
|
|
1436
1662
|
success: string;
|
|
1437
1663
|
info: string;
|
|
@@ -1444,6 +1670,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1444
1670
|
foreground: string;
|
|
1445
1671
|
background: string;
|
|
1446
1672
|
brand: string;
|
|
1673
|
+
brand2: string;
|
|
1674
|
+
brand3: string;
|
|
1447
1675
|
help: string;
|
|
1448
1676
|
success: string;
|
|
1449
1677
|
info: string;
|
|
@@ -1454,6 +1682,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1454
1682
|
};
|
|
1455
1683
|
} | {
|
|
1456
1684
|
brand: string;
|
|
1685
|
+
brand2: string;
|
|
1686
|
+
brand3: string;
|
|
1457
1687
|
help: string;
|
|
1458
1688
|
success: string;
|
|
1459
1689
|
info: string;
|
|
@@ -1469,6 +1699,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1469
1699
|
foreground: string;
|
|
1470
1700
|
background: string;
|
|
1471
1701
|
brand: string;
|
|
1702
|
+
brand2: string;
|
|
1703
|
+
brand3: string;
|
|
1472
1704
|
help: string;
|
|
1473
1705
|
success: string;
|
|
1474
1706
|
info: string;
|
|
@@ -1481,6 +1713,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1481
1713
|
foreground: string;
|
|
1482
1714
|
background: string;
|
|
1483
1715
|
brand: string;
|
|
1716
|
+
brand2: string;
|
|
1717
|
+
brand3: string;
|
|
1484
1718
|
help: string;
|
|
1485
1719
|
success: string;
|
|
1486
1720
|
info: string;
|
|
@@ -1491,6 +1725,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1491
1725
|
};
|
|
1492
1726
|
} | {
|
|
1493
1727
|
brand: string;
|
|
1728
|
+
brand2: string;
|
|
1729
|
+
brand3: string;
|
|
1494
1730
|
help: string;
|
|
1495
1731
|
success: string;
|
|
1496
1732
|
info: string;
|
|
@@ -1514,6 +1750,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1514
1750
|
foreground?: string | undefined;
|
|
1515
1751
|
background?: string | undefined;
|
|
1516
1752
|
brand?: string | undefined;
|
|
1753
|
+
brand2?: string | undefined;
|
|
1754
|
+
brand3?: string | undefined;
|
|
1517
1755
|
accent?: string | undefined;
|
|
1518
1756
|
help?: string | undefined;
|
|
1519
1757
|
success?: string | undefined;
|
|
@@ -1526,6 +1764,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1526
1764
|
foreground?: string | undefined;
|
|
1527
1765
|
background?: string | undefined;
|
|
1528
1766
|
brand?: string | undefined;
|
|
1767
|
+
brand2?: string | undefined;
|
|
1768
|
+
brand3?: string | undefined;
|
|
1529
1769
|
accent?: string | undefined;
|
|
1530
1770
|
help?: string | undefined;
|
|
1531
1771
|
success?: string | undefined;
|
|
@@ -1536,6 +1776,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1536
1776
|
};
|
|
1537
1777
|
} | {
|
|
1538
1778
|
brand?: string | undefined;
|
|
1779
|
+
brand2?: string | undefined;
|
|
1780
|
+
brand3?: string | undefined;
|
|
1539
1781
|
accent?: string | undefined;
|
|
1540
1782
|
help?: string | undefined;
|
|
1541
1783
|
success?: string | undefined;
|
|
@@ -1551,6 +1793,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1551
1793
|
foreground?: string | undefined;
|
|
1552
1794
|
background?: string | undefined;
|
|
1553
1795
|
brand?: string | undefined;
|
|
1796
|
+
brand2?: string | undefined;
|
|
1797
|
+
brand3?: string | undefined;
|
|
1554
1798
|
accent?: string | undefined;
|
|
1555
1799
|
help?: string | undefined;
|
|
1556
1800
|
success?: string | undefined;
|
|
@@ -1563,6 +1807,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1563
1807
|
foreground?: string | undefined;
|
|
1564
1808
|
background?: string | undefined;
|
|
1565
1809
|
brand?: string | undefined;
|
|
1810
|
+
brand2?: string | undefined;
|
|
1811
|
+
brand3?: string | undefined;
|
|
1566
1812
|
accent?: string | undefined;
|
|
1567
1813
|
help?: string | undefined;
|
|
1568
1814
|
success?: string | undefined;
|
|
@@ -1573,6 +1819,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1573
1819
|
};
|
|
1574
1820
|
} | {
|
|
1575
1821
|
brand?: string | undefined;
|
|
1822
|
+
brand2?: string | undefined;
|
|
1823
|
+
brand3?: string | undefined;
|
|
1576
1824
|
accent?: string | undefined;
|
|
1577
1825
|
help?: string | undefined;
|
|
1578
1826
|
success?: string | undefined;
|
|
@@ -1588,6 +1836,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1588
1836
|
foreground?: string | undefined;
|
|
1589
1837
|
background?: string | undefined;
|
|
1590
1838
|
brand?: string | undefined;
|
|
1839
|
+
brand2?: string | undefined;
|
|
1840
|
+
brand3?: string | undefined;
|
|
1591
1841
|
accent?: string | undefined;
|
|
1592
1842
|
help?: string | undefined;
|
|
1593
1843
|
success?: string | undefined;
|
|
@@ -1600,6 +1850,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1600
1850
|
foreground?: string | undefined;
|
|
1601
1851
|
background?: string | undefined;
|
|
1602
1852
|
brand?: string | undefined;
|
|
1853
|
+
brand2?: string | undefined;
|
|
1854
|
+
brand3?: string | undefined;
|
|
1603
1855
|
accent?: string | undefined;
|
|
1604
1856
|
help?: string | undefined;
|
|
1605
1857
|
success?: string | undefined;
|
|
@@ -1610,6 +1862,8 @@ export declare const StormConfigSchema: z.ZodObject<{
|
|
|
1610
1862
|
};
|
|
1611
1863
|
} | {
|
|
1612
1864
|
brand?: string | undefined;
|
|
1865
|
+
brand2?: string | undefined;
|
|
1866
|
+
brand3?: string | undefined;
|
|
1613
1867
|
accent?: string | undefined;
|
|
1614
1868
|
help?: string | undefined;
|
|
1615
1869
|
success?: string | undefined;
|