@better-t-stack/types 3.7.3-canary.98ba1e7a → 3.8.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.
@@ -0,0 +1,826 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/schemas.d.ts
4
+ declare const DatabaseSchema: z.ZodEnum<{
5
+ none: "none";
6
+ sqlite: "sqlite";
7
+ postgres: "postgres";
8
+ mysql: "mysql";
9
+ mongodb: "mongodb";
10
+ }>;
11
+ declare const ORMSchema: z.ZodEnum<{
12
+ none: "none";
13
+ drizzle: "drizzle";
14
+ prisma: "prisma";
15
+ mongoose: "mongoose";
16
+ }>;
17
+ declare const BackendSchema: z.ZodEnum<{
18
+ none: "none";
19
+ hono: "hono";
20
+ express: "express";
21
+ fastify: "fastify";
22
+ elysia: "elysia";
23
+ convex: "convex";
24
+ self: "self";
25
+ }>;
26
+ declare const RuntimeSchema: z.ZodEnum<{
27
+ none: "none";
28
+ bun: "bun";
29
+ node: "node";
30
+ workers: "workers";
31
+ }>;
32
+ declare const FrontendSchema: z.ZodEnum<{
33
+ none: "none";
34
+ "tanstack-router": "tanstack-router";
35
+ "react-router": "react-router";
36
+ "tanstack-start": "tanstack-start";
37
+ next: "next";
38
+ nuxt: "nuxt";
39
+ "native-bare": "native-bare";
40
+ "native-uniwind": "native-uniwind";
41
+ "native-unistyles": "native-unistyles";
42
+ svelte: "svelte";
43
+ solid: "solid";
44
+ }>;
45
+ declare const AddonsSchema: z.ZodEnum<{
46
+ none: "none";
47
+ pwa: "pwa";
48
+ tauri: "tauri";
49
+ starlight: "starlight";
50
+ biome: "biome";
51
+ husky: "husky";
52
+ ruler: "ruler";
53
+ turborepo: "turborepo";
54
+ fumadocs: "fumadocs";
55
+ ultracite: "ultracite";
56
+ oxlint: "oxlint";
57
+ }>;
58
+ declare const ExamplesSchema: z.ZodEnum<{
59
+ none: "none";
60
+ todo: "todo";
61
+ ai: "ai";
62
+ }>;
63
+ declare const PackageManagerSchema: z.ZodEnum<{
64
+ bun: "bun";
65
+ npm: "npm";
66
+ pnpm: "pnpm";
67
+ }>;
68
+ declare const DatabaseSetupSchema: z.ZodEnum<{
69
+ none: "none";
70
+ turso: "turso";
71
+ neon: "neon";
72
+ "prisma-postgres": "prisma-postgres";
73
+ planetscale: "planetscale";
74
+ "mongodb-atlas": "mongodb-atlas";
75
+ supabase: "supabase";
76
+ d1: "d1";
77
+ docker: "docker";
78
+ }>;
79
+ declare const APISchema: z.ZodEnum<{
80
+ none: "none";
81
+ trpc: "trpc";
82
+ orpc: "orpc";
83
+ }>;
84
+ declare const AuthSchema: z.ZodEnum<{
85
+ none: "none";
86
+ "better-auth": "better-auth";
87
+ clerk: "clerk";
88
+ }>;
89
+ declare const PaymentsSchema: z.ZodEnum<{
90
+ none: "none";
91
+ polar: "polar";
92
+ }>;
93
+ declare const WebDeploySchema: z.ZodEnum<{
94
+ none: "none";
95
+ alchemy: "alchemy";
96
+ }>;
97
+ declare const ServerDeploySchema: z.ZodEnum<{
98
+ none: "none";
99
+ alchemy: "alchemy";
100
+ }>;
101
+ declare const DirectoryConflictSchema: z.ZodEnum<{
102
+ merge: "merge";
103
+ overwrite: "overwrite";
104
+ increment: "increment";
105
+ error: "error";
106
+ }>;
107
+ declare const TemplateSchema: z.ZodEnum<{
108
+ none: "none";
109
+ mern: "mern";
110
+ pern: "pern";
111
+ t3: "t3";
112
+ uniwind: "uniwind";
113
+ }>;
114
+ declare const ProjectNameSchema: z.ZodString;
115
+ declare const CreateInputSchema: z.ZodObject<{
116
+ projectName: z.ZodOptional<z.ZodString>;
117
+ template: z.ZodOptional<z.ZodEnum<{
118
+ none: "none";
119
+ mern: "mern";
120
+ pern: "pern";
121
+ t3: "t3";
122
+ uniwind: "uniwind";
123
+ }>>;
124
+ yes: z.ZodOptional<z.ZodBoolean>;
125
+ yolo: z.ZodOptional<z.ZodBoolean>;
126
+ verbose: z.ZodOptional<z.ZodBoolean>;
127
+ database: z.ZodOptional<z.ZodEnum<{
128
+ none: "none";
129
+ sqlite: "sqlite";
130
+ postgres: "postgres";
131
+ mysql: "mysql";
132
+ mongodb: "mongodb";
133
+ }>>;
134
+ orm: z.ZodOptional<z.ZodEnum<{
135
+ none: "none";
136
+ drizzle: "drizzle";
137
+ prisma: "prisma";
138
+ mongoose: "mongoose";
139
+ }>>;
140
+ auth: z.ZodOptional<z.ZodEnum<{
141
+ none: "none";
142
+ "better-auth": "better-auth";
143
+ clerk: "clerk";
144
+ }>>;
145
+ payments: z.ZodOptional<z.ZodEnum<{
146
+ none: "none";
147
+ polar: "polar";
148
+ }>>;
149
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
150
+ none: "none";
151
+ "tanstack-router": "tanstack-router";
152
+ "react-router": "react-router";
153
+ "tanstack-start": "tanstack-start";
154
+ next: "next";
155
+ nuxt: "nuxt";
156
+ "native-bare": "native-bare";
157
+ "native-uniwind": "native-uniwind";
158
+ "native-unistyles": "native-unistyles";
159
+ svelte: "svelte";
160
+ solid: "solid";
161
+ }>>>;
162
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
163
+ none: "none";
164
+ pwa: "pwa";
165
+ tauri: "tauri";
166
+ starlight: "starlight";
167
+ biome: "biome";
168
+ husky: "husky";
169
+ ruler: "ruler";
170
+ turborepo: "turborepo";
171
+ fumadocs: "fumadocs";
172
+ ultracite: "ultracite";
173
+ oxlint: "oxlint";
174
+ }>>>;
175
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
176
+ none: "none";
177
+ todo: "todo";
178
+ ai: "ai";
179
+ }>>>;
180
+ git: z.ZodOptional<z.ZodBoolean>;
181
+ packageManager: z.ZodOptional<z.ZodEnum<{
182
+ bun: "bun";
183
+ npm: "npm";
184
+ pnpm: "pnpm";
185
+ }>>;
186
+ install: z.ZodOptional<z.ZodBoolean>;
187
+ dbSetup: z.ZodOptional<z.ZodEnum<{
188
+ none: "none";
189
+ turso: "turso";
190
+ neon: "neon";
191
+ "prisma-postgres": "prisma-postgres";
192
+ planetscale: "planetscale";
193
+ "mongodb-atlas": "mongodb-atlas";
194
+ supabase: "supabase";
195
+ d1: "d1";
196
+ docker: "docker";
197
+ }>>;
198
+ backend: z.ZodOptional<z.ZodEnum<{
199
+ none: "none";
200
+ hono: "hono";
201
+ express: "express";
202
+ fastify: "fastify";
203
+ elysia: "elysia";
204
+ convex: "convex";
205
+ self: "self";
206
+ }>>;
207
+ runtime: z.ZodOptional<z.ZodEnum<{
208
+ none: "none";
209
+ bun: "bun";
210
+ node: "node";
211
+ workers: "workers";
212
+ }>>;
213
+ api: z.ZodOptional<z.ZodEnum<{
214
+ none: "none";
215
+ trpc: "trpc";
216
+ orpc: "orpc";
217
+ }>>;
218
+ webDeploy: z.ZodOptional<z.ZodEnum<{
219
+ none: "none";
220
+ alchemy: "alchemy";
221
+ }>>;
222
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
223
+ none: "none";
224
+ alchemy: "alchemy";
225
+ }>>;
226
+ directoryConflict: z.ZodOptional<z.ZodEnum<{
227
+ merge: "merge";
228
+ overwrite: "overwrite";
229
+ increment: "increment";
230
+ error: "error";
231
+ }>>;
232
+ renderTitle: z.ZodOptional<z.ZodBoolean>;
233
+ disableAnalytics: z.ZodOptional<z.ZodBoolean>;
234
+ manualDb: z.ZodOptional<z.ZodBoolean>;
235
+ }, z.core.$strip>;
236
+ declare const AddInputSchema: z.ZodObject<{
237
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
238
+ none: "none";
239
+ pwa: "pwa";
240
+ tauri: "tauri";
241
+ starlight: "starlight";
242
+ biome: "biome";
243
+ husky: "husky";
244
+ ruler: "ruler";
245
+ turborepo: "turborepo";
246
+ fumadocs: "fumadocs";
247
+ ultracite: "ultracite";
248
+ oxlint: "oxlint";
249
+ }>>>;
250
+ webDeploy: z.ZodOptional<z.ZodEnum<{
251
+ none: "none";
252
+ alchemy: "alchemy";
253
+ }>>;
254
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
255
+ none: "none";
256
+ alchemy: "alchemy";
257
+ }>>;
258
+ projectDir: z.ZodOptional<z.ZodString>;
259
+ install: z.ZodOptional<z.ZodBoolean>;
260
+ packageManager: z.ZodOptional<z.ZodEnum<{
261
+ bun: "bun";
262
+ npm: "npm";
263
+ pnpm: "pnpm";
264
+ }>>;
265
+ }, z.core.$strip>;
266
+ declare const CLIInputSchema: z.ZodObject<{
267
+ projectName: z.ZodOptional<z.ZodString>;
268
+ template: z.ZodOptional<z.ZodEnum<{
269
+ none: "none";
270
+ mern: "mern";
271
+ pern: "pern";
272
+ t3: "t3";
273
+ uniwind: "uniwind";
274
+ }>>;
275
+ yes: z.ZodOptional<z.ZodBoolean>;
276
+ yolo: z.ZodOptional<z.ZodBoolean>;
277
+ verbose: z.ZodOptional<z.ZodBoolean>;
278
+ database: z.ZodOptional<z.ZodEnum<{
279
+ none: "none";
280
+ sqlite: "sqlite";
281
+ postgres: "postgres";
282
+ mysql: "mysql";
283
+ mongodb: "mongodb";
284
+ }>>;
285
+ orm: z.ZodOptional<z.ZodEnum<{
286
+ none: "none";
287
+ drizzle: "drizzle";
288
+ prisma: "prisma";
289
+ mongoose: "mongoose";
290
+ }>>;
291
+ auth: z.ZodOptional<z.ZodEnum<{
292
+ none: "none";
293
+ "better-auth": "better-auth";
294
+ clerk: "clerk";
295
+ }>>;
296
+ payments: z.ZodOptional<z.ZodEnum<{
297
+ none: "none";
298
+ polar: "polar";
299
+ }>>;
300
+ frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
301
+ none: "none";
302
+ "tanstack-router": "tanstack-router";
303
+ "react-router": "react-router";
304
+ "tanstack-start": "tanstack-start";
305
+ next: "next";
306
+ nuxt: "nuxt";
307
+ "native-bare": "native-bare";
308
+ "native-uniwind": "native-uniwind";
309
+ "native-unistyles": "native-unistyles";
310
+ svelte: "svelte";
311
+ solid: "solid";
312
+ }>>>;
313
+ addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
314
+ none: "none";
315
+ pwa: "pwa";
316
+ tauri: "tauri";
317
+ starlight: "starlight";
318
+ biome: "biome";
319
+ husky: "husky";
320
+ ruler: "ruler";
321
+ turborepo: "turborepo";
322
+ fumadocs: "fumadocs";
323
+ ultracite: "ultracite";
324
+ oxlint: "oxlint";
325
+ }>>>;
326
+ examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
327
+ none: "none";
328
+ todo: "todo";
329
+ ai: "ai";
330
+ }>>>;
331
+ git: z.ZodOptional<z.ZodBoolean>;
332
+ packageManager: z.ZodOptional<z.ZodEnum<{
333
+ bun: "bun";
334
+ npm: "npm";
335
+ pnpm: "pnpm";
336
+ }>>;
337
+ install: z.ZodOptional<z.ZodBoolean>;
338
+ dbSetup: z.ZodOptional<z.ZodEnum<{
339
+ none: "none";
340
+ turso: "turso";
341
+ neon: "neon";
342
+ "prisma-postgres": "prisma-postgres";
343
+ planetscale: "planetscale";
344
+ "mongodb-atlas": "mongodb-atlas";
345
+ supabase: "supabase";
346
+ d1: "d1";
347
+ docker: "docker";
348
+ }>>;
349
+ backend: z.ZodOptional<z.ZodEnum<{
350
+ none: "none";
351
+ hono: "hono";
352
+ express: "express";
353
+ fastify: "fastify";
354
+ elysia: "elysia";
355
+ convex: "convex";
356
+ self: "self";
357
+ }>>;
358
+ runtime: z.ZodOptional<z.ZodEnum<{
359
+ none: "none";
360
+ bun: "bun";
361
+ node: "node";
362
+ workers: "workers";
363
+ }>>;
364
+ api: z.ZodOptional<z.ZodEnum<{
365
+ none: "none";
366
+ trpc: "trpc";
367
+ orpc: "orpc";
368
+ }>>;
369
+ webDeploy: z.ZodOptional<z.ZodEnum<{
370
+ none: "none";
371
+ alchemy: "alchemy";
372
+ }>>;
373
+ serverDeploy: z.ZodOptional<z.ZodEnum<{
374
+ none: "none";
375
+ alchemy: "alchemy";
376
+ }>>;
377
+ directoryConflict: z.ZodOptional<z.ZodEnum<{
378
+ merge: "merge";
379
+ overwrite: "overwrite";
380
+ increment: "increment";
381
+ error: "error";
382
+ }>>;
383
+ renderTitle: z.ZodOptional<z.ZodBoolean>;
384
+ disableAnalytics: z.ZodOptional<z.ZodBoolean>;
385
+ manualDb: z.ZodOptional<z.ZodBoolean>;
386
+ projectDirectory: z.ZodOptional<z.ZodString>;
387
+ }, z.core.$strip>;
388
+ declare const ProjectConfigSchema: z.ZodObject<{
389
+ projectName: z.ZodString;
390
+ projectDir: z.ZodString;
391
+ relativePath: z.ZodString;
392
+ database: z.ZodEnum<{
393
+ none: "none";
394
+ sqlite: "sqlite";
395
+ postgres: "postgres";
396
+ mysql: "mysql";
397
+ mongodb: "mongodb";
398
+ }>;
399
+ orm: z.ZodEnum<{
400
+ none: "none";
401
+ drizzle: "drizzle";
402
+ prisma: "prisma";
403
+ mongoose: "mongoose";
404
+ }>;
405
+ backend: z.ZodEnum<{
406
+ none: "none";
407
+ hono: "hono";
408
+ express: "express";
409
+ fastify: "fastify";
410
+ elysia: "elysia";
411
+ convex: "convex";
412
+ self: "self";
413
+ }>;
414
+ runtime: z.ZodEnum<{
415
+ none: "none";
416
+ bun: "bun";
417
+ node: "node";
418
+ workers: "workers";
419
+ }>;
420
+ frontend: z.ZodArray<z.ZodEnum<{
421
+ none: "none";
422
+ "tanstack-router": "tanstack-router";
423
+ "react-router": "react-router";
424
+ "tanstack-start": "tanstack-start";
425
+ next: "next";
426
+ nuxt: "nuxt";
427
+ "native-bare": "native-bare";
428
+ "native-uniwind": "native-uniwind";
429
+ "native-unistyles": "native-unistyles";
430
+ svelte: "svelte";
431
+ solid: "solid";
432
+ }>>;
433
+ addons: z.ZodArray<z.ZodEnum<{
434
+ none: "none";
435
+ pwa: "pwa";
436
+ tauri: "tauri";
437
+ starlight: "starlight";
438
+ biome: "biome";
439
+ husky: "husky";
440
+ ruler: "ruler";
441
+ turborepo: "turborepo";
442
+ fumadocs: "fumadocs";
443
+ ultracite: "ultracite";
444
+ oxlint: "oxlint";
445
+ }>>;
446
+ examples: z.ZodArray<z.ZodEnum<{
447
+ none: "none";
448
+ todo: "todo";
449
+ ai: "ai";
450
+ }>>;
451
+ auth: z.ZodEnum<{
452
+ none: "none";
453
+ "better-auth": "better-auth";
454
+ clerk: "clerk";
455
+ }>;
456
+ payments: z.ZodEnum<{
457
+ none: "none";
458
+ polar: "polar";
459
+ }>;
460
+ git: z.ZodBoolean;
461
+ packageManager: z.ZodEnum<{
462
+ bun: "bun";
463
+ npm: "npm";
464
+ pnpm: "pnpm";
465
+ }>;
466
+ install: z.ZodBoolean;
467
+ dbSetup: z.ZodEnum<{
468
+ none: "none";
469
+ turso: "turso";
470
+ neon: "neon";
471
+ "prisma-postgres": "prisma-postgres";
472
+ planetscale: "planetscale";
473
+ "mongodb-atlas": "mongodb-atlas";
474
+ supabase: "supabase";
475
+ d1: "d1";
476
+ docker: "docker";
477
+ }>;
478
+ api: z.ZodEnum<{
479
+ none: "none";
480
+ trpc: "trpc";
481
+ orpc: "orpc";
482
+ }>;
483
+ webDeploy: z.ZodEnum<{
484
+ none: "none";
485
+ alchemy: "alchemy";
486
+ }>;
487
+ serverDeploy: z.ZodEnum<{
488
+ none: "none";
489
+ alchemy: "alchemy";
490
+ }>;
491
+ }, z.core.$strip>;
492
+ declare const BetterTStackConfigSchema: z.ZodObject<{
493
+ version: z.ZodString;
494
+ createdAt: z.ZodString;
495
+ database: z.ZodEnum<{
496
+ none: "none";
497
+ sqlite: "sqlite";
498
+ postgres: "postgres";
499
+ mysql: "mysql";
500
+ mongodb: "mongodb";
501
+ }>;
502
+ orm: z.ZodEnum<{
503
+ none: "none";
504
+ drizzle: "drizzle";
505
+ prisma: "prisma";
506
+ mongoose: "mongoose";
507
+ }>;
508
+ backend: z.ZodEnum<{
509
+ none: "none";
510
+ hono: "hono";
511
+ express: "express";
512
+ fastify: "fastify";
513
+ elysia: "elysia";
514
+ convex: "convex";
515
+ self: "self";
516
+ }>;
517
+ runtime: z.ZodEnum<{
518
+ none: "none";
519
+ bun: "bun";
520
+ node: "node";
521
+ workers: "workers";
522
+ }>;
523
+ frontend: z.ZodArray<z.ZodEnum<{
524
+ none: "none";
525
+ "tanstack-router": "tanstack-router";
526
+ "react-router": "react-router";
527
+ "tanstack-start": "tanstack-start";
528
+ next: "next";
529
+ nuxt: "nuxt";
530
+ "native-bare": "native-bare";
531
+ "native-uniwind": "native-uniwind";
532
+ "native-unistyles": "native-unistyles";
533
+ svelte: "svelte";
534
+ solid: "solid";
535
+ }>>;
536
+ addons: z.ZodArray<z.ZodEnum<{
537
+ none: "none";
538
+ pwa: "pwa";
539
+ tauri: "tauri";
540
+ starlight: "starlight";
541
+ biome: "biome";
542
+ husky: "husky";
543
+ ruler: "ruler";
544
+ turborepo: "turborepo";
545
+ fumadocs: "fumadocs";
546
+ ultracite: "ultracite";
547
+ oxlint: "oxlint";
548
+ }>>;
549
+ examples: z.ZodArray<z.ZodEnum<{
550
+ none: "none";
551
+ todo: "todo";
552
+ ai: "ai";
553
+ }>>;
554
+ auth: z.ZodEnum<{
555
+ none: "none";
556
+ "better-auth": "better-auth";
557
+ clerk: "clerk";
558
+ }>;
559
+ payments: z.ZodEnum<{
560
+ none: "none";
561
+ polar: "polar";
562
+ }>;
563
+ packageManager: z.ZodEnum<{
564
+ bun: "bun";
565
+ npm: "npm";
566
+ pnpm: "pnpm";
567
+ }>;
568
+ dbSetup: z.ZodEnum<{
569
+ none: "none";
570
+ turso: "turso";
571
+ neon: "neon";
572
+ "prisma-postgres": "prisma-postgres";
573
+ planetscale: "planetscale";
574
+ "mongodb-atlas": "mongodb-atlas";
575
+ supabase: "supabase";
576
+ d1: "d1";
577
+ docker: "docker";
578
+ }>;
579
+ api: z.ZodEnum<{
580
+ none: "none";
581
+ trpc: "trpc";
582
+ orpc: "orpc";
583
+ }>;
584
+ webDeploy: z.ZodEnum<{
585
+ none: "none";
586
+ alchemy: "alchemy";
587
+ }>;
588
+ serverDeploy: z.ZodEnum<{
589
+ none: "none";
590
+ alchemy: "alchemy";
591
+ }>;
592
+ }, z.core.$strip>;
593
+ declare const BetterTStackConfigFileSchema: z.ZodObject<{
594
+ $schema: z.ZodOptional<z.ZodString>;
595
+ version: z.ZodString;
596
+ createdAt: z.ZodString;
597
+ database: z.ZodEnum<{
598
+ none: "none";
599
+ sqlite: "sqlite";
600
+ postgres: "postgres";
601
+ mysql: "mysql";
602
+ mongodb: "mongodb";
603
+ }>;
604
+ orm: z.ZodEnum<{
605
+ none: "none";
606
+ drizzle: "drizzle";
607
+ prisma: "prisma";
608
+ mongoose: "mongoose";
609
+ }>;
610
+ backend: z.ZodEnum<{
611
+ none: "none";
612
+ hono: "hono";
613
+ express: "express";
614
+ fastify: "fastify";
615
+ elysia: "elysia";
616
+ convex: "convex";
617
+ self: "self";
618
+ }>;
619
+ runtime: z.ZodEnum<{
620
+ none: "none";
621
+ bun: "bun";
622
+ node: "node";
623
+ workers: "workers";
624
+ }>;
625
+ frontend: z.ZodArray<z.ZodEnum<{
626
+ none: "none";
627
+ "tanstack-router": "tanstack-router";
628
+ "react-router": "react-router";
629
+ "tanstack-start": "tanstack-start";
630
+ next: "next";
631
+ nuxt: "nuxt";
632
+ "native-bare": "native-bare";
633
+ "native-uniwind": "native-uniwind";
634
+ "native-unistyles": "native-unistyles";
635
+ svelte: "svelte";
636
+ solid: "solid";
637
+ }>>;
638
+ addons: z.ZodArray<z.ZodEnum<{
639
+ none: "none";
640
+ pwa: "pwa";
641
+ tauri: "tauri";
642
+ starlight: "starlight";
643
+ biome: "biome";
644
+ husky: "husky";
645
+ ruler: "ruler";
646
+ turborepo: "turborepo";
647
+ fumadocs: "fumadocs";
648
+ ultracite: "ultracite";
649
+ oxlint: "oxlint";
650
+ }>>;
651
+ examples: z.ZodArray<z.ZodEnum<{
652
+ none: "none";
653
+ todo: "todo";
654
+ ai: "ai";
655
+ }>>;
656
+ auth: z.ZodEnum<{
657
+ none: "none";
658
+ "better-auth": "better-auth";
659
+ clerk: "clerk";
660
+ }>;
661
+ payments: z.ZodEnum<{
662
+ none: "none";
663
+ polar: "polar";
664
+ }>;
665
+ packageManager: z.ZodEnum<{
666
+ bun: "bun";
667
+ npm: "npm";
668
+ pnpm: "pnpm";
669
+ }>;
670
+ dbSetup: z.ZodEnum<{
671
+ none: "none";
672
+ turso: "turso";
673
+ neon: "neon";
674
+ "prisma-postgres": "prisma-postgres";
675
+ planetscale: "planetscale";
676
+ "mongodb-atlas": "mongodb-atlas";
677
+ supabase: "supabase";
678
+ d1: "d1";
679
+ docker: "docker";
680
+ }>;
681
+ api: z.ZodEnum<{
682
+ none: "none";
683
+ trpc: "trpc";
684
+ orpc: "orpc";
685
+ }>;
686
+ webDeploy: z.ZodEnum<{
687
+ none: "none";
688
+ alchemy: "alchemy";
689
+ }>;
690
+ serverDeploy: z.ZodEnum<{
691
+ none: "none";
692
+ alchemy: "alchemy";
693
+ }>;
694
+ }, z.core.$strip>;
695
+ declare const InitResultSchema: z.ZodObject<{
696
+ success: z.ZodBoolean;
697
+ projectConfig: z.ZodObject<{
698
+ projectName: z.ZodString;
699
+ projectDir: z.ZodString;
700
+ relativePath: z.ZodString;
701
+ database: z.ZodEnum<{
702
+ none: "none";
703
+ sqlite: "sqlite";
704
+ postgres: "postgres";
705
+ mysql: "mysql";
706
+ mongodb: "mongodb";
707
+ }>;
708
+ orm: z.ZodEnum<{
709
+ none: "none";
710
+ drizzle: "drizzle";
711
+ prisma: "prisma";
712
+ mongoose: "mongoose";
713
+ }>;
714
+ backend: z.ZodEnum<{
715
+ none: "none";
716
+ hono: "hono";
717
+ express: "express";
718
+ fastify: "fastify";
719
+ elysia: "elysia";
720
+ convex: "convex";
721
+ self: "self";
722
+ }>;
723
+ runtime: z.ZodEnum<{
724
+ none: "none";
725
+ bun: "bun";
726
+ node: "node";
727
+ workers: "workers";
728
+ }>;
729
+ frontend: z.ZodArray<z.ZodEnum<{
730
+ none: "none";
731
+ "tanstack-router": "tanstack-router";
732
+ "react-router": "react-router";
733
+ "tanstack-start": "tanstack-start";
734
+ next: "next";
735
+ nuxt: "nuxt";
736
+ "native-bare": "native-bare";
737
+ "native-uniwind": "native-uniwind";
738
+ "native-unistyles": "native-unistyles";
739
+ svelte: "svelte";
740
+ solid: "solid";
741
+ }>>;
742
+ addons: z.ZodArray<z.ZodEnum<{
743
+ none: "none";
744
+ pwa: "pwa";
745
+ tauri: "tauri";
746
+ starlight: "starlight";
747
+ biome: "biome";
748
+ husky: "husky";
749
+ ruler: "ruler";
750
+ turborepo: "turborepo";
751
+ fumadocs: "fumadocs";
752
+ ultracite: "ultracite";
753
+ oxlint: "oxlint";
754
+ }>>;
755
+ examples: z.ZodArray<z.ZodEnum<{
756
+ none: "none";
757
+ todo: "todo";
758
+ ai: "ai";
759
+ }>>;
760
+ auth: z.ZodEnum<{
761
+ none: "none";
762
+ "better-auth": "better-auth";
763
+ clerk: "clerk";
764
+ }>;
765
+ payments: z.ZodEnum<{
766
+ none: "none";
767
+ polar: "polar";
768
+ }>;
769
+ git: z.ZodBoolean;
770
+ packageManager: z.ZodEnum<{
771
+ bun: "bun";
772
+ npm: "npm";
773
+ pnpm: "pnpm";
774
+ }>;
775
+ install: z.ZodBoolean;
776
+ dbSetup: z.ZodEnum<{
777
+ none: "none";
778
+ turso: "turso";
779
+ neon: "neon";
780
+ "prisma-postgres": "prisma-postgres";
781
+ planetscale: "planetscale";
782
+ "mongodb-atlas": "mongodb-atlas";
783
+ supabase: "supabase";
784
+ d1: "d1";
785
+ docker: "docker";
786
+ }>;
787
+ api: z.ZodEnum<{
788
+ none: "none";
789
+ trpc: "trpc";
790
+ orpc: "orpc";
791
+ }>;
792
+ webDeploy: z.ZodEnum<{
793
+ none: "none";
794
+ alchemy: "alchemy";
795
+ }>;
796
+ serverDeploy: z.ZodEnum<{
797
+ none: "none";
798
+ alchemy: "alchemy";
799
+ }>;
800
+ }, z.core.$strip>;
801
+ reproducibleCommand: z.ZodString;
802
+ timeScaffolded: z.ZodString;
803
+ elapsedTimeMs: z.ZodNumber;
804
+ projectDirectory: z.ZodString;
805
+ relativePath: z.ZodString;
806
+ error: z.ZodOptional<z.ZodString>;
807
+ }, z.core.$strip>;
808
+ declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb")[];
809
+ declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose")[];
810
+ declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "convex" | "self")[];
811
+ declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
812
+ declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "tanstack-start" | "next" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid")[];
813
+ declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "husky" | "ruler" | "turborepo" | "fumadocs" | "ultracite" | "oxlint")[];
814
+ declare const EXAMPLES_VALUES: ("none" | "todo" | "ai")[];
815
+ declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm")[];
816
+ declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "d1" | "docker")[];
817
+ declare const API_VALUES: ("none" | "trpc" | "orpc")[];
818
+ declare const AUTH_VALUES: ("none" | "better-auth" | "clerk")[];
819
+ declare const PAYMENTS_VALUES: ("none" | "polar")[];
820
+ declare const WEB_DEPLOY_VALUES: ("none" | "alchemy")[];
821
+ declare const SERVER_DEPLOY_VALUES: ("none" | "alchemy")[];
822
+ declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
823
+ declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
824
+ //#endregion
825
+ export { PaymentsSchema as A, WebDeploySchema as B, FrontendSchema as C, PACKAGE_MANAGER_VALUES as D, ORM_VALUES as E, SERVER_DEPLOY_VALUES as F, ServerDeploySchema as I, TEMPLATE_VALUES as L, ProjectNameSchema as M, RUNTIME_VALUES as N, PAYMENTS_VALUES as O, RuntimeSchema as P, TemplateSchema as R, FRONTEND_VALUES as S, ORMSchema as T, DatabaseSchema as _, AddInputSchema as a, EXAMPLES_VALUES as b, BACKEND_VALUES as c, BetterTStackConfigSchema as d, CLIInputSchema as f, DIRECTORY_CONFLICT_VALUES as g, DATABASE_VALUES as h, AUTH_VALUES as i, ProjectConfigSchema as j, PackageManagerSchema as k, BackendSchema as l, DATABASE_SETUP_VALUES as m, APISchema as n, AddonsSchema as o, CreateInputSchema as p, API_VALUES as r, AuthSchema as s, ADDONS_VALUES as t, BetterTStackConfigFileSchema as u, DatabaseSetupSchema as v, InitResultSchema as w, ExamplesSchema as x, DirectoryConflictSchema as y, WEB_DEPLOY_VALUES as z };
826
+ //# sourceMappingURL=schemas-B-xBVuqf.d.mts.map